-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 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
44
45
{
"name": "vr-classroom",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm -rf dist",
"dev": "parcel front/index.html -d dist/public",
"build-front": "parcel build front/index.html -d dist/public",
"build-back": "babel back -d dist --copy-files",
"build-all": "npm run clean && npm run build-front && npm run build-back",
"serve": "node dist/index.js",
"start": "npm run build-all && npm run serve"
},
"dependencies": {
"express": "^4.17.1",
"firebase": "^7.14.5",
"firebase-admin": "^8.12.1",
"ibm-watson": "^5.5.0",
"jquery": "^3.5.1",
"nocache": "^2.1.0",
"peerjs": "^1.2.0",
"socket.io": "^2.3.0",
"three": "^0.116.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.5",
"parcel-plugin-static-files-copy": "^2.3.1"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "front/models",
"staticOutDir": "models"
}
]
}
}