-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "clean-node-api",
"version": "1.0.0",
"main": "src/main/index.js",
"repository": "https://github.com/alvdelci/clean-node-api.git",
"author": "alvdelci <delcimarioalvesdev@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node src/main/index.js",
"test": "jest --colors --noStackTrace --passWithNoTests --runInBand",
"test:unit": "npm run test -- --watch -c jest-unit-config.js",
"test:integration": "npm run test -- --watch -c jest-integration-config.js",
"test:staged": "npm run test -- --findRelatedTests --silent",
"test:ci": "npm run test -- --coverage --silent"
},
"standard": {
"env": [
"jest"
]
},
"devDependencies": {
"@shelf/jest-mongodb": "^5.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"standard": "^17.1.2",
"supertest": "^7.1.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.15.0",
"validator": "^13.15.0"
}
}