All checks were successful
Build & Push Docker Image / build (push) Successful in 6m19s
- Added functionality to create, accept, decline, and delete local calendar invitations. - Integrated email notifications for calendar event invitations and deletions. - Updated database schema to support local invitations and outbound event tracking. - Enhanced the calendar UI to display pending invitations and allow users to manage them. - Localized new strings for invitations in English and German.
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "redlight",
|
|
"private": true,
|
|
"version": "1.4.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently -n client,server -c blue,green \"vite\" \"node --watch server/index.js\"",
|
|
"dev:client": "vite",
|
|
"dev:server": "node --watch server/index.js",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"start": "NODE_ENV=production node server/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"better-sqlite3": "^11.0.0",
|
|
"concurrently": "^9.0.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.0",
|
|
"express": "^4.21.0",
|
|
"express-rate-limit": "^7.5.1",
|
|
"ioredis": "^5.10.0",
|
|
"jsonwebtoken": "^9.0.0",
|
|
"lucide-react": "^0.460.0",
|
|
"multer": "^2.0.2",
|
|
"nodemailer": "^8.0.1",
|
|
"pg": "^8.18.0",
|
|
"rate-limit-redis": "^4.3.1",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0",
|
|
"react-hot-toast": "^2.4.0",
|
|
"react-router-dom": "^6.28.0",
|
|
"uuid": "^13.0.0",
|
|
"xml2js": "^0.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"postcss": "^8.4.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"vite": "^5.4.0"
|
|
}
|
|
}
|