-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 922 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 922 Bytes
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
{
"name": "coleman-rose-portfolio",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:strict": "next lint --strict",
"lint:fix": "next lint --fix",
"build:check": "next build && echo '✅ Build successful - ready to deploy!'"
},
"dependencies": {
"@react-three/drei": "^9.88.13",
"@react-three/fiber": "^8.15.19",
"@types/three": "^0.177.0",
"lucide-react": "^0.344.0",
"next": "^14.2.30",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.177.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.0.0",
"eslint-config-next": "14.0.4",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3"
}
}