forked from donnyroufs/starter-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "app",
"version": "0.0.0",
"main": "bootstrap.ts",
"author": "Donny Roufs",
"scripts": {
"dev": "ts-node-dev --respawn src/bootstrap.ts",
"test": "jest --verbose",
"test:cov": "jest --verbose --collectCoverage",
"build": "tsc",
"test:watch": "jest --watch --verbose",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.18.2",
"inversify": "^6.0.2",
"inversify-express-utils": "^6.4.6",
"jest-mock-extended": "^2.0.7",
"mongoose": "^8.1.3",
"reflect-metadata": "^0.2.1"
},
"devDependencies": {
"@jest-decorated/core": "^0.1.7",
"@types/express": "^4.17.21",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-extended": "^3.2.4",
"lint-staged": ">=13",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn prettier --write",
"yarn test --watchAll=false --findRelatedTests --bail"
]
}
}