-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 982 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@koalanis/fallout-checklist",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "npm run generate:data && astro dev",
"build": "npm run generate:data && astro build",
"preview": "astro preview",
"generate:data": "node src/scripts/generateData.cjs",
"astro": "astro",
"lint": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,astro}\" && eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
},
"dependencies": {
"@astrojs/tailwind": "^5.0.0",
"astro": "^3.0.0",
"fast-csv": "^4.3.6",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.14.0",
"daisyui": "^4.9.0",
"eslint": "^9.15.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-astro": "^0.14.1"
}
}