-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.51 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "frontend-starter",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite",
"build": "cross-env NODE_ENV=production tsc && vite build",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0",
"preview": "yarn build && yarn vite preview"
},
"dependencies": {
"jotai": "^2.10.2",
"preact": "^10.24.3"
},
"devDependencies": {
"@preact/preset-vite": "^2.9.1",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint-plugin-tailwindcss": "^3",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"daisyui": "^4.12.14",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2"
},
"packageManager": "[email protected]"
}