-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
53
{
"name": "clean-nodejs-api-solid-tdd-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:ci": "npm test",
"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",
"lint:staged": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wguilherme/clean-nodejs-api-solid-tdd-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wguilherme/clean-nodejs-api-solid-tdd-typescript/issues"
},
"homepage": "https://github.com/wguilherme/clean-nodejs-api-solid-tdd-typescript#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^3.0.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^27.5.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.31",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"git-commit-msg-linter": "^4.1.2",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^11.2.6",
"ts-jest": "^28.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"mongodb": "^4.6.0",
"validator": "^13.7.0"
}
}