forked from jesse-ai/jesse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 KB
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
{
"name": "jesse",
"private": true,
"version": "0.0.1",
"description": "Trades on crypto exchanges. ",
"scripts": {
"test": "TRADING_TIMEFRAME=5m TIMEFRAMES=1m,5m STARTING_BALANCE=10000 COMPOUNDING_POSITION_SIZING=1 FEE=0 TRADING_SYMBOL=ETHUSD SYMBOLS=ETHUSD jest",
"backtest" : "TRADING_MODE=backtest ts-node index.ts",
"livetrade" : "TRADING_MODE=livetrade ts-node index.ts"
},
"engines": {
"node": ">=8.11.3",
"npm": "~5.6.0"
},
"jest": {
"setupFiles": [
"./core/test/setup.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"author": "Sully Fischer <[email protected]>",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@sentry/node": "^4.4.1",
"@types/easy-table": "0.0.32",
"@types/lodash": "^4.14.119",
"@types/moment-timezone": "^0.5.9",
"@types/node": "^10.12.12",
"@types/sleep": "0.0.7",
"@types/ws": "^6.0.1",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.4.1",
"cli-progress": "^2.1.1",
"dotenv": "^6.2.0",
"easy-table": "^1.1.1",
"jesse-indicators": "^0.0.5",
"jesse-notifications-telegram": "0.0.1",
"jsonfile": "^4.0.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.23",
"redux": "^4.0.1",
"sleep": "^5.2.3",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5"
}
}