forked from debut-js/Strategies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.7 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
{
"name": "@debut/strategies",
"version": "1.0.0",
"private": "true",
"description": "",
"scripts": {
"compile": "tsc",
"start": "ts-node --",
"serve": "report-serve",
"prettier": "prettier --config .prettierrc --write src/**/*.ts",
"genetic": "genetic --",
"finder": "finder --",
"testing": "tester --",
"debug": "genetic --ticker=BTCUSDT --bot=FTBOT --days=90 --visualize --useTicks --log"
},
"author": "Dmitry Yurov",
"license": "ISC",
"dependencies": {
"@debut/community-core": "^2.2.20",
"@debut/indicators": "^0.4.6",
"@debut/plugin-debug": "^1.0.8",
"@debut/plugin-genetic-shutdown": "^1.0.12",
"@debut/plugin-grid": "^1.0.13",
"@debut/plugin-reinvest": "^1.0.10",
"@debut/plugin-report": "^1.1.1",
"@debut/plugin-session": "^1.0.12",
"@debut/plugin-stats": "^1.0.11",
"@debut/plugin-utils": "^1.0.13",
"@debut/plugin-virtual-takes": "^1.0.10"
},
"devDependencies": {
"@debut/types": "^1.0.13",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"git-format-staged": "^2.1.2",
"husky": "4.3.8",
"jest": "^27.0.4",
"pm2": "^5.1.0",
"prettier": "^2.3.1",
"tail-file": "^1.4.14",
"typescript": "^4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --stdin --stdin-filepath \"{}\"' '*.ts' '*.json'"
}
}
}