-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.97 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.97 KB
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
{
"name": "iporte",
"version": "0.0.1",
"description": "A Fast 🚀 and Lightweight🎽 API Gateway",
"main": "main.js",
"scripts": {
"gate": "node build/gate/index.js",
"rc": "node build/register-center/index.js",
"dev:doc": "cd docs/source && gitbook serve --port 2333",
"dev:gate": "nodemon scripts/dev-gate.js",
"dev:rc": "nodemon scripts/dev-register-center.js",
"dev:rcui": "cd packages/register-center-webui && node scripts/start.js ",
"build:doc": "gitbook build docs/source docs/docs",
"build:gate": "rm -rf build/gate && babel packages/gate -d build/gate --copy-files",
"build:rc": "rm -rf build/register-center && babel packages/register-center -d build/register-center --copy-files",
"build:rcui": "cd packages/register-center-webui && node scripts/build.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/YuYanDev/iPorte.git"
},
"keywords": [
"api",
"gate"
],
"author": "YuYan",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/YuYanDev/iPorte/issues"
},
"homepage": "https://github.com/YuYanDev/iPorte#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.7.4",
"@babel/plugin-transform-block-scoping": "^7.7.4",
"@babel/plugin-transform-classes": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0"
},
"dependencies": {
"axios": "^0.19.0",
"chalk": "^3.0.0",
"ejs": "^3.0.1",
"http-proxy": "^1.18.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-mount": "^4.0.0",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"koa-socket-2": "^1.2.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"path": "^0.12.7",
"redis": "^2.8.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"toml": "^3.0.0"
}
}