-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
{
"name": "wms-3d-mvp",
"version": "0.1.0",
"description": "3D Warehouse Management System MVP",
"type": "module",
"main": "src/main.tsx",
"author": "AI Assistant",
"license": "MIT",
"keywords": [
"react",
"threejs",
"warehouse",
"3D",
"wms"
],
"dependencies": {
"three": "0.176.0",
"gsap": "3.13.0",
"@vitejs/plugin-react": "4.4.1",
"postcss": "8.5.3",
"vite-plugin-compression": "0.5.1",
"axios": "1.9.0",
"@react-three/drei": "10.0.7",
"cssnano": "7.0.7",
"zustand": "5.0.4",
"autoprefixer": "10.4.21",
"eslint": "9.26.0",
"react-router-dom": "7.6.0",
"react-three-fiber": "6.0.13",
"tailwindcss": "4.1.5"
},
"devDependencies": {
"@types/react": "^18.2.62",
"@types/react-dom": "^18.2.19",
"typescript": "^5.5.5",
"vite": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-prettier": "^5.1.3"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write ."
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}