-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
{
"name": "auto-service",
"version": "4.0.10",
"description": "auto generate swagger or yapi mock to typescript services and models",
"repository": "[email protected]:gogoyqj/auto-service.git",
"author": "yangqianjun <yang@yang>",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"autos": "./lib/cli.js",
"sm2tsservice": "./lib/cli.js"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "validate-commit-msg"
}
},
"files": [
"lib",
"static",
"plugins"
],
"scripts": {
"test": "jest --all",
"build": "tsc --project tsconfig.prod.json & tsc --project tsconfig.static.json",
"doc:build": "docz build",
"doc:dev": "docz dev"
},
"dependencies": {
"ajv": "^6.9.1",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"cosmiconfig": "^8.2.0",
"cosmiconfig-typescript-loader": "^4.3.0",
"detect-port": "^1.3.0",
"easy-json-schema": "^0.0.2-beta",
"es6-promisify": "^6.0.1",
"express": "^4.17.1",
"fs-extra": "^7.0.1",
"get-pkg-repo": "^4.1.0",
"json5": "^2.1.0",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.11",
"open": "^7.0.0",
"prompt": "^1.3.0",
"react-docgen-typescript-loader": "3.0.0-rc.0",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"tslib": "^2.3.1",
"ws": "^7.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.17.1",
"@types/commander": "^2.12.2",
"@types/detect-port": "^1.1.0",
"@types/es6-promisify": "^6.0.0",
"@types/express": "^4.17.2",
"@types/fs-extra": "^5.0.5",
"@types/http-proxy-middleware": "^0.19.2",
"@types/jest": "^24.0.17",
"@types/json-schema": "^7.0.1",
"@types/json5": "^0.0.30",
"@types/lodash": "^4.14.120",
"@types/node": "8.9.3",
"@types/prompt": "^1.1.4",
"@types/qs": "^6.5.3",
"@types/react": "^16.9.17",
"@types/recursive-readdir": "^2.2.0",
"@types/request": "^2.48.1",
"@typescript-eslint/eslint-plugin": "2",
"@typescript-eslint/parser": "2",
"babel-jest": "^24.7.1",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^13.0.3",
"prettier": "^1.19.1",
"ts-jest": "^24.0.2",
"typescript": "^4",
"validate-commit-msg": "^2.14.0"
},
"peerDependencies": {
"typescript": "*"
}
}