-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
58 lines (58 loc) · 1.91 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
{
"name": "@debut/strategies",
"version": "1.0.0",
"private": "true",
"description": "",
"scripts": {
"compile": "tsc",
"start": "ts-node --",
"serve": "report-serve",
"create": "plop",
"prettier": "prettier --config .prettierrc --write src/**/*.ts",
"genetic": "genetic --",
"finder": "finder --",
"testing": "tester --",
"debug": "npm run compile && npm run testing -- --ticker=BTCUSDT --bot=SpikesG --days=40",
"getAccountId": "ts-node ./src/tools/getAccountId.ts"
},
"author": "Dmitry Yurov",
"license": "ISC",
"dependencies": {
"@debut/community-core": "5.0.0",
"@debut/indicators": "^1.3.19",
"@debut/plugin-debug": "^1.3.2",
"@debut/plugin-genetic-shutdown": "^1.3.3",
"@debut/plugin-grid": "^1.5.11",
"@debut/plugin-order-expire": "^1.3.1",
"@debut/plugin-reinvest": "^1.3.1",
"@debut/plugin-report": "^1.4.1",
"@debut/plugin-session": "^1.3.1",
"@debut/plugin-stats": "^1.4.2",
"@debut/plugin-utils": "^2.0.1",
"@debut/plugin-virtual-takes": "^2.0.6"
},
"devDependencies": {
"@debut/types": "^4.1.1",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"asciichart": "^1.5.25",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"git-format-staged": "^3.0.0",
"husky": "4.3.8",
"jest": "^28.1.3",
"plop": "^3.1.1",
"pm2": "^5.2.0",
"prettier": "^3.0.0",
"tail-file": "^1.4.15",
"typescript": "^4.7.4",
"ts-node": "^10.9.1"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --stdin --stdin-filepath \"{}\"' '*.ts' '*.json'"
}
}
}