forked from debut-js/Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "@debut/community-core",
"version": "4.0.17",
"description": "Javascript trading framework, with backtesting and strategy optimisations",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc",
"build": "rollup -c && chmod -R +x ./lib/cli/**.js",
"prebuild": "rm -rf ./lib",
"start": "ts-node --",
"prettier": "prettier --config './.prettierrc' --write 'src/**/*.ts'",
"version": "npm run build",
"test": "jest",
"bench": "npm start ./tools/bench.ts",
"postversion": "git push && git push --tags"
},
"author": "Dmitry Yurov",
"license": "GPL-3.0",
"bin": {
"tester": "lib/cli/tester.js",
"finder": "lib/cli/finder.js",
"genetic": "lib/cli/genetic.js"
},
"dependencies": {
"@debut/plugin-utils": "^2.0.0",
"@master-chief/alpaca": "^6.3.20",
"@scarf/scarf": "^1.1.1",
"@stoqey/ib": "^1.3.16",
"@types/ws": "^8.5.3",
"async-genetic": "^1.6.8",
"binance-api-node": "0.11.29",
"cli-progress": "^3.11.2",
"nice-grpc": "^2.0.0",
"node-fetch": "^3.2.10",
"tinkoff-invest-api": "^5.0.0"
},
"devDependencies": {
"@debut/types": "^4.1.0",
"@types/benchmark": "^2.1.1",
"@types/cli-progress": "^3.11.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"benchmark": "^2.1.4",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"git-format-staged": "^3.0.0",
"husky": "4.3.8",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"protobufjs": "^6.11.3",
"ts-error": "^1.0.6"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --stdin --stdin-filepath \"{}\"' '*.ts' '*.json'"
}
}
}