-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
62
63
64
65
66
67
68
69
70
{
"name": "koa2-boot-ts",
"version": "1.0.0",
"description": "An opinionated boilerplate for koa v2 with typescript",
"scripts": {
"start": "node --inspect-brk bin/server",
"watch": "nodemon bin/server",
"lint": "tslint 'src/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' --fix",
"test": "jest"
},
"author": "Mohammad Umair Khan <[email protected]>",
"license": "MIT",
"dependencies": {
"boom": "^7.1.1",
"convict": "^4.0.2",
"debug": "^3.1.0",
"koa": "^2.5.0",
"koa-bunyan-logger": "^2.0.0",
"koa-compose": "^4.0.0",
"koa-json": "^2.0.2",
"koa-router": "^7.4.0",
"ts-node": "^4.1.0"
},
"devDependencies": {
"@types/boom": "^7.1.1",
"@types/bunyan": "^1.8.4",
"@types/convict": "^4.1.1",
"@types/debug": "^0.0.30",
"@types/jest": "^22.1.2",
"@types/koa": "^2.0.44",
"@types/koa-json": "^2.0.16",
"@types/koa-router": "^7.0.27",
"body-parser": "^1.18.2",
"husky": "^0.15.0-rc.8",
"jest": "^22.2.2",
"lint-staged": "^6.1.0",
"nodemon": "^1.14.12",
"ts-jest": "^22.0.4",
"tslint": "^5.9.1",
"typescript": "^2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"src/**/*.ts": [
"tslint",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/test/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}