-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
173 lines (173 loc) · 5.51 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
{
"name": "dripjs",
"version": "0.1.1",
"description": "用于构建高效且可扩展的交易程序的渐进式Node.js开源量化框架",
"engines": {
"node": ">= 10.15.0",
"npm": ">= 6.4.1",
"yarn": ">= 1.12.3"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"bdd": "yarn jest --watch --onlyChanged",
"build:prod": "yarn build:preprocess && yarn tsc:app && yarn cp:ws",
"build:preprocess": "rm -rf dist",
"build:typedoc": "rm -rf type-docs && typedoc --tsconfig ./tsconfig.typedoc.json",
"build:modules": "yarn build:prod && yarn :build:modules:preprocess && yarn :build:modules:process",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"cp:docs": "yarn build:typedoc && cp -rf type-docs/* ../dripjs-docs",
"cp:ws": "cp -rf modules/common/websocket/ws dist/modules/common/websocket/",
"coverage": "jest -c jest.config.js --collectCoverage",
"ci:build-check": "yarn run tsc:app --noEmit",
"ci:coverage": "jest -c jest.config.js --coverage --coverageReporters=text-lcov | coveralls",
"db:sync": "yarn build:prod && yarn ts-node $(npm bin)/typeorm schema:sync",
"docs": "yarn build:typedoc && http-server type-docs",
"dev:bitmex": "ts-node --files -r tsconfig-paths/register ./projects/intelligence/main.ts",
"format": "yarn format:ts && yarn format:md",
"format:md": "prettier --config .prettierrc --write '{docs/**/*.md,modules/**/*.md,projects/**/*.md,./README*.md}' --parser markdown",
"format:ts": "yarn format:ts:import && prettier --config .prettierrc --write '{modules,projects}/**/*.ts'",
"format:ts:import": "import-sort --write '{modules,projects}/**/*.ts'",
"jest": "jest -c jest.config.js",
"lint": "yarn lint:md && yarn lint:ts",
"lint:md": "markdownlint {docs/**/*.md,modules/**/*.md,projects/**/*.md,./README*.md}",
"lint:ts": "tslint -p tsconfig.json -c tslint.json",
"prepublishOnly": "yarn build:prod",
"postpublish": "yarn build:preprocess",
"release:major": "yarn standard-version -s --release-as major",
"release:minor": "yarn standard-version -s --release-as minor",
"release:patch": "yarn standard-version -s --release-as patch",
"start:app-inter-service": "yarn ts-node projects/intelligence/service/main.ts",
"test": "yarn jest --runInBand",
"tsc:app": "tsc -p tsconfig.app.json",
"tsc:dev": "tsc -p tsconfig.dev.json",
"tsc:spec": "tsc -p tsconfig.spec.json",
":build:modules:preprocess": "mkdir dist/node_modules && mkdir dist/node_modules/@dripjs && cp -rf dist/modules/* dist/node_modules/@dripjs",
":build:modules:process": "sh shell/reorg-modules.sh && cp -rf dist/node_modules/@dripjs/* node_modules/@dripjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drip-trader/dripjs.git"
},
"keywords": [
"trading platform",
"algorithmic",
"algotrading",
"altcoin",
"altcoins",
"api",
"arbitrage",
"backtest",
"backtesting",
"bitcoin",
"dripjs",
"drip",
"crypto",
"digital currency",
"exchange",
"exchanges",
"framework",
"invest",
"investing",
"investor",
"library",
"light",
"litecoin",
"ltc",
"market",
"market data",
"markets",
"merchandise",
"merchant",
"minimal",
"ohlcv",
"order",
"orderbook",
"order book",
"price",
"price data",
"pricefeed",
"private",
"public",
"ripple",
"strategy",
"ticker",
"tickers",
"toolkit",
"trade",
"trader",
"trading",
"usd",
"volume",
"xbt",
"xrp",
"zec",
"BitMEX"
],
"author": "zlq4863947@gmail.com",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/drip-trader/dripjs/issues"
},
"homepage": "https://github.com/drip-trader/dripjs#readme",
"devDependencies": {
"@nestjs/testing": "^6.2.4",
"@types/express": "4.16.1",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.132",
"@types/qs": "^6.5.3",
"@types/socket.io": "2.1.2",
"@types/socket.io-client": "1.4.32",
"@types/uuid": "^3.4.4",
"@types/ws": "6.0.1",
"conventional-commits-detector": "1.0.2",
"coveralls": "3.0.3",
"express": "^4.17.0",
"import-sort": "6.0.0",
"import-sort-cli": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style-module-alias": "1.0.4",
"jest": "^24.8.0",
"json-value-replacer": "0.1.1",
"markdownlint": "^0.14.2",
"markdownlint-cli": "^0.16.0",
"prettier": "^1.17.1",
"socket.io": "2.2.0",
"standard-version": "^6.0.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"ts-node": "^8.1.0",
"tsconfig-paths": "3.8.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "5.4.0",
"typedoc": "0.14.2",
"typescript": "^3.4.5",
"vrsource-tslint-rules": "6.0.0",
"yarn": "^1.16.0"
},
"dependencies": {
"@dripjs/common": "^0.1.20",
"@dripjs/exchanges": "^0.1.20",
"@dripjs/types": "^0.1.20",
"@nestjs/common": "^6.2.4",
"@nestjs/core": "^6.2.4",
"@nestjs/platform-express": "^6.2.4",
"@nestjs/platform-socket.io": "^6.2.4",
"@nestjs/websockets": "^6.2.4",
"axios": "^0.18.0",
"bignumber.js": "^8.1.1",
"config": "^3.0.1",
"dotenv": "^8.0.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mysql": "^2.16.0",
"qs": "^6.6.0",
"reflect-metadata": "0.1.13",
"rxjs": "^6.4.0",
"socket.io-client": "^2.2.0",
"typeorm": "^0.2.17",
"url-join": "^4.0.0",
"uuid": "^3.3.2",
"ws": "^7.0.0"
}
}