stock-bot/apps/data-services/feature-store/package.json

41 lines
1.1 KiB
JSON

{
"name": "feature-store",
"version": "1.0.0",
"description": "ML feature management and serving service",
"main": "src/index.ts",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir=dist",
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@stock-bot/shared-types": "*",
"@stock-bot/event-bus": "*",
"@stock-bot/utils": "*",
"@stock-bot/api-client": "*",
"hono": "^4.6.3",
"ioredis": "^5.4.1",
"node-fetch": "^3.3.2",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"compression": "^1.7.4",
"cors": "^2.8.5",
"helmet": "^7.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash": "^4.14.200",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"typescript": "^5.3.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}