Spaces:
Sleeping
Sleeping
Upload package.json with huggingface_hub
Browse files- package.json +33 -0
package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "ai-portfolio-cinematic",
|
| 3 |
+
"version": "0.1.0",
|
| 4 |
+
"private": true,
|
| 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.4",
|
| 13 |
+
"react": "^18.2.0",
|
| 14 |
+
"react-dom": "^18.2.0",
|
| 15 |
+
"framer-motion": "^10.16.16",
|
| 16 |
+
"@react-three/fiber": "^8.15.14",
|
| 17 |
+
"@react-three/drei": "^9.96.1",
|
| 18 |
+
"three": "^0.160.0",
|
| 19 |
+
"lucide-react": "^0.303.0",
|
| 20 |
+
"clsx": "^2.1.0",
|
| 21 |
+
"tailwind-merge": "^2.2.0",
|
| 22 |
+
"react-intersection-observer": "^9.5.3"
|
| 23 |
+
},
|
| 24 |
+
"devDependencies": {
|
| 25 |
+
"@types/node": "^20.10.6",
|
| 26 |
+
"@types/react": "^18.2.46",
|
| 27 |
+
"@types/react-dom": "^18.2.18",
|
| 28 |
+
"autoprefixer": "^10.4.16",
|
| 29 |
+
"postcss": "^8.4.32",
|
| 30 |
+
"tailwindcss": "^3.4.0",
|
| 31 |
+
"typescript": "^5.3.3"
|
| 32 |
+
}
|
| 33 |
+
}
|