-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 807 Bytes
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
{
"name": "clean-api",
"version": "1.0.0",
"main": "index.js",
"author": "João Martins <jvmartinsdev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"git-commit-msg-linter": "^4.7.3",
"husky": "^8.0.0",
"jest": "^29.4.2",
"lint-staged": "^13.1.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "*"
},
"scripts": {
"test": "jest --passWithNoTests --watch",
"test:staged": "jest --passWithNoTests",
"prepare": "husky install"
}
}