-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.75 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
{
"name": "gitlaxy",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "mkdir -p public/draco && cp -r node_modules/three/examples/jsm/libs/draco/* public/draco/",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"kill-servers": "node scripts/kill-servers.js",
"optimize-model": "gltf-transform optimize \"public/Spacyship 3D Model.glb\" public/spaceship-optimized.glb --compress draco",
"postinstall": "mkdir -p public/draco && cp -r node_modules/three/examples/jsm/libs/draco/* public/draco/"
},
"dependencies": {
"@codemirror/commands": "^6.10.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.11.3",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.38.8",
"@react-three/drei": "^10.0.6",
"@react-three/fiber": "^9.1.2",
"@react-three/postprocessing": "^3.0.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"three": "^0.175.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@gltf-transform/cli": "^4.2.1",
"@gltf-transform/functions": "^4.2.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.175.0",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
}
}