no idea- added loki and other stuff to market-data-gateway, also added config lib

This commit is contained in:
Bojan Kucera 2025-06-03 11:37:58 -04:00
parent b957fb99aa
commit 1b71fc87ab
72 changed files with 6178 additions and 153 deletions

View file

@ -2,7 +2,8 @@
"name": "stock-bot",
"private": true,
"version": "1.0.0",
"description": "Advanced trading bot with microservice architecture", "scripts": {
"description": "Advanced trading bot with microservice architecture",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:libs": "pwsh ./scripts/build-libs.ps1",
@ -11,7 +12,6 @@
"clean": "turbo run clean",
"start": "turbo run start",
"backtest": "turbo run backtest",
"docker:start": "pwsh ./scripts/docker.ps1 start",
"docker:stop": "pwsh ./scripts/docker.ps1 stop",
"docker:restart": "pwsh ./scripts/docker.ps1 restart",
@ -20,20 +20,19 @@
"docker:reset": "pwsh ./scripts/docker.ps1 reset",
"docker:admin": "pwsh ./scripts/docker.ps1 admin",
"docker:monitoring": "pwsh ./scripts/docker.ps1 monitoring",
"infra:up": "docker-compose up -d dragonfly postgres questdb mongodb",
"infra:up": "docker-compose up -d dragonfly postgres questdb mongodb",
"infra:down": "docker-compose down",
"infra:reset": "docker-compose down -v && docker-compose up -d dragonfly postgres questdb mongodb",
"dev:full": "npm run infra:up && npm run docker:admin && turbo run dev",
"dev:clean": "npm run infra:reset && npm run dev:full"
}, "workspaces": [
},
"workspaces": [
"libs/*",
"packages/*",
"apps/*/*"
],
"devDependencies": {
"@types/node": "^20.12.12",
"turbo": "^2.0.5",
"turbo": "^2.5.4",
"typescript": "^5.4.5"
},
"packageManager": "bun@1.1.12",