-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "node-api-tdd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "2",
"eslint": "6",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"git-commit-msg-linter": "^2.4.2",
"husky": "^4.2.3",
"jest": "^25.2.7",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2",
"prettier-eslint": "^9.0.1",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"dependencies": {
"validator": "^13.0.0"
}
}