24 lines
692 B
JSON
24 lines
692 B
JSON
{
|
|
"name": "strategy-orchestrator",
|
|
"version": "1.0.0",
|
|
"description": "Trading strategy lifecycle management service",
|
|
"main": "src/index.ts", "scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"test": "bun test --timeout 10000 src/tests/**/*.test.ts",
|
|
"test:watch": "bun test --watch src/tests/**/*.test.ts"
|
|
}, "dependencies": {
|
|
"hono": "^4.6.3",
|
|
"ioredis": "^5.4.1",
|
|
"@stock-bot/config": "*",
|
|
"@stock-bot/types": "*",
|
|
"ws": "^8.18.0",
|
|
"node-cron": "^3.0.3",
|
|
"axios": "^1.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "^1.2.15",
|
|
"@types/ws": "^8.5.12",
|
|
"@types/node-cron": "^3.0.11"
|
|
}
|
|
}
|