-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "server",
"version": "1.0.0",
"main": "bootstrap.ts",
"author": "donnyroufs",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only --no-notify -r tsconfig-paths/register src/bootstrap.ts",
"test": "NODE_ENV=test jest --collect-coverage",
"test:watch": "NODE_ENV=test jest --watch",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^8.2.0",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn prettier --write",
"yarn test --watchAll=false --findRelatedTests --bail"
]
},
"dependencies": {
"express": "^4.17.1",
"inversify": "^5.1.1",
"inversify-express-utils": "^6.3.2",
"mongoose": "^5.12.8",
"reflect-metadata": "^0.1.13"
}
}