-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1013 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1013 Bytes
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": "api-node-tdd",
"version": "1.0.0",
"main": "src/main/index.js",
"scripts": {
"start": "node src/main/index.js",
"test": "jest --colors --passWithNoTests --runInBand",
"test:unit": "yarn test -- --watch -c jest-unit-config.js",
"test:integration": "yarn test -- --watch -c jest-integration-config.js",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "jest --coverage"
},
"standard": {
"env": [
"jest"
]
},
"repository": "https://github.com/elvesbd/api-tdd-node.git",
"author": "elvesbd <elvesbd@yahoo.com>",
"license": "MIT",
"devDependencies": {
"@shelf/jest-mongodb": "^2.1.0",
"fast-glob": "^3.2.7",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.0.3",
"standard": "^16.0.4",
"supertest": "^6.1.6"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.1",
"mongoose": "^6.0.13",
"validator": "^13.7.0"
}
}