-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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": "base-nodejs-setup",
"version": "1.0.0",
"description": "Setup de referência para futuros projetos Node.js.",
"main": "index.js",
"keywords": [],
"author": "Iglan Cardeal",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "yarn lint --fix",
"test": "jest --passWithNoTests --silent",
"test:coverage": "yarn test:unit --coverage",
"test:ci": "yarn test:unit --coverage --ci --updateSnapshot",
"test:unit": "yarn test",
"test:unit:watch": "yarn test --watch",
"test:u": "yarn test:unit",
"test:u:w": "yarn test:unit:watch",
"test:staged": "yarn test",
"test:verbose": "jest --passWithNoTests --verbose",
"test:verbose:watch": "jest --passWithNoTests --verbose --watch",
"test:v": "yarn test:verbose",
"test:v:w": "yarn test:verbose:watch",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"yarn lint",
"yarn test:staged"
]
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-security": "^1.4.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.2",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}