43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "editor",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"lint": "biome lint",
|
|
"lint:fix": "biome lint --write",
|
|
"format": "biome format --write",
|
|
"format:check": "biome format",
|
|
"check": "biome check",
|
|
"check:fix": "biome check --write",
|
|
"check-types": "turbo run check-types",
|
|
"db:start": "cd packages/db && supabase start",
|
|
"db:stop": "cd packages/db && supabase stop",
|
|
"db:reset": "cd packages/db && supabase db reset",
|
|
"db:status": "cd packages/db && supabase status"
|
|
},
|
|
"dependencies": {
|
|
"@react-three/drei": "^10.7.7",
|
|
"@react-three/fiber": "^9.5.0",
|
|
"three": "^0.182.0",
|
|
"three-bvh-csg": "^0.0.17",
|
|
"three-mesh-bvh": "^0.9.8",
|
|
"zustand": "^5.0.10"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.13",
|
|
"supabase": "2.75.3",
|
|
"turbo": "^2.8.1",
|
|
"typescript": "5.9.2",
|
|
"ultracite": "^7.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "bun@1.3.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
}
|