-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 967 Bytes
/
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
{
"name": "node-against",
"version": "1.0.0",
"description": "api",
"main": "server/index.js",
"engines": {
"node": "12.16.x"
},
"scripts": {
"start": "node -r esm server/index.js",
"dev": "nodemon -r esm server/index.js & (cd client && npm run watch)",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "cd client && npm install && npm run build",
"lint": "eslint server/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keremciu/node-against-humanity.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keremciu/node-against-humanity/issues"
},
"homepage": "https://github.com/keremciu/node-against-humanity#readme",
"dependencies": {
"esm": "^3.2.25",
"express": "^4.17.1",
"react-cool-portal": "^1.0.6",
"socket.io": "^2.3.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.3"
}
}