forked from kungfu-origin/kungfu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.03 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
{
"name": "@kungfu-trader/kungfu-workspaces",
"homepage": "https://www.kungfu-trader.com",
"author": {
"name": "Kungfu Trader",
"email": "[email protected]"
},
"description": "Kungfu Trader Workspaces",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"framework/*",
"developer/*",
"extensions/*",
"examples/*",
"artifact"
]
},
"scripts": {
"postinstall": "patch-package",
"foreach": "wsrun --serial --exclude-missing --fast-exit",
"format": "wsrun --serial --exclude-missing format",
"prebuild": "node .prebuild.js",
"build": "yarn foreach build",
"clean": "yarn foreach clean",
"package": "yarn foreach package",
"rebuild": "yarn clean && yarn build",
"sync": "yarn install --audit --frozen-lockfile",
"app": "yarn workspace @kungfu-trader/artifact-kungfu app",
"cli": "yarn workspace @kungfu-trader/artifact-kungfu cli",
"dev": "yarn workspace @kungfu-trader/artifact-kungfu dev",
"build:app": "yarn workspace @kungfu-trader/kungfu-app build",
"build:cli": "yarn workspace @kungfu-trader/kungfu-cli build",
"build:core": "yarn workspace @kungfu-trader/kungfu-core build",
"rebuild:core": "yarn workspace @kungfu-trader/kungfu-core rebuild",
"package:app": "yarn workspace @kungfu-trader/artifact-kungfu package",
"poetry:clear": "yarn workspace @kungfu-trader/kungfu-core poetry:clear",
"poetry:lock": "yarn workspace @kungfu-trader/kungfu-core poetry:lock"
},
"dependencies": {
"core-js": "^3.20.0",
"dayjs": "^1.10.7",
"lerna": "^5.0.0",
"wsrun": "^5.2.0"
},
"resolutions": {
"vue": "~3.2.0",
"pinia": "~2.0.0",
"ansi-regex": "^5.0.1",
"async": "^3.2.2",
"axios": "^0.21.1",
"core-js": "^3.20.0",
"highlight.js": "^11.0.0",
"lodash.merge": "^4.6.2",
"node-fetch": "^2.6.7",
"node-forge": "^1.3.0",
"node-gyp": "^9.0.0",
"rxjs": "^7.5.0",
"dayjs": "^1.10.7",
"minimist": "^1.2.6",
"uuid": "^7.0.0",
"fs-extra": "^10.1.0"
}
}