-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
executable file
·191 lines (191 loc) · 5.58 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"name": "yapi-x",
"version": "2.7.0",
"description": "YApi 改。",
"repository": {
"type": "git",
"url": "[email protected]:fjc0k/yapi-x.git"
},
"license": "MIT",
"author": {
"name": "Jay Fong",
"email": "[email protected]",
"url": "https://github.com/fjc0k"
},
"main": "server/app.js",
"scripts": {
"build-client": "cross-env NODE_ENV=production ykit pack -m",
"dev": "npm run dev-prepare && concurrently -n sever,client \"npx kill-port 3000 && npm run dev-server\" \"npm run dev-client\"",
"dev-prepare": "echo '{\"port\":3000,\"adminAccount\":\"[email protected]\",\"adminPassword\":\"admin\",\"db\":{\"servername\":\"localhost\",\"port\":37017,\"DATABASE\":\"yapi\"},\"mail\":{\"enable\":false},\"ldapLogin\":{\"enable\":false},\"closeRegister\":true,\"plugins\":[]}' > ../config.json && docker run --rm -d -p 37017:27017 -v $PWD/.data:/data/db mongo:4.4.5 || true && node --unhandled-rejections strict ./server/install.js || true",
"dev-client": "npm run dev-copy-icon && ykit s -p 4000",
"dev-copy-icon": "cpr static/iconfont iconfont -d",
"dev-server": "nodemon server/app.js dev -L",
"docs": "ydoc build",
"install-server": "node server/install.js",
"release": "standard-version -a && git push --follow-tags origin master",
"start": "node server/app.js",
"test": "ava"
},
"babel": {
"plugins": [
"transform-runtime",
[
"webpack-alias",
{
"config": "webpack.alias.js"
}
]
],
"presets": [
[
"es2015",
{
"loose": true,
"modules": "commonjs"
}
],
"es2017",
"stage-0",
"react"
]
},
"ava": {
"babel": "inherit",
"files": [
"test/**/*.js"
],
"require": [
"babel-register"
]
},
"dependencies": {
"ajv": "^5.5.1",
"ajv-i18n": "^2.2.0",
"axios": "0.18.1",
"compare-versions": "^3.4.0",
"copy-to-clipboard": "3.0.8",
"cpu-load": "^1.0.0",
"crypto-js": "^3.1.9-1",
"deep-extend": "^0.5.0",
"deref": "^0.7.3",
"easy-json-schema": "0.0.2-beta",
"fs-extra": "^3.0.1",
"generate-schema": "^2.6.0",
"immer": "^1.1.1",
"js-base64": "^2.3.2",
"json-schema-faker": "^0.5.0-rc16",
"json-schema-ref-parser": "4.0.0",
"json5": "0.5.1",
"jsondiffpatch": "0.3.11",
"jsonwebtoken": "7.4.1",
"jsrsasign": "^8.0.12",
"koa": "2.0.0",
"koa-body": "^2.5.0",
"koa-bodyparser": "3.2.0",
"koa-multer": "1.0.2",
"koa-mysql-session": "0.0.2",
"koa-router": "^7.0.1",
"koa-send": "3.2.0",
"koa-session-minimal": "3.0.3",
"koa-static": "3.0.0",
"koa-websocket": "4.0.0",
"ldapjs": "^1.0.1",
"markdown-it": "8.4.0",
"markdown-it-anchor": "4.0.0",
"markdown-it-table-of-contents": "0.3.2",
"md5": "2.2.1",
"mockjs": "1.0.1-beta3",
"moment": "^2.19.3",
"mongodb": "3.1.8",
"mongoose": "5.7.5",
"mongoose-auto-increment": "5.0.1",
"moox": "^1.0.2",
"node-schedule": "^1.3.2",
"nodemailer": "4.0.1",
"os": "0.1.1",
"qs": "^6.7.0",
"request": "2.81.0",
"sha.js": "2.4.9",
"sha1": "1.1.1",
"swagger-client": "^3.5.1",
"tslib": "1.8.0",
"underscore": "1.8.3",
"url": "0.11.0",
"yapi-plugin-qsso": "^1.1.0"
},
"devDependencies": {
"@types/node": "^13.7.6",
"antd": "3.2.2",
"anujs": "^1.2.6",
"assets-webpack-plugin": "^3.5.1",
"ava": "^0.22.0",
"babel": "^6.5.2",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-import": "^1.3.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-app": "^3.1.2",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.2",
"brace": "^0.10.0",
"buffer-shims": "^1.0.0",
"compression-webpack-plugin": "^1.0.0",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^4.0.1",
"core-decorators": "^0.17.0",
"cpr": "^3.0.1",
"cross-env": "^7.0.0",
"css-loader": "^0.28.4",
"deepmerge": "^4.2.2",
"extract-text-webpack-plugin": "2.0.0",
"happypack": "^4.0.1",
"json-schema-editor-visual": "^1.0.23",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"markdown-it-include": "^1.0.0",
"node-sass": "^4.9.0",
"nodemon": "^1.11.0",
"prettier": "^2.2.1",
"prop-types": "^15.5.10",
"rc-queue-anim": "^1.2.0",
"rc-scroll-anim": "^1.0.7",
"rc-tween-one": "^1.5.5",
"react": "^16.2.0",
"react-dnd": "^2.5.1",
"react-dnd-html5-backend": "^2.5.1",
"react-dom": "^16.2.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"reactabular-dnd": "^8.9.0",
"reactabular-table": "^8.9.0",
"recharts": "^1.0.0-beta.0",
"redux": "^3.7.1",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"redux-promise": "^0.5.3",
"sass-loader": "^7.0.3",
"standard-version": "^7.1.0",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.18.2",
"table-resolver": "^3.2.0",
"typescript": "^3.8.2",
"url-loader": "^0.5.9",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-node-externals": "^1.6.0",
"ykit": "0.6.2",
"ykit-config-antd": "0.1.3",
"ykit-config-es6": "^1.1.0"
},
"engines": {
"node": ">= 7.6.0",
"npm": ">= 4.1.2"
}
}