invite/package.json
chris 2c78112a4f Initial commit: E-Invite, a self-hosted Evite-lite
Docker-ready Next.js + Prisma/Postgres e-invitation app: themed invite
pages, RSVP, comments, share links, email + SMS invites with
reply-to-RSVP-by-text, co-hosts, photo dropbox, and browser push
notifications.
2026-07-11 10:11:12 -04:00

47 lines
1.1 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",
"bcryptjs": "^2.4.3",
"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",
"twilio": "^6.0.2",
"web-push": "^3.6.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@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"
}
}