working on proxy-service

This commit is contained in:
Bojan Kucera 2025-06-05 19:03:17 -04:00
parent b23ca42f4d
commit 953b361d30
14 changed files with 1020 additions and 56 deletions

View file

@ -10,8 +10,8 @@
"test": "bun test"
},
"dependencies": {
"@stock-bot/logger": "workspace:*",
"@stock-bot/utils": "workspace:*"
"@stock-bot/logger": "*",
"@stock-bot/utils": "*"
},
"devDependencies": {
"@types/node": "^20.10.0",

View file

@ -10,8 +10,8 @@
"test": "bun test"
},
"dependencies": {
"@stock-bot/logger": "workspace:*",
"@stock-bot/config": "workspace:*",
"@stock-bot/logger": "*",
"@stock-bot/config": "*",
"ioredis": "^5.3.2",
"eventemitter3": "^5.0.1"
},

View file

@ -12,9 +12,11 @@
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch"
}, "dependencies": {
},
"dependencies": {
"@stock-bot/logger": "*",
"@stock-bot/types": "*",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"socks-proxy-agent": "^8.0.5"
},

View file

@ -10,11 +10,11 @@
"test": "bun test"
},
"dependencies": {
"@stock-bot/config": "workspace:*",
"@stock-bot/data-frame": "workspace:*",
"@stock-bot/event-bus": "workspace:*",
"@stock-bot/logger": "workspace:*",
"@stock-bot/utils": "workspace:*",
"@stock-bot/config": "*",
"@stock-bot/data-frame": "*",
"@stock-bot/event-bus": "*",
"@stock-bot/logger": "*",
"@stock-bot/utils": "*",
"commander": "^14.0.0",
"eventemitter3": "^5.0.1"
},

View file

@ -10,9 +10,9 @@
"test": "bun test"
},
"dependencies": {
"@stock-bot/logger": "workspace:*",
"@stock-bot/utils": "workspace:*",
"@stock-bot/data-frame": "workspace:*"
"@stock-bot/logger": "*",
"@stock-bot/utils": "*",
"@stock-bot/data-frame": "*"
},
"devDependencies": {
"@types/node": "^20.10.0",