- Add @project-e/db package with Drizzle schema and migrations - Replace PocketBase client with PostgreSQL-based database client - Migrate auth from custom to NextAuth.js - Add Docker Compose with PostgreSQL container - Update worker to use new database client - Remove PocketBase-specific files and migrations - Add drizzle config and initial migration
23 lines
462 B
JSON
23 lines
462 B
JSON
{
|
|
"name": "@project-e/worker",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "node --watch index.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@project-e/db": "^0.1.0",
|
|
"@project-e/shared": "*",
|
|
"drizzle-orm": "^0.45.2",
|
|
"postgres": "^3.4.9",
|
|
"tsx": "^4.23.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|