35 lines
748 B
JSON
35 lines
748 B
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"
|
|
},
|
|
"dependencies": {
|
|
"@react-three/drei": "^10",
|
|
"@react-three/fiber": "^9",
|
|
"three": "^0.182.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.11",
|
|
"turbo": "^2.7.4",
|
|
"typescript": "5.9.2",
|
|
"ultracite": "^7.0.11"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"packageManager": "bun@1.3.0",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
]
|
|
}
|