fix(deps): align react types with astrojs/react v18 and use modern --omit=dev in Dockerfile
Some checks failed
Production Build & Deploy / build-and-deploy (push) Failing after 6s

This commit is contained in:
Daniel S
2026-08-09 22:08:23 +02:00
parent 64c257f050
commit bb69e554d0
3 changed files with 639 additions and 929 deletions

View File

@@ -22,7 +22,7 @@ ENV DATA_DIR=/app/data
RUN mkdir -p /app/data
COPY package*.json ./
RUN npm ci --only=production
RUN npm ci --omit=dev
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/public ./public

1557
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -17,18 +17,19 @@
"@astrojs/tailwind": "^5.1.4",
"@fontsource/inter": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"astro": "^4.16.0",
"nodemailer": "^9.0.5",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.7.0",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@types/nodemailer": "^8.0.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitest/coverage-v8": "^4.1.10",
"vitest": "^4.1.10"
}
}