Aktueller Stand

This commit is contained in:
2026-01-15 16:24:09 +01:00
parent 5d2630a02f
commit 46eae2a2a9
70 changed files with 7866 additions and 447 deletions

View File

@@ -6,9 +6,8 @@
"node": "24.13.0"
},
"scripts": {
"copy:fullcalendar-css": "node scripts/copy-fullcalendar-css.js",
"dev": "npm run copy:fullcalendar-css && next dev",
"build": "npm run copy:fullcalendar-css && prisma generate && next build",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"prisma:migrate": "prisma migrate dev",
@@ -16,30 +15,35 @@
"prisma:studio": "prisma studio"
},
"dependencies": {
"@fullcalendar/core": "^6.1.11",
"@fullcalendar/daygrid": "^6.1.11",
"@fullcalendar/interaction": "^6.1.11",
"@fullcalendar/list": "^6.1.11",
"@fullcalendar/react": "^6.1.11",
"@fullcalendar/timegrid": "^6.1.11",
"@fontsource/space-grotesk": "^5.1.0",
"@fullcalendar/core": "6.1.20",
"@fullcalendar/daygrid": "6.1.20",
"@fullcalendar/interaction": "6.1.20",
"@fullcalendar/list": "6.1.20",
"@fullcalendar/react": "6.1.20",
"@fullcalendar/timegrid": "6.1.20",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.19.1",
"bcryptjs": "^2.4.3",
"ical-generator": "^7.2.0",
"next": "14.2.5",
"leaflet": "^1.9.4",
"next": "14.2.25",
"next-auth": "^4.24.7",
"node-ical": "^0.20.1",
"nodemailer": "^7.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/leaflet": "^1.9.12",
"@types/nodemailer": "^6.4.17",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-next": "14.2.25",
"postcss": "^8.4.39",
"prisma": "^5.19.1",
"tailwindcss": "^3.4.7",