-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 2.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@lcdev/router",
"description": "Common structure for koa routing",
"version": "1.5.0",
"license": "MPL-2.0",
"author": {
"name": "Launchcode",
"email": "[email protected]",
"url": "https://lc.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/launchcodedev/router.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!*.tsbuildinfo",
"!*.test.*"
],
"bin": {
"router-openapi-gen": "./dist/generate-openapi.js"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint --ext .ts,.tsx src",
"fix": "eslint --ext .ts,.tsx src --fix",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build"
},
"devDependencies": {
"@commitlint/cli": "8",
"@lcdev/commitlint": "1",
"@lcdev/eslint-config": "0.2",
"@lcdev/jest": "0.1",
"@lcdev/prettier": "0.1",
"@lcdev/router": "1",
"@lcdev/router-testing": "1",
"@lcdev/tsconfig": "0.2",
"@types/fs-extra": "8",
"@types/jest": "24",
"@types/js-yaml": "3",
"@types/lodash": "4",
"@types/tmp": "0.0.33",
"eslint": "6",
"husky": "3",
"jest": "24",
"prettier": "1",
"supertest": "3",
"tmp-promise": "1",
"typescript": "3"
},
"dependencies": {
"@lcdev/api-fields": "0.1",
"@lcdev/mapper": "0.1",
"@lcdev/ts": "0.2",
"@oclif/command": "1",
"@oclif/config": "1",
"@oclif/plugin-help": "2",
"@serafin/open-api": "3",
"@serafin/schema-builder": "0.12",
"@types/koa": "2",
"@types/koa-bodyparser": "4",
"@types/koa-router": "7",
"@types/yup": "0.26",
"ajv": "6",
"fs-extra": "8",
"globby": "11",
"js-yaml": "3",
"koa": "2",
"koa-bodyparser": "4",
"koa-router": "7",
"lodash": "4",
"path-to-regexp": "6",
"resolve-from": "5",
"stacktrace-parser": "0.1",
"yup": "0.26"
},
"prettier": "@lcdev/prettier",
"eslintConfig": {
"extends": "@lcdev"
},
"jest": {
"preset": "@lcdev/jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@lcdev/commitlint"
]
}
}