-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 970 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
30
31
32
33
34
35
36
37
{
"name": "ts-jest-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest -c jest.config.ts",
"test:cov": "jest -c jest.config.ts --coverage",
"lint": "prettier . --check || exit 1 ; eslint . --max-warnings=0",
"lint:fix": "prettier . --write ; eslint . --fix",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {},
"lint-staged": {
"*": "prettier --write",
"*.{js,ts}": "eslint --fix"
}
}