Spaces:
Build error
Build error
Upload package.json with huggingface_hub
Browse files- package.json +41 -0
package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "awp-platform",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "AI-Powered Advanced Work Packaging Platform for Power Plant EPC Projects",
|
| 5 |
+
"scripts": {
|
| 6 |
+
"dev": "next dev",
|
| 7 |
+
"build": "next build",
|
| 8 |
+
"start": "next start",
|
| 9 |
+
"lint": "next lint"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"next": "14.0.0",
|
| 13 |
+
"react": "^18.2.0",
|
| 14 |
+
"react-dom": "^18.2.0",
|
| 15 |
+
"three": "^0.160.0",
|
| 16 |
+
"@react-three/fiber": "^8.15.0",
|
| 17 |
+
"@react-three/drei": "^9.92.0",
|
| 18 |
+
"web-ifc-three": "^0.0.125",
|
| 19 |
+
"web-ifc": "^0.0.44",
|
| 20 |
+
"zustand": "^4.4.0",
|
| 21 |
+
"axios": "^1.6.0",
|
| 22 |
+
"react-query": "^3.39.0",
|
| 23 |
+
"lucide-react": "^0.294.0",
|
| 24 |
+
"recharts": "^2.10.0",
|
| 25 |
+
"date-fns": "^2.30.0",
|
| 26 |
+
"clsx": "^2.0.0",
|
| 27 |
+
"tailwind-merge": "^2.0.0",
|
| 28 |
+
"@tanstack/react-table": "^8.10.0",
|
| 29 |
+
"react-resizable-panels": "^0.0.63",
|
| 30 |
+
"zod": "^3.22.0"
|
| 31 |
+
},
|
| 32 |
+
"devDependencies": {
|
| 33 |
+
"@types/node": "^20.0.0",
|
| 34 |
+
"@types/react": "^18.2.0",
|
| 35 |
+
"@types/three": "^0.160.0",
|
| 36 |
+
"autoprefixer": "^10.4.0",
|
| 37 |
+
"postcss": "^8.4.0",
|
| 38 |
+
"tailwindcss": "^3.3.0",
|
| 39 |
+
"typescript": "^5.3.0"
|
| 40 |
+
}
|
| 41 |
+
}
|