65 lines
2.2 KiB
JSON
65 lines
2.2 KiB
JSON
{
|
|
"name": "stock-bot",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "Advanced trading bot with microservice architecture",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"build": "turbo run build",
|
|
"build:libs": "pwsh ./scripts/build-libs.ps1",
|
|
"test": "turbo run test",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"test:unit": "jest --testPathPattern=unit",
|
|
"test:integration": "jest --testPathPattern=integration",
|
|
"test:e2e": "jest --testPathPattern=e2e",
|
|
"test:libs": "turbo run test --filter=./libs/*",
|
|
"test:apps": "turbo run test --filter=./apps/*/*",
|
|
"lint": "turbo run lint",
|
|
"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",
|
|
"docker:status": "pwsh ./scripts/docker.ps1 status",
|
|
"docker:logs": "pwsh ./scripts/docker.ps1 logs",
|
|
"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: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": [
|
|
"libs/*",
|
|
"apps/*/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.12",
|
|
"turbo": "^2.5.4",
|
|
"typescript": "^5.4.5",
|
|
"@types/jest": "^29.5.12",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.2",
|
|
"@jest/globals": "^29.7.0",
|
|
"jest-extended": "^4.0.2",
|
|
"jest-mock-extended": "^3.0.5",
|
|
"@testcontainers/postgresql": "^10.7.2",
|
|
"@testcontainers/mongodb": "^10.7.2",
|
|
"mongodb-memory-server": "^9.1.6",
|
|
"pg-mem": "^2.8.1",
|
|
"supertest": "^6.3.4",
|
|
"@types/supertest": "^6.0.2"
|
|
},
|
|
"packageManager": "bun@1.1.12",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"bun": ">=1.1.0"
|
|
},
|
|
"dependencies": {
|
|
"valibot": "^1.1.0"
|
|
}
|
|
}
|