-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
{
"name": "curso-tdd-node-clean",
"version": "1.0.0",
"description": "Curso tem como objetivo aprender de verdade a criar uma API completa com Typescript utilizando TDD, Clean Architecture, Design Patterns e SOLID. Link do curso **[AQUI](https://www.udemy.com/course/tdd-com-mango/)**",
"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",
"lint": "eslint . --ext .ts --fix",
"prepare": "husky install",
"execute-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{js,ts}": [
"eslint . --fix",
"prettier --write ."
]
},
"repository": {
"type": "git",
"url": "https://github.com/glaucia86/curso-tdd-node-clean.git"
},
"keywords": [
"tdd",
"node",
"clean architecture",
"design patterns",
"solid"
],
"author": "Glaucia Lemos <Twitter: @glaucia_lemos86>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glaucia86/curso-tdd-node-clean/issues"
},
"homepage": "https://github.com/glaucia86/curso-tdd-node-clean#readme",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^18.11.0",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"git-commit-msg-linter": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"validator": "^13.7.0"
}
}