-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 KB
/
package.json
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
{
"name": "bun-server",
"module": "src/server/main.ts",
"type": "module",
"scripts": {
"dev": "APP_ENV=dev vite",
"build": "APP_ENV=prod vite build",
"preview": "vite preview",
"proxy": "bun run --watch proxy/main.ts",
"generate": "bun run common/packets/generate.ts",
"tsc": "tsc --noEmit",
"utils:ozjToJpeg": "bun run tools/ozjToJpeg.ts",
"utils:oztToTga": "bun run tools/oztToTga.ts"
},
"devDependencies": {
"@gltf-transform/core": "4",
"@gltf-transform/extensions": "4",
"@gltf-transform/functions": "4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"bun-types": "^1.1.21",
"less": "^4.2.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-gltf": "4"
},
"dependencies": {
"@babylonjs/core": "^7.17.2",
"@babylonjs/loaders": "^7.17.2",
"@babylonjs/materials": "^7.17.2",
"miniplex": "^2.0.0",
"mitt": "^3.0.1",
"mobx": "^6.13.1",
"mobx-react-lite": "^4.0.7",
"nanoid": "^5.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"engines": {
"node": "20"
}
}