-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.09 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
40
{
"name": "werewolf-back-end",
"version": "1.0.0",
"description": "Back-end for the game Werewolf",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isadorabk/werewolf-back-end.git"
},
"author": "Isadora Bassetto Kwiatkowski",
"license": "ISC",
"bugs": {
"url": "https://github.com/isadorabk/werewolf-back-end/issues"
},
"homepage": "https://github.com/isadorabk/werewolf-back-end#readme",
"devDependencies": {
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"mongoose": "^5.2.5",
"nodemon": "^1.18.3",
"randomstring": "^1.1.5",
"socket.io": "^2.1.1"
}
}