feat(WHE-27): add drizzle db package and typed env config

This commit is contained in:
2026-03-05 03:05:02 +04:00
parent 18168a8dab
commit 8086044938
21 changed files with 631 additions and 28 deletions

16
packages/db/package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "@household/db",
"private": true,
"type": "module",
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun",
"typecheck": "tsgo --project tsconfig.json --noEmit",
"test": "bun test --pass-with-no-tests",
"lint": "oxlint \"src\""
},
"dependencies": {
"@household/config": "workspace:*",
"drizzle-orm": "^0.44.5",
"postgres": "^3.4.7"
}
}