{ "name": "stock-bot", "private": true, "version": "1.0.0", "description": "Advanced trading bot with microservice architecture", "type": "module", "scripts": { "dev": "turbo run dev", "build": "./scripts/build-all.sh", "build:all:clean": "./scripts/build-all.sh --clean", "build:all:verbose": "./scripts/build-all.sh --verbose", "build:libs": "./scripts/build-libs.sh", "test": "turbo run test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "test:unit": "bun test test/unit", "test:integration": "bun test test/integration", "test:e2e": "bun test test/e2e", "test:libs": "turbo run test --filter='./libs/*'", "test:apps": "turbo run test --filter=./apps/*/*", "lint": "turbo run lint", "format": "./scripts/format.sh", "format:check": "prettier --check 'apps/**/*.{ts,json}' 'libs/**/*.{ts,json}' '*.json'", "format:ts": "prettier --write 'apps/**/*.ts' 'libs/**/*.ts'", "format:json": "prettier --write 'apps/**/*.json' 'libs/**/*.json' '*.json'", "start": "turbo run start", "clean": "turbo run clean", "clean:cache": "./scripts/clean.sh --cache", "clean:dist": "./scripts/clean.sh --dist", "clean:modules": "./scripts/clean.sh --modules", "clean:all": "./scripts/clean.sh --all", "clean:all:force": "./scripts/clean.sh --all --force", "clean:fresh": "./scripts/clean.sh --fresh", "clean:fresh:force": "./scripts/clean.sh --fresh --force", "backtest": "turbo run backtest", "docker:start": "./scripts/docker.sh start", "docker:stop": "./scripts/docker.sh stop", "docker:restart": "./scripts/docker.sh restart", "docker:status": "./scripts/docker.sh status", "docker:logs": "./scripts/docker.sh logs", "docker:reset": "./scripts/docker.sh reset", "docker:admin": "./scripts/docker.sh admin", "docker:monitoring": "./scripts/docker.sh monitoring", "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", "proxy": "bun run ./apps/data-service/src/proxy-demo.ts" }, "workspaces": [ "libs/*", "apps/*" ], "devDependencies": { "@ianvs/prettier-plugin-sort-imports": "^4.4.2", "@testcontainers/mongodb": "^10.7.2", "@testcontainers/postgresql": "^10.7.2", "@types/bun": "latest", "@types/node": "^22.15.30", "@types/supertest": "^6.0.2", "@types/yup": "^0.32.0", "bun-types": "^1.2.15", "mongodb-memory-server": "^9.1.6", "pg-mem": "^2.8.1", "prettier": "^3.5.3", "supertest": "^6.3.4", "turbo": "^2.5.4", "typescript": "^5.8.3", "yup": "^1.6.1" }, "packageManager": "bun@1.1.12", "engines": { "node": ">=18.0.0", "bun": ">=1.1.0" }, "dependencies": { "bullmq": "^5.53.2", "ioredis": "^5.6.1" }, "trustedDependencies": [ "@tailwindcss/oxide", "esbuild", "mongodb", "mongodb-memory-server" ] }