-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 854 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 854 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
{
"name": "spark-react-nextjs",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"assets:clean": "node scripts/clean-assets.js",
"assets:download": "node scripts/download-assets.js",
"lint": "biome check .",
"lint:fix": "biome check . --write"
},
"dependencies": {
"@react-three/drei": "^10.5.1",
"@react-three/fiber": "^9.2.0",
"@sparkjsdev/spark": "^0.1.6",
"next": "^15.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^22.16.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3"
}
}