Initial commit: Harat's Booking monorepo with deploy setup

This commit is contained in:
Eugenius-Anonymous
2026-06-08 14:36:51 +07:00
commit c97f7fd1a8
89 changed files with 10536 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "harats-booking",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*",
"client",
"server"
],
"scripts": {
"predev": "npx -y kill-port 5173 3001",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "npm run dev --workspace=client",
"dev:server": "npm run dev --workspace=server",
"build": "npm run build --workspace=packages/shared && npm run build --workspace=client && npm run build --workspace=server",
"db:migrate": "npm run db:migrate --workspace=server",
"db:seed": "npm run db:seed --workspace=server",
"db:reset": "npm run db:reset --workspace=server",
"db:init": "npm run db:migrate && npm run db:seed"
},
"devDependencies": {
"concurrently": "^9.1.0",
"typescript": "^5.7.0"
}
}