Files
Calbook/package.json

60 lines
1.7 KiB
JSON

{
"name": "calbook",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx --max-warnings=0",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"test:timezone": "tsx scripts/test-timezone-dst.ts",
"setup": "npm install && npm run prisma:generate && npm run prisma:push && npm run db:seed",
"cron:sync": "tsx scripts/run-sync.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "^5.22.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"framer-motion": "^11.15.0",
"lucide-react": "^0.468.0",
"next": "^15.5.15",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.13",
"prisma": "^5.22.0",
"react": "18.3.1",
"react-day-picker": "^9.14.0",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tsdav": "^2.1.2",
"tsx": "^4.19.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.0",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.15",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
}
}