-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.01 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
38
39
40
{
"name": "cleanarch-api-nodejs",
"version": "1.0.0",
"description": "",
"type": "commonjs",
"main": "src/main/index.js",
"scripts": {
"start": "node src/main/index.js",
"test": "jest --silent --verbose --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 ./*",
"test:ci": "npm test -- --coverage"
},
"keywords": [],
"standard": {
"env": [
"jest"
]
},
"author": "Jeanluca-Moren0",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fast-glob": "^3.2.11",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.7.3",
"validator": "^13.7.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"standard": "^16.0.4",
"supertest": "^6.2.3"
}
}