-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "hatgame",
"version": "1.0.0",
"description": "",
"main": "src/server/index.js",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"open:win32": "start http://localhost:3091",
"open:default": "xdg-open http://localhost:3091",
"open": "run-script-os",
"prestart": "npm run open",
"serve": "nodemon src/server/index.js",
"start": "concurrently -kill-others-on-fail \"npm run serve\" \"npm run build:watch\""
},
"author": "",
"license": "ISC",
"engines": {
"node": "10.x"
},
"dependencies": {
"express": "^4.17.1",
"morgan": "^1.10.0",
"ws": "^7.2.3"
},
"devDependencies": {
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"mustache": "^4.0.1",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.7.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-rollbar-deploy": "^1.1.2",
"rollup-plugin-rollbar-sourcemaps": "^1.1.0",
"rollup-plugin-terser": "^5.3.0",
"run-script-os": "^1.1.1"
}
}