forked from AidanNelson/YORB2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "yorb2020",
"version": "1.0.0",
"description": "Repo for YORB2020, a virtual version of the fourth floor of 370 Jay Street.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify src/index.js -o ./public/js/bundle.js",
"watch": "watchify --debug src/index.js -o public/js/bundle.js -v",
"start": "concurrently \"nodemon server.js\" \"watchify src/index.js -o public/js/bundle.js -v\"",
"production": "export NODE_ENV=production && browserify src/index.js -o ./public/js/bundle.js && forever start server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"debug": "^4.1.1",
"deep-equal": "^2.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mediasoup": "^3.5.8",
"mediasoup-client": "^3.6.5",
"p5": "^1.0.0",
"simple-peer": "^9.6.2",
"socket.io": "^2.3.0",
"three": "^0.115.0",
"twilio": "^3.40.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babelify": "^10.0.0",
"browserify": "^15.2.0",
"concurrently": "^3.5.1",
"nodemon": "^1.14.12",
"uglify-js": "^3.3.9",
"watchify": "^3.10.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"only": [
"./src/*.js",
"./node_modules/three/build/three.module.js",
"./node_modules/three/examples/jsm/*"
],
"global": true,
"sourceType": "unambiguous",
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-transform-runtime"
]
}
]
]
}
}