-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 KB
/
package.json
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
48
49
{
"name": "clean-architecture",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "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",
"test:ci": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielrubens/node-clean-architecture.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielrubens/node-clean-architecture/issues"
},
"homepage": "https://github.com/danielrubens/node-clean-architecture#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.4",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.2.3",
"@types/mongodb": "^4.0.7",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^4.2.1",
"husky": "^4.3.8",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"bcrypt": "^5.1.0",
"mongodb": "^4.12.1",
"validator": "^13.7.0"
}
}