-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.92 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.92 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
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
97
98
99
100
101
102
103
{
"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",
"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": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/platform-express": "^10.1.3",
"@ngneat/elf": "^1.5.6",
"@ngneat/elf-entities": "^4.3.1",
"binance-api-node": "^0.12.6",
"commander": "^9.2.0",
"config": "^3.3.9",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"helmet": "^5.0.2",
"nanoid": "^3.3.4",
"pg": "^8.11.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"technicalindicators": "^3.1.0",
"tslib": "^2.6.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.1.3",
"@nx/eslint-plugin": "16.5.3",
"@nx/jest": "16.5.3",
"@nx/js": "16.5.3",
"@nx/linter": "16.5.3",
"@nx/nest": "16.5.3",
"@nx/node": "16.5.3",
"@nx/webpack": "16.5.3",
"@nx/workspace": "16.5.3",
"@semantic-release/changelog": "^6.0.3",
"@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.17",
"@types/jest": "29.4.4",
"@types/node": "18.17.3",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"conventional-changelog-conventionalcommits": "^6.1.0",
"cross-env": "^7.0.3",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-rxjs": "^5.0.2",
"husky": "^7.0.4",
"jest": "29.4.3",
"jest-environment-jsdom": "28.1.3",
"jest-environment-node": "^29.4.1",
"nx": "16.6.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.7",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18"
},
"authors": [
"wouter cleymans",
"thijs raets"
]
}