forked from SockTrader/SockTrader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.76 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "socktrader",
"version": "0.0.0-development",
"description": "Websocket based trading bot for cryptocurrencies",
"repository": "https://github.com/SockTrader/SockTrader",
"license": "GPL-3.0",
"keywords": [
"tradingbot",
"algorithmic-trading",
"cryptocurrencies",
"binance",
"trading-algorithms",
"trading-bot",
"trading",
"crypto",
"bitcoin"
],
"workspaces": [
"packages/**",
"apps/**"
],
"scripts": {
"nx": "nx",
"clean": "nx reset; npx rimraf dist node_modules **/node_modules",
"build:all": "nx run-many --target=build --all",
"build:affected": "nx affected:build",
"lint:all": "nx run-many --target=lint --all",
"lint:affected": "nx affected:lint",
"test:all": "cross-env TZ=UTC nx run-many --target=test --verbose --all --parallel",
"test:affected": "cross-env TZ=UTC nx affected:test --verbose",
"start:backtest": "nx serve demo",
"start:web": "nx serve web"
},
"dependencies": {
"@ngneat/elf": "^1.5.6",
"@ngneat/elf-entities": "^4.3.1",
"binance-api-node": "^0.11.36",
"commander": "^9.2.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"express": "^4.18.1",
"helmet": "^5.0.2",
"nanoid": "^3.3.4",
"pg": "^8.7.3",
"rxjs": "7.5.5",
"technicalindicators": "^3.1.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@nrwl/cli": "^14.1.4",
"@nrwl/eslint-plugin-nx": "^14.1.4",
"@nrwl/jest": "^14.1.4",
"@nrwl/js": "^14.1.4",
"@nrwl/linter": "^14.1.4",
"@nrwl/node": "^14.1.4",
"@nrwl/workspace": "^14.1.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/config": "0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"commitlint-config-eslint": "github:admwx7/commitlint-config-eslint",
"conventional-changelog-eslint": "^3.0.9",
"cross-env": "^7.0.3",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-rxjs": "^5.0.2",
"husky": "^7.0.4",
"jest": "28.1.0",
"nx": "14.1.4",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.2",
"typescript": "~4.6.4"
},
"engines": {
"node": ">=16.14.0"
},
"authors": [
"wouter cleymans",
"thijs raets"
]
}