-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 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
68
69
70
71
72
{
"name": "@darkroom.engineering/elastica-website",
"description": "Elastica physics engine examples and documentation",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"sideEffects": [
"*.css"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "bun run setup:styles && next dev --turbo",
"build": "bun run setup:styles && next build",
"start": "next start",
"lint": "biome lint --max-diagnostics=200",
"lint:fix": "biome lint --write --unsafe --max-diagnostics=200",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"analyze": "cross-env ANALYZE=true bun run build",
"setup:styles": "bun ./lib/styles/scripts/setup-styles.ts"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@use-gesture/react": "^10.3.1",
"clsx": "^2.1.1",
"gsap": "^3.14.2",
"hamo": "1.0.0-dev.7",
"lenis": "^1.3.17",
"next": "16.1.7",
"postprocessing": "^6.38.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"stats-gl": "^3.8.0",
"tempus": "1.0.0-dev.17",
"three": "^0.182.0",
"tunnel-rat": "^0.1.2",
"tweakpane": "^4.0.5",
"zustand": "^5.0.10"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@clack/prompts": "^0.11.0",
"@csstools/postcss-global-data": "^3.1.0",
"@next/bundle-analyzer": "16.1.1",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@theatre/core": "^0.7.2",
"@theatre/studio": "^0.7.2",
"@tweakpane/core": "^2.0.5",
"@types/bun": "^1.3.5",
"@types/node": "^25.0.6",
"@types/react": "19.2.8",
"@types/three": "^0.182.0",
"babel-plugin-react-compiler": "^1.0.0",
"cross-env": "^10.1.0",
"postcss-functions": "^4.0.2",
"postcss-preset-env": "^10.6.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"sharp"
],
"packageManager": "bun@1.3.5"
}