Files
tt-booking/package.json
T
mikicvi ab1ac4427a chore: update database command and next.js version
- Changed the database migration command from "db:migrate" to "db:generate" for SQLite.
- Updated the Next.js version from 15.5.3 to 15.5.7 in package.json.
2025-12-29 16:59:57 +00:00

78 lines
2.7 KiB
JSON

{
"name": "tt-booking",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "drizzle-kit push:sqlite",
"db:generate": "drizzle-kit generate:sqlite",
"db:studio": "drizzle-kit studio",
"db:init": "mkdir -p data && npm run db:push",
"db:setup": "tsx scripts/setup-database.ts",
"db:reset": "tsx scripts/reset-db.ts",
"db:reset-confirm": "tsx scripts/reset-db.ts --confirm",
"db:seed": "tsx scripts/setup-database.ts --essential-only",
"db:check": "tsx scripts/check-database.ts",
"postinstall": "npm run db:init"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.0.7",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^9.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"drizzle-kit": "^0.20.6",
"drizzle-orm": "^0.29.1",
"drizzle-zod": "^0.5.1",
"jose": "^6.1.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.544.0",
"next": "^15.5.7",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.7",
"react": "^19.1.1",
"react-day-picker": "^9.10.0",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.20.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "^15.5.3",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}