-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 896 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 896 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
30
31
32
33
34
35
36
37
{
"name": "bh-game-server",
"version": "1.0.0",
"description": "Game server for bounty hunter",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "NODE_ENV=development nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/com2027/Game.git"
},
"keywords": [
"game"
],
"author": "Kieran Rigby",
"license": "ISC",
"bugs": {
"url": "https://github.com/com2027/Game/issues"
},
"homepage": "https://github.com/com2027/Game#readme",
"dependencies": {
"@pusher/push-notifications-server": "^1.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"nodemon": "^1.18.10",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"socket.io": "^2.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"dotenv": "^8.0.0"
}
}