forked from debut-js/Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "@debut/community-core",
"version": "3.0.7",
"publishConfig": {
"access": "public"
},
"description": "Javascript Multibroker Trading System",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc",
"build": "rollup -c && chmod -R +x ./lib/cli/**.js",
"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": "Apache-2.0",
"bin": {
"tester": "lib/cli/tester.js",
"finder": "lib/cli/finder.js",
"genetic": "lib/cli/genetic.js"
},
"dependencies": {
"@debut/plugin-utils": "^1.2.0",
"@master-chief/alpaca": "^6.3.11",
"@tinkoff/invest-openapi-js-sdk": "^1.5.0",
"@types/ws": "^8.2.2",
"async-genetic": "^1.4.4",
"binance-api-node": "0.11.29",
"cli-progress": "^3.10.0",
"node-fetch": "^3.1.0"
},
"devDependencies": {
"@debut/types": "^3.0.4",
"@types/benchmark": "^2.1.1",
"@types/cli-progress": "^3.9.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"benchmark": "^2.1.4",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-format-staged": "^2.1.3",
"husky": "4.3.8",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --stdin --stdin-filepath \"{}\"' '*.ts' '*.json'"
}
}
}