-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.71 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
{
"name": "crypto-trading-bot",
"version": "0.0.0",
"author": "Daniel Espendiller",
"bugs": "https://github.com/Haehnchen/crypto-trading-bot/issues",
"contributors": [
{
"email": "[email protected]",
"name": "Daniel Espendiller",
"url": "http://espend.de/"
},
{
"email": "[email protected]",
"name": "Phuc Nguyen Minh",
"url": "https://nguyenminhphuc.com/"
}
],
"dependencies": {
"async": "^3.2.4",
"basic-auth": "^2.0.1",
"better-queue": "^3.8.12",
"better-sqlite3": "^7.6.2",
"bfx-api-node-models": "^1.6.3",
"binance-api-node": "^0.12.0",
"bitfinex-api-node": "^5.0.4",
"bitmex-realtime-api": "^0.5.1",
"bybit-api": "^3.2.0",
"ccxt": "^2.1.71",
"coinbase-pro": "^0.9.0",
"colors": "^1.4.0",
"commander": "^9.4.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"http": "^0.0.1-security",
"lodash": "^4.17.21",
"mocha": "^10.1.0",
"moment": "^2.29.4",
"nodemailer": "^6.8.0",
"numbro": "^2.3.6",
"p-queue": "^7.3.0",
"patch-package": "^6.5.0",
"percent": "^2.2.0",
"queue": "^6.0.2",
"queue-promise": "^2.2.1",
"request": "^2.88.2",
"sendmail": "^1.6.1",
"talib": "^1.1.4",
"technicalindicators": "^3.1.0",
"telegraf": "^4.10.0",
"ts-node": "^10.9.1",
"tulind": "^0.8.20",
"twig": "^1.15.4",
"typescript": "^4.8.4",
"winston": "^3.8.2",
"winston-telegram": "^2.6.0",
"ws": "^8.11.0",
"zero-fill": "^2.2.4"
},
"engines": {
"node": "^16.0 || ^18.0"
},
"homepage": "https://github.com/coinbase/coinbase-pro-node",
"keywords": [
"cryptocurrency",
"crypto",
"exchange",
"trading",
"trading-bot",
"trading-strategies",
"websocket",
"nodejs",
"bitfinex",
"bitmex",
"binance",
"tradingview",
"bot",
"javascript"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Haehnchen/crypto-trading-bot.git"
},
"scripts": {
"start": "node index.js trade",
"postinstall": "patch-package",
"test": "mocha 'test/**/*.test.js'",
"setup": "pm2 deploy ecosystem.config.js production setup",
"deploy": "pm2 deploy ecosystem.config.js production"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1"
}
}