-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
41
42
43
44
{
"name": "dota2lfg",
"version": "1.0.0",
"description": "Dota 2 LFG",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run-script server\" \"npm run-script client\"",
"start": "node server.js",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flooyd/dota2lfg.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flooyd/dota2lfg/issues"
},
"homepage": "https://github.com/flooyd/dota2lfg#readme",
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.2",
"mongoose": "^5.1.4",
"morgan": "^1.9.0",
"node-int64": "^0.4.0",
"passport": "^0.4.0",
"passport-steam": "^1.0.10",
"react-router-dom": "^4.3.1",
"request": "^2.87.0",
"steamid": "^1.1.0"
},
"devDependencies": {
"concurrently": "^3.5.1",
"mocha": "^5.2.0"
}
}