-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 935 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
37
38
{
"name": "todo-apps-api",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "jest --coverage --forceExit",
"bdd": "./node_modules/.bin/cucumber-js --format json:./cucumber.json --exit"
},
"jest": {
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.js?$",
"testResultsProcessor": "jest-junit"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"dotenv": "^5.0.0",
"ejs": "~2.5.6",
"express": "^4.16.4",
"lodash": "^4.17.11",
"mongoose": "^5.0.2",
"morgan": "^1.9.1",
"serve-favicon": "~2.4.2",
"swagger-ui-express": "^4.0.1",
"winston": "^2.4.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"cucumber": "^4.0.0",
"jest": "^22.1.4",
"jest-junit": "^3.4.1",
"mocha": "^5.0.0",
"supertest": "^3.0.0"
}
}