forked from andrewwoan/PSU-VR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 909 Bytes
/
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
{
"name": "campusvr",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"frontend-dev": "vite --host",
"frontend-build": "vite build --watch",
"backend-build": "node server.js",
"backend-dev": "nodemon server.js",
"dev": "concurrently --kill-others \"npm run frontend-build\" \"npm run backend-dev\"",
"heroku-postbuild": "vite build"
},
"devDependencies": {
"concurrently": "^8.2.0",
"gsap": "^3.12.2",
"include-media": "^2.0.0",
"nodemon": "^2.0.22",
"sass": "^1.63.6",
"vite": "^4.3.9"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"events": "^3.3.0",
"express": "^4.18.2",
"nipplejs": "^0.10.1",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.1",
"three": "^0.154.0"
}
}