-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "express-ts-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for Express Node application in TS.",
"author": "Igor Szymański",
"repository": "github:igorszymanski/express-ts-boilerplate",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && ttsc",
"start:dev": "ts-node-dev --type-check src/main.ts",
"start:live": "ts-node --type-check src/main.ts",
"start:debug": "node --inspect -r ts-node/register src/main.ts",
"start": "node dist/main.js",
"lint": "eslint \"./**/*.{ts,js}\"",
"lint:fix": "eslint --fix \"./**/*.{ts,js}\"",
"test": "jest --coverage --verbose",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"test:debug": "jest --runInBand",
"test:e2e": "jest --config ./jest.e2e-config.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"express": "^4.17.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.2",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.5",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"@zerollup/ts-transform-paths": "^1.7.17",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.0",
"jest": "^26.0.1",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-node": "8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"ttypescript": "^1.5.10",
"typescript": "3.9.3"
},
"lint-staged": {
"*.{js,ts}": ["eslint --fix"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}