Spaces:
Running
Running
ykxVK8yL5L
commited on
Commit
•
61f8246
1
Parent(s):
4aaa856
Create package.json
Browse files- package.json +191 -0
package.json
ADDED
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "@whyour/qinglong",
|
3 |
+
"version": "2.17.9-rc.5",
|
4 |
+
"description": "Timed task management platform supporting Python3, JavaScript, Shell, Typescript",
|
5 |
+
"repository": {
|
6 |
+
"type": "git",
|
7 |
+
"url": "https://github.com/whyour/qinglong.git"
|
8 |
+
},
|
9 |
+
"author": "whyour",
|
10 |
+
"license": "Apache License 2.0",
|
11 |
+
"bugs": {
|
12 |
+
"url": "https://github.com/whyour/qinglong/issues"
|
13 |
+
},
|
14 |
+
"scripts": {
|
15 |
+
"start": "concurrently -n w: npm:start:*",
|
16 |
+
"start:front": "max dev",
|
17 |
+
"start:back": "nodemon",
|
18 |
+
"start:update": "ts-node -P tsconfig.back.json ./back/update.ts",
|
19 |
+
"start:public": "ts-node -P tsconfig.back.json ./back/public.ts",
|
20 |
+
"start:rpc": "ts-node -P tsconfig.back.json ./back/schedule/index.ts",
|
21 |
+
"build:front": "max build",
|
22 |
+
"build:back": "tsc -p tsconfig.back.json",
|
23 |
+
"panel": "npm run build:back && node static/build/app.js",
|
24 |
+
"schedule": "npm run build:back && node static/build/schedule/index.js",
|
25 |
+
"public": "npm run build:back && node static/build/public.js",
|
26 |
+
"update": "npm run build:back && node static/build/update.js",
|
27 |
+
"gen:proto": "protoc --experimental_allow_proto3_optional --plugin=./node_modules/.bin/protoc-gen-ts_proto ./back/protos/*.proto --ts_proto_out=./ --ts_proto_opt=outputServices=grpc-js,env=node,esModuleInterop=true",
|
28 |
+
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
|
29 |
+
"postinstall": "max setup 2>/dev/null || true",
|
30 |
+
"test": "umi-test",
|
31 |
+
"test:coverage": "umi-test --coverage"
|
32 |
+
},
|
33 |
+
"gitHooks": {
|
34 |
+
"pre-commit": "lint-staged"
|
35 |
+
},
|
36 |
+
"lint-staged": {
|
37 |
+
"*.{js,jsx,less,md,json}": [
|
38 |
+
"prettier --write"
|
39 |
+
],
|
40 |
+
"*.ts?(x)": [
|
41 |
+
"prettier --parser=typescript --write"
|
42 |
+
]
|
43 |
+
},
|
44 |
+
"bin": {
|
45 |
+
"ql": "shell/update.sh",
|
46 |
+
"task": "shell/task.sh",
|
47 |
+
"qinglong": "shell/start.sh"
|
48 |
+
},
|
49 |
+
"pnpm": {
|
50 |
+
"peerDependencyRules": {
|
51 |
+
"ignoreMissing": [
|
52 |
+
"react",
|
53 |
+
"react-dom",
|
54 |
+
"antd",
|
55 |
+
"dva",
|
56 |
+
"postcss",
|
57 |
+
"webpack",
|
58 |
+
"eslint",
|
59 |
+
"stylelint",
|
60 |
+
"redux",
|
61 |
+
"@babel/core",
|
62 |
+
"monaco-editor",
|
63 |
+
"rc-field-form",
|
64 |
+
"@types/lodash.merge",
|
65 |
+
"rollup",
|
66 |
+
"styled-components"
|
67 |
+
],
|
68 |
+
"allowedVersions": {
|
69 |
+
"react": "18",
|
70 |
+
"react-dom": "18",
|
71 |
+
"dva-core": "2"
|
72 |
+
}
|
73 |
+
}
|
74 |
+
},
|
75 |
+
"dependencies": {
|
76 |
+
"@grpc/grpc-js": "^1.8.13",
|
77 |
+
"@otplib/preset-default": "^12.0.1",
|
78 |
+
"@sentry/node": "^7.12.1",
|
79 |
+
"body-parser": "^1.19.2",
|
80 |
+
"celebrate": "^15.0.1",
|
81 |
+
"chokidar": "^3.5.3",
|
82 |
+
"cors": "^2.8.5",
|
83 |
+
"cron-parser": "^4.2.1",
|
84 |
+
"cross-spawn": "^7.0.3",
|
85 |
+
"dayjs": "^1.11.2",
|
86 |
+
"dotenv": "^16.0.0",
|
87 |
+
"express": "^4.17.3",
|
88 |
+
"express-jwt": "^6.1.1",
|
89 |
+
"express-rate-limit": "^7.0.0",
|
90 |
+
"express-urlrewrite": "^1.4.0",
|
91 |
+
"form-data": "^4.0.0",
|
92 |
+
"got": "^11.8.2",
|
93 |
+
"hpagent": "^1.2.0",
|
94 |
+
"http-proxy-middleware": "^2.0.6",
|
95 |
+
"iconv-lite": "^0.6.3",
|
96 |
+
"js-yaml": "^4.1.0",
|
97 |
+
"jsonwebtoken": "^8.5.1",
|
98 |
+
"lodash": "^4.17.21",
|
99 |
+
"multer": "1.4.5-lts.1",
|
100 |
+
"nedb": "^1.8.0",
|
101 |
+
"node-schedule": "^2.1.0",
|
102 |
+
"nodemailer": "^6.7.2",
|
103 |
+
"p-queue-cjs": "7.3.4",
|
104 |
+
"protobufjs": "^7.3.0",
|
105 |
+
"pstree.remy": "^1.1.8",
|
106 |
+
"reflect-metadata": "^0.1.13",
|
107 |
+
"sequelize": "^6.25.5",
|
108 |
+
"serve-handler": "^6.1.3",
|
109 |
+
"sockjs": "^0.3.24",
|
110 |
+
"sqlite3": "git+https://github.com/whyour/node-sqlite3.git#v1.0.3",
|
111 |
+
"toad-scheduler": "^1.6.0",
|
112 |
+
"typedi": "^0.10.0",
|
113 |
+
"uuid": "^8.3.2",
|
114 |
+
"winston": "^3.6.0",
|
115 |
+
"winston-daily-rotate-file": "^4.7.1",
|
116 |
+
"yargs": "^17.3.1",
|
117 |
+
"tough-cookie": "^4.0.0",
|
118 |
+
"request-ip": "3.3.0",
|
119 |
+
"ip2region": "2.3.0"
|
120 |
+
},
|
121 |
+
"devDependencies": {
|
122 |
+
"@ant-design/icons": "^4.7.0",
|
123 |
+
"@ant-design/pro-layout": "6.38.22",
|
124 |
+
"@monaco-editor/react": "4.2.1",
|
125 |
+
"@react-hook/resize-observer": "^1.2.6",
|
126 |
+
"@sentry/react": "^7.12.1",
|
127 |
+
"@types/body-parser": "^1.19.2",
|
128 |
+
"@types/cors": "^2.8.12",
|
129 |
+
"@types/cross-spawn": "^6.0.2",
|
130 |
+
"@types/express": "^4.17.13",
|
131 |
+
"@types/express-jwt": "^6.0.4",
|
132 |
+
"@types/file-saver": "2.0.2",
|
133 |
+
"@types/js-yaml": "^4.0.5",
|
134 |
+
"@types/jsonwebtoken": "^8.5.8",
|
135 |
+
"@types/lodash": "^4.14.185",
|
136 |
+
"@types/multer": "^1.4.7",
|
137 |
+
"@types/nedb": "^1.8.12",
|
138 |
+
"@types/node": "^17.0.21",
|
139 |
+
"@types/node-schedule": "^1.3.2",
|
140 |
+
"@types/nodemailer": "^6.4.4",
|
141 |
+
"@types/qrcode.react": "^1.0.2",
|
142 |
+
"@types/react": "^18.0.20",
|
143 |
+
"@types/react-copy-to-clipboard": "^5.0.4",
|
144 |
+
"@types/react-dom": "^18.0.6",
|
145 |
+
"@types/serve-handler": "^6.1.1",
|
146 |
+
"@types/sockjs": "^0.3.33",
|
147 |
+
"@types/sockjs-client": "^1.5.1",
|
148 |
+
"@types/uuid": "^8.3.4",
|
149 |
+
"@types/request-ip": "0.0.41",
|
150 |
+
"@uiw/codemirror-extensions-langs": "^4.21.9",
|
151 |
+
"@uiw/react-codemirror": "^4.21.9",
|
152 |
+
"@umijs/max": "^4.0.72",
|
153 |
+
"@umijs/ssr-darkreader": "^4.9.45",
|
154 |
+
"ahooks": "^3.7.8",
|
155 |
+
"ansi-to-react": "^6.1.6",
|
156 |
+
"antd": "^4.24.8",
|
157 |
+
"antd-img-crop": "^4.2.3",
|
158 |
+
"axios": "^1.4.0",
|
159 |
+
"compression-webpack-plugin": "9.2.0",
|
160 |
+
"concurrently": "^7.0.0",
|
161 |
+
"react-hotkeys-hook": "^4.4.1",
|
162 |
+
"file-saver": "2.0.2",
|
163 |
+
"lint-staged": "^13.0.3",
|
164 |
+
"monaco-editor": "0.33.0",
|
165 |
+
"nodemon": "^3.0.1",
|
166 |
+
"prettier": "^2.5.1",
|
167 |
+
"pretty-bytes": "6.1.1",
|
168 |
+
"qiniu": "^7.4.0",
|
169 |
+
"qrcode.react": "^1.0.1",
|
170 |
+
"query-string": "^7.1.1",
|
171 |
+
"rc-tween-one": "^3.0.6",
|
172 |
+
"rc-virtual-list": "3.5.3",
|
173 |
+
"react": "18.2.0",
|
174 |
+
"react-copy-to-clipboard": "^5.1.0",
|
175 |
+
"react-diff-viewer": "^3.1.1",
|
176 |
+
"react-dnd": "^14.0.2",
|
177 |
+
"react-dnd-html5-backend": "^14.0.0",
|
178 |
+
"react-dom": "18.2.0",
|
179 |
+
"react-intl-universal": "^2.6.21",
|
180 |
+
"react-split-pane": "^0.1.92",
|
181 |
+
"sockjs-client": "^1.6.0",
|
182 |
+
"ts-node": "^10.9.2",
|
183 |
+
"ts-proto": "^1.146.0",
|
184 |
+
"tslib": "^2.4.0",
|
185 |
+
"typescript": "5.2.2",
|
186 |
+
"vh-check": "^2.0.5",
|
187 |
+
"virtualizedtableforantd4": "1.3.0",
|
188 |
+
"webpack": "^5.70.0",
|
189 |
+
"yorkie": "^2.0.0"
|
190 |
+
}
|
191 |
+
}
|