-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "ccxt-private-ws",
"version": "0.2.2",
"description": "CCXT compatible private websocket client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/invao/ccxt-private-ws",
"author": "INVAO <tech@invao.org>",
"license": "MIT",
"devDependencies": {
"@types/async-lock": "^1.1.1",
"@types/crypto-js": "^3.1.43",
"@types/node-fetch": "^2.5.2",
"@types/qs": "^6.5.3",
"@types/ramda": "^0.27.3",
"@types/ws": "^6.0.3",
"nodemon": "^2.0.4",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"scripts": {
"prepublish": "tsc",
"start": "tsc && node dist/index.js",
"dev": "ts-node src/index.ts && nodemon --watch 'src/**/*' --ext 'ts' --exec 'ts-node --transpile-only src/index.ts'"
},
"dependencies": {
"async-lock": "^1.2.2",
"ccxt": "^1.35.69",
"crypto-js": "^3.1.9-1",
"decimal.js": "^10.2.0",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"qs": "^6.9.0",
"query-string": "^6.8.3",
"ramda": "^0.27.0",
"reconnecting-websocket": "^4.4.0",
"unique-random": "^2.1.0",
"ws": "^7.2.3"
}
}