-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "api-node-TDD-clean",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"main": "src/main/index.js",
"scripts": {
"start": "node src/main/index.js",
"test": "jest --colors --noStackTrace --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests --silent",
"test:ci": "npm test -- --coverage --silent",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info"
},
"standard": {
"env": [
"jest"
]
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"coveralls": "^3.0.11",
"husky": "^4.0.0-beta.5",
"jest": "^24.9.0",
"lint-staged": "^9.4.3",
"standard": "^14.3.1",
"supertest": "^4.0.2"
},
"dependencies": {
"bcrypt": "^3.0.7",
"express": "^4.17.1",
"fast-glob": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.5",
"validator": "^12.1.0"
}
}