-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 939 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 939 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
{
"name": "clean-node-api",
"version": "1.0.0",
"main": "src/main/index.js",
"author": "diglopes <diego-chez@hotmail.com>",
"license": "MIT",
"devDependencies": {
"husky": "^4.0.0-beta.5",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"standard": "^14.3.1",
"supertest": "^4.0.2"
},
"standard": {
"env": [
"jest"
]
},
"scripts": {
"start": "node src/main/index.js",
"test": "jest --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"
},
"dependencies": {
"bcrypt": "^3.0.7",
"express": "^4.17.1",
"fast-glob": "^3.1.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.1",
"validator": "^12.1.0"
}
}