invite/package.json
chris a5775930aa Add photo ZIP downloads, HEIC/HEIF uploads, thank-you notes, ICS export, and theme color overrides
- Photos: guests and hosts can download all event photos as a ZIP;
  HEIC/HEIF uploads are now accepted, with a WebP thumbnail generated
  for gallery display while the original file is preserved for
  download; uploader name now always shows as a caption
- Hosts can send a thank-you note (email/SMS) to guests who RSVP'd yes
- Guests can add the event to Google Calendar or download an .ics file,
  and see a live countdown to the event
- Hosts can override a theme's primary/accent colors per event
- New textures for a few themes' card backgrounds
2026-07-19 18:23:05 -04:00

51 lines
1.2 KiB
JSON

{
"name": "einvite",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"archiver": "^8.0.0",
"bcryptjs": "^2.4.3",
"heic-convert": "^2.1.0",
"libphonenumber-js": "^1.13.8",
"nanoid": "^5.0.7",
"next": "^16.2.10",
"nodemailer": "^9.0.3",
"prisma": "^5.20.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sharp": "^0.35.3",
"twilio": "^6.0.2",
"web-push": "^3.6.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/archiver": "^8.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.9",
"@types/nodemailer": "^7.0.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/web-push": "^3.6.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.5.3",
"vitest": "^2.1.9"
}
}