-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 932 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
{
"name": "ludo-dvamps",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "export APP_VERSION='prod' && node server.js",
"dev": "export APP_VERSION='dev' && node server.js",
"nodemon": "nodemon -w src -w server.js -w app.js",
"linter": "eslint .",
"coverage": "nyc mocha --recursive",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/STEP-tw/ludo-dvamps.git"
},
"author": "d-vamps",
"license": "ISC",
"bugs": {
"url": "https://github.com/STEP-tw/ludo-dvamps/issues"
},
"homepage": "https://github.com/STEP-tw/ludo-dvamps#readme",
"devDependencies": {
"chai": "^4.1.2",
"pug": "^2.0.1",
"supertest": "git+https://github.com/visionmedia/supertest.git"
},
"dependencies": {
"cookie-parser": "^1.4.3",
"express": "^4.16.2",
"nyc": "^11.4.1",
"pg": "^7.4.1"
}
}