-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
50
51
52
{
"name": "TDD-clean-architecture-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --no-cache",
"test:verbose": "jest --passWithNoTests",
"test:unit": "npm run test -- --watch",
"test:staged": "jest --passWithNoTests",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Renan1fps/TDD-clean-architecture-node.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Renan1fps/TDD-clean-architecture-node/issues"
},
"homepage": "https://github.com/Renan1fps/TDD-clean-architecture-node#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^2.2.1",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^27.4.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^16.11.11",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"install": "^0.13.0",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"npm": "^8.4.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"mongodb": "^4.5.0",
"validator": "^13.7.0"
}
}