forked from askmike/gekko
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
74 lines (74 loc) · 1.83 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
{
"name": "gekko",
"version": "2024.0.68.298",
"description": "A crypto trading bot for auto trading at various exchanges",
"keywords": [
"trading",
"bot",
"bitcoin",
"TA",
"finance"
],
"scripts": {
"test": "./node_modules/.bin/mocha test/*.js --recursive test -u tdd --reporter spec",
"start": "node ./gekko --config config.js --ui"
},
"dependencies": {
"@xmpp/client": "^0.9.1",
"async": "2.1.2",
"axios": "^0.18.0",
"bfx-hf-indicators": "git+https://github.com/mark-sch/bfx-hf-indicators.git",
"bitfinex-api-node": "^1.2.1",
"buffer-writer": "^2.0.0",
"co-fs": "^1.2.0",
"colors": "^1.3.2",
"commander": "^2.13.0",
"emailjs": "^1.0.5",
"fs": "0.0.1-security",
"humanize-duration": "^3.18.0",
"koa": "^1.2.0",
"koa-bodyparser": "^2.2.0",
"koa-cors": "0.0.16",
"koa-logger": "^1.3.0",
"koa-router": "^5.4.0",
"koa-static": "^2.0.0",
"lodash": "2.x",
"mathjs": "^5.7.0",
"moment": "^2.22.2",
"node-gyp": "^10.2.0",
"node-telegram-bot-api": "^0.30.0",
"opn": "^4.0.2",
"pg": "^8.12.0",
"pg-connection-string": "^2.6.4",
"pg-promise": "^11.9.1",
"promisify-node": "^0.5.0",
"prompt-lite": "0.1.1",
"random-ext": "^2.6.1",
"relieve": "^2.1.3",
"retry": "^0.10.1",
"semver": "5.4.1",
"sqlite3": "^4.0.6",
"stats-lite": "^2.0.4",
"talib": "^1.1.6",
"tiny-promisify": "^0.1.1",
"toml": "^2.3.0",
"tulind": "^0.8.20",
"ws": "^6.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"proxyquire": "^1.7.10",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sinon": "^4.2.0"
},
"engines": {
"node": ">=20.16.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mark-sch/gekko.git"
}
}