-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 732 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 732 Bytes
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
{
"name": "kill-the-virus-game",
"version": "1.0.0",
"description": "Kill the virus game.",
"main": "index.js",
"scripts": {
"start": "node ./bin/server.js",
"dev": "cross-env DEBUG=kill-the-virus-game:* nodemon ./bin/server.js",
"debug": "cross-env DEBUG=kill-the-virus-game:*,socket.io:client,socket.io:server nodemon --inspect ./bin/server.js"
},
"keywords": [],
"author": "Sofia Ling",
"license": "ISC",
"dependencies": {
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"engines": {
"node": "12.x"
}
}