-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
41
42
43
{
"name": "3yp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev:start": "nodemon index.js",
"heroku-postbuild": "cd triton && yarn --production=false && yarn run build",
"test": "NODE_ENV=test jest tests --watch",
"ci:test": "NODE_ENV=test jest tests",
"docs": "jsdoc -c jsdoc-config.json -R README.md -d docs -r . && serve -s docs",
"coverage": "serve -s coverage"
},
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^4.0.0",
"express": "^4.16.2",
"mongoose": "^4.11.9",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"jest": "^22.2.2",
"jsdoc": "^3.5.5",
"jsdoc-route-plugin": "^0.1.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"html",
"lcov"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/triton/"
]
}
}