- Next.js 16 App Router site with the ANOUMA design system - Payload CMS (PostgreSQL) for offers, events, posts and page content - WebRTC video-call system with custom signaling server - SMTP email reminders and booking-request notifications - Customer accounts, calendar-based availability, and booking workflow
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "anouma",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch server.ts",
|
|
"build": "next build",
|
|
"start": "NODE_ENV=production tsx server.ts",
|
|
"lint": "eslint",
|
|
"payload": "payload",
|
|
"generate:types": "payload generate:types",
|
|
"generate:importmap": "payload generate:importmap",
|
|
"migrate": "payload migrate",
|
|
"migrate:create": "payload migrate:create",
|
|
"seed": "payload run scripts/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"@payloadcms/db-postgres": "^3.88.0",
|
|
"@payloadcms/next": "^3.88.0",
|
|
"@payloadcms/richtext-lexical": "^3.88.0",
|
|
"@payloadcms/ui": "^3.88.0",
|
|
"drizzle-orm": "^0.45.2",
|
|
"framer-motion": "^13.1.1",
|
|
"graphql": "^16.14.2",
|
|
"next": "16.3.2",
|
|
"nodemailer": "^9.0.5",
|
|
"payload": "^3.88.0",
|
|
"react": "19.2.8",
|
|
"react-dom": "19.2.8",
|
|
"sharp": "^0.35.3",
|
|
"tsx": "^4.23.12",
|
|
"ws": "^8.21.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/nodemailer": "^8.0.1",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/ws": "^8.18.1",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.3.2",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|