-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "koa2-ts-rest",
"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",
"doc": "apidoc -i src/ -o apidoc/"
},
"author": "Haroon Khan <aitchkhan@gmail.com>",
"license": "MIT",
"dependencies": {
"apidoc": "^0.23.0",
"@hapi/boom": "^9.1.0",
"convict": "^6.0.0",
"debug": "^4.1.1",
"koa": "^2.12.0",
"koa-basic-auth": "^4.0.0",
"koa-bodyparser": "^4.3.0",
"koa-bunyan-logger": "^2.1.0",
"koa-compose": "^4.1.0",
"koa-json": "^2.0.2",
"koa-mount": "^4.0.0",
"koa-router": "^9.0.1",
"koa-static": "^5.0.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.10.2",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/boom": "^7.3.0",
"@types/bunyan": "^1.8.6",
"@types/convict": "^5.2.1",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.0",
"@types/koa": "^2.11.3",
"@types/koa-basic-auth": "^2.0.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-bunyan-logger": "^2.1.2",
"@types/koa-json": "^2.0.18",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.1",
"body-parser": "^1.19.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"nodemon": "^2.0.4",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": ""
}
},
"lint-staged": {
"src/**/*.ts": [
"tslint",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/test/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}