-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.2 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
63
64
65
66
67
{
"name": "r3f-examples",
"license": "MIT",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"postbuild": "node scripts/spa-fallback.mjs",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . && prettier --check .",
"test:smoke": "playwright test tests/smoke.spec.ts",
"test:animates": "playwright test tests/animates.spec.ts",
"postinstall": "node scripts/patch-fiber-types.mjs",
"test:changed": "node scripts/test-changed.mjs",
"shot": "node scripts/contact-sheet.mjs",
"contact-sheet": "node scripts/contact-sheet.mjs",
"thumbs": "node scripts/thumbs.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:manifest": "node scripts/generate-manifest.mjs",
"compare": "node scripts/compare-lines.mjs",
"tick": "node scripts/tick-backlog.mjs",
"shot:original": "node scripts/shoot-original.mjs",
"inventory": "node scripts/demo-inventory.mjs"
},
"dependencies": {
"@perplexdotgg/bounce": "^1.10.0",
"@react-three/drei": "11.0.0-alpha.7",
"@react-three/fiber": "10.0.0-alpha.4",
"@react-three/rapier": "^2.2.0",
"@three.ez/batched-mesh-extensions": "^0.0.12",
"camera-controls": "^3.1.2",
"leva": "^0.10.1",
"lottie-web": "^5.13.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^7.18.1",
"three": "^0.185.1",
"three-bvh-csg": "^0.0.18",
"three-mesh-bvh": "^0.9.14",
"three-subdivide": "^1.1.5"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@react-three/eslint-plugin": "1.0.0-alpha.2",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.1.1",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.185.1",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"pngjs": "^7.0.0",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5"
}
}