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
72 lines (72 loc) · 2.46 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.46 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
65
66
67
68
69
70
71
72
{
"name": "jesse",
"private": true,
"version": "0.4.6",
"description": "Trades on crypto exchanges. ",
"scripts": {
"test": "IS_TEST_DRIVING=0 IS_UNIT_TESTING=1 STARTING_BALANCE=10000 COMPOUNDING_POSITION_SIZING=1 FEE=0 TRADING_SYMBOL=ETHUSD SYMBOLS=ETHUSD jest",
"test-watch": "IS_TEST_DRIVING=0 IS_UNIT_TESTING=1 STARTING_BALANCE=10000 COMPOUNDING_POSITION_SIZING=1 FEE=0 TRADING_SYMBOL=ETHUSD SYMBOLS=ETHUSD jest --watch",
"backtest": "IS_TEST_DRIVING=0 IS_UNIT_TESTING=0 TRADING_MODE=backtest ts-node index.ts",
"livetrade": "IS_TEST_DRIVING=0 IS_UNIT_TESTING=0 TRADING_MODE=livetrade ts-node index.ts",
"test-drive": "IS_TEST_DRIVING=1 IS_UNIT_TESTING=0 TRADING_MODE=livetrade ts-node index.ts",
"import": "IS_TEST_DRIVING=0 IS_UNIT_TESTING=0 TRADING_MODE=import ts-node index.ts"
},
"engines": {
"node": ">=10.10.0",
"npm": "~6.0.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": "^5.1.0",
"@types/cli-progress": "^1.8.1",
"@types/easy-table": "0.0.32",
"@types/lodash": "^4.14.122",
"@types/moment-timezone": "^0.5.11",
"@types/node": "^10.12.30",
"@types/ws": "^6.0.1",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.4.2",
"cli-progress": "^2.1.1",
"dotenv": "^6.2.0",
"easy-table": "^1.1.1",
"inquirer": "^6.2.2",
"inquirer-datepicker-prompt": "^0.4.2",
"jesse-indicators": "^0.4.0",
"jesse-notifications-telegram": "0.0.1",
"jsonfile": "^4.0.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"moment-timezone": "^0.5.23",
"pg": "^7.10.0",
"redux": "^4.0.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^7.0.1",
"typeorm": "^0.2.14",
"typescript": "^3.4.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"jest": "^24.7.1",
"ts-jest": "^24.0.1"
}
}