-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
{
"name": "learning-cell",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"optimize:glb": "npx tsx scripts/optimize-glb.ts",
"optimize:glb:models": "npx tsx scripts/optimize-glb.ts ./public/models/new",
"analyze:glb": "npx tsx scripts/analyze-glb.ts",
"analyze:glb:models": "npx tsx scripts/analyze-glb.ts ./public/models",
"convert:webp": "npx tsx scripts/convert-images-to-webp.ts",
"convert:webp:images": "npx tsx scripts/convert-images-to-webp.ts ./public/models/new",
"update:model-sizes": "npx tsx scripts/update-model-sizes.ts"
},
"dependencies": {
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slider": "^1.3.6",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
"@tailwindcss/postcss": "4.1.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.16.0",
"next": "^16.2.6",
"radix-ui": "^1.4.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-resizable-panels": "^4.11.1",
"shadcn": "^4.7.0",
"tailwind-merge": "^3.6.0",
"three": "^0.184.0",
"three-stdlib": "^2.36.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@gltf-transform/core": "^4.3.0",
"@tailwindcss/cli": "^4.3.0",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"sharp": "^0.34.5",
"tailwindcss": "~4.3.0",
"tsx": "^4.22.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2"
}
}