-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
41
42
43
44
45
46
47
{
"name": "clean-architecture-node-api",
"version": "1.0.0",
"description": "",
"main": "src/main/index.js",
"scripts": {
"start": "node .",
"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",
"test:ci": "npm test -- --coverage --silent"
},
"standard": {
"env": [
"jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaelmaltez/clean-architecture-node-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rafaelmaltez/clean-architecture-node-api/issues"
},
"homepage": "https://github.com/rafaelmaltez/clean-architecture-node-api#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"standard": "^17.0.0",
"supertest": "^6.2.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fast-glob": "^3.2.11",
"husky": "^4.3.8",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.9.0",
"validator": "^13.7.0"
}
}