- Extract services into services/{frontend,backend,discord-gateway}
- Create packages/shared/ for shared logger, errors, utils, types
- Setup Modular MVC pattern in backend (controller→service→repository)
- Setup event-driven architecture in discord-gateway with Redis pub/sub
- Move Docker files to infra/docker/ with per-service Dockerfiles
- Update docker-compose.yml to use Traefik-only routing (no port exposes)
- Update GitHub Actions deploy workflow for multi-service matrix build
- Fix all import paths and resolve type errors across all services
- All 3 services pass tsc --noEmit clean
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
642 B
JSON
28 lines
642 B
JSON
{
|
|
"name": "@bete/shared",
|
|
"version": "1.0.0",
|
|
"description": "Shared utilities, types, and errors for Bete microservices",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./types": "./dist/types/index.js",
|
|
"./errors": "./dist/errors/index.js",
|
|
"./logger": "./dist/logger/index.js",
|
|
"./utils": "./dist/utils/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"pino": "^9.0.0",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.9.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|