-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 958 Bytes
/
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": "my-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tidy": "eslint . --ext .js,.ts,.tsx --fix"
},
"dependencies": {
"@react-three/drei": "^9.103.0",
"@react-three/fiber": "^8.16.0",
"framer-motion": "^11.0.23",
"next": "14.1.0",
"next-seo": "^6.5.0",
"react": "^18",
"react-dom": "^18",
"three": "^0.162.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.162.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-import": "^2.29.1",
"postcss": "^8.4.38",
"sass": "^1.75.0",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}