- Add pnpm-workspace.yaml (backend + web + common-plat packages) - Add root package.json with workspace scripts and pnpm config - Add packageManager: pnpm@10.6.5 to backend/web manifests - Remove package-lock.json files, generate pnpm-lock.yaml - Add root .gitignore (was missing) - Update CI to use pnpm workspace commands - Add transpilePackages + webpack symlinks to next.config.ts - Update docker-prep.sh for backend + web consumers - Rewrite backend/web Dockerfiles to .docker-deps consumer pattern - Add .dockerignore Verified: typecheck + 576 tests (182 backend + 394 web) + builds pass Docker: backend + web smoke builds pass
40 lines
1.6 KiB
JSON
40 lines
1.6 KiB
JSON
{
|
|
"name": "@chronomind/backend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.6.5",
|
|
"description": "ChronoMind product-specific backend — timers, routines, households, shared timers",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@bytelyst/auth": "file:../../learning_ai_common_plat/packages/auth",
|
|
"@bytelyst/config": "file:../../learning_ai_common_plat/packages/config",
|
|
"@bytelyst/cosmos": "file:../../learning_ai_common_plat/packages/cosmos",
|
|
"@bytelyst/datastore": "file:../../learning_ai_common_plat/packages/datastore",
|
|
"@bytelyst/backend-config": "file:../../learning_ai_common_plat/packages/backend-config",
|
|
"@bytelyst/backend-flags": "file:../../learning_ai_common_plat/packages/backend-flags",
|
|
"@bytelyst/backend-telemetry": "file:../../learning_ai_common_plat/packages/backend-telemetry",
|
|
"@bytelyst/errors": "file:../../learning_ai_common_plat/packages/errors",
|
|
"@bytelyst/field-encrypt": "file:../../learning_ai_common_plat/packages/field-encrypt",
|
|
"@bytelyst/fastify-auth": "file:../../learning_ai_common_plat/packages/fastify-auth",
|
|
"@bytelyst/fastify-core": "file:../../learning_ai_common_plat/packages/fastify-core",
|
|
"@azure/cosmos": "^4.2.0",
|
|
"fastify": "5.7.4",
|
|
"jose": "^6.0.8",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.12.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^3.0.5"
|
|
}
|
|
}
|