-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 871 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
{
"name": "mdlive-test",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest --verbose --detectOpenHandles --forceExit ./tests",
"test:watch": "jest --watch",
"seed": "cd bin && node -e \"const seed = require('./seeds.js'); seed()\" "
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"mongoose": "^5.7.7",
"morgan": "~1.9.1"
},
"devDependencies": {
"jest": "^24.9.0",
"jest-junit": "^9.0.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
},
"jest-junit": {
"outputDirectory": "./test-results/junit",
"outputName": "results.xml"
}
}