-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 800 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 800 Bytes
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
{
"name": "threeatre",
"version": "2.0.0",
"description": "WebXR Theatre - Live streaming watch parties with Three.js",
"main": "index.html",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run dev:client\"",
"dev:client": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"server": "node server.js",
"start": "node server.js",
"vercel-build": "npm run build"
},
"dependencies": {
"three": "^0.170.0",
"socket.io-client": "^4.7.5",
"socket.io": "^4.7.5",
"express": "^4.18.2",
"cors": "^2.8.5",
"@pixiv/three-vrm": "^3.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"vite": "^5.0.0",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"concurrently": "^8.2.2"
},
"type": "module"
}