-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 KB
/
package.json
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
{
"name": "portfolio",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"start": "node .next/standalone/server.js 0.0.0.0:3000",
"build": "next build && cp -r public .next/standalone/public && cp -r .next/static .next/standalone/.next/static",
"lint": "next lint",
"test:e2e": "DEBUG=pw:webserver,pw:api playwright test --reporter=line"
},
"dependencies": {
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.4",
"framer-motion": "^11.0.0",
"material-symbols": "^0.28.0",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-parallax-tilt": "^1.7.172",
"sharp": "^0.33.5",
"three": "^0.174.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@playwright/test": "1.50.1",
"@types/node": "22.13.8",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/three": "0.174.0",
"autoprefixer": "10.4.20",
"eslint": "9.21.0",
"eslint-config-next": "15.2.0",
"postcss": "8.5.3",
"prettier": "3.5.2",
"tailwindcss": "3.4.17"
}
}