-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky",
"lint": "eslint ."
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@next/third-parties": "^16.2.4",
"@react-three/drei": "^10.0.3",
"@react-three/fiber": "^9.0.4",
"@vercel/analytics": "^2.0.1",
"gsap": "^3.12.7",
"next": "^16.2.6",
"react": "^19.2.5",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.5",
"three": "^0.173.0",
"uuid": "^14.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^25.6.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.184.0",
"eslint": "^9",
"eslint-config-next": "^16.2.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8",
"r3f-perf": "^7.2.3",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}