-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"name": "AmbiguousGame",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/christopherhurt/AmbiguousGame.git",
"author": "Jack Cogdill <[email protected]>",
"license": "MIT",
"scripts": {
"client": "webpack-dev-server --inline --colors --watch --hot --open --config webpack.dev.js",
"server": "nodemon --exec \"yarn serve\"",
"start": "concurrently \"yarn client\" \"yarn server\"",
"build": "webpack --config webpack.prod.js",
"serve": "babel-node --presets @babel/preset-env --plugins @babel/plugin-transform-runtime ./server.js"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime": "^7.1.2",
"babel-loader": "^8.0.4",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^4.5.2",
"nodemon": "^1.18.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"ws": "^6.1.0"
}
}