-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
{
"name": "distributed_gaming",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./server/server.js",
"heroku-postbuild": "webpack -p --config ./webpack.config.js --progress",
"dev": "nodemon ./server/server.js",
"compile": "webpack ./public/js/index.js --watch",
"webpack": "webpack ./public/js/index.js",
"test": "nyc mocha --recursive --exit || true",
"combinedtest": "concurrently \"node ./server/server.js\" \"nyc mocha --recursive --exit || true\""
},
"engines": {
"node": "10.14.2"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"concurrently": "^4.1.0",
"css-loader": "^2.1.1",
"express": "^4.16.4",
"get-port": "^5.0.0",
"jquery": "^3.4.0",
"jsgbc": "^0.5.8",
"random-hash": "^4.0.1",
"serverboy": "0.0.4",
"simple-peer": "^9.3.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.3",
"nodemon": "^1.18.11",
"nyc": "^13.3.0",
"zombie": "^6.1.4"
}
}