-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.89 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
59
60
61
62
{
"name": "lab",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "bun scripts/generate-experiments.ts",
"dev": "next dev --turbopack",
"prebuild": "bun scripts/generate-experiments.ts && bash scripts/build-monty.sh",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"dev:sandbox": "NODE_ENV=development WATCHPACK_POLLING=true CHOKIDAR_USEPOLLING=1 next dev --turbopack --hostname 0.0.0.0 --port 14083",
"update-experiments": "bun scripts/generate-experiments.ts",
"update-experiment-import-map": "bun scripts/generate-experiments.ts",
"optimize-models": "./scripts/optimize-models.sh"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.1.2",
"@react-three/drei": "^10.0.5",
"@react-three/fiber": "^9.1.1",
"@types/lodash": "^4.17.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.6.3",
"glslify-loader": "^2.0.0",
"graphql-request": "^7.1.2",
"html2canvas": "^1.4.1",
"lerp": "^1.0.3",
"leva": "^0.10.0",
"lodash": "^4.17.21",
"lucide-react": "^0.487.0",
"motion": "^12.0.0",
"next": "16.1.1",
"next-themes": "^0.4.6",
"onnxruntime-web": "^1.17.3",
"raw-loader": "^4.0.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"sass": "^1.86.3",
"tailwind-merge": "^3.1.0",
"three-custom-shader-material": "^6.3.1",
"tw-animate-css": "^1.2.5",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"tailwindcss": "^4",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}