-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.52 KB
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
50
{
"name": "egdev-react-boilerplate",
"private": false,
"version": "2.0.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"optimize": "vite optimize",
"analyze": "vite build --mode production --reportCompressedSize",
"clean": "rm -rf dist node_modules pnpm-lock.yaml package-lock.json && npm cache clean --force",
"reinstall": "pnpm run clean && pnpm install",
"biome-all": "biome check --write .",
"biome-staged": "biome check . --write --staged --verbose",
"pre-commit": "pnpm run biome-staged && tsc && git add -A"
},
"dependencies": {
"@tanstack/react-query": "5.75.2",
"axios": "1.9.0",
"clsx": "2.1.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-router": "7.5.3",
"react-router-dom": "7.5.3",
"tailwind-merge": "3.2.0",
"tailwind-variants": "1.0.0",
"tw-animate-css": "1.2.9",
"zustand": "5.0.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@egdev6/compilot-cli": "1.0.7",
"@tailwindcss/vite": "4.1.5",
"@types/node": "22.15.3",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.3",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.4.1",
"@vitejs/plugin-react-swc": "3.9.0",
"lefthook": "1.11.12",
"react-docgen-typescript": "2.2.2",
"tailwindcss": "4.1.5",
"typescript": "5.8.3",
"vite": "6.3.4",
"vite-plugin-mock-simple": "1.0.3",
"vite-plugin-svgr": "4.3.0",
"vite-tsconfig-paths": "5.1.4"
}
}