lila/packages/db/package.json
lila 1a50f73c74
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m52s
updated docker pipeline to include database migrations, added dummy table to verify the pipeline works
2026-04-23 09:19:57 +02:00

26 lines
556 B
JSON

{
"name": "@lila/db",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate"
},
"dependencies": {
"@lila/shared": "workspace:*",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"pg": "^8.20.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10"
},
"exports": {
".": "./dist/src/index.js",
"./schema": "./dist/src/db/schema.js"
}
}