All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 4m44s
- Fix auth bypass in UpdatePost/DeletePost (missing return after auth check) - Remove Spotify access token from callback response - Replace internal error messages with generic responses in all handlers - Harden GraphQL: complexity limit, disable playground/introspection in prod - Add security headers (X-Frame-Options, HSTS, etc.) to nginx - Disable Hasura console/dev mode in production - Add DOMPurify sanitization to Markdown component - Fix cookie removal to use correct domain/path from auth config - Fix nil dereference in rowing handler when Claude API errors - Fix wildcard CORS on stamp endpoint - Pin nginx and certbot Docker image versions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
772 B
JSON
35 lines
772 B
JSON
{
|
|
"name": "nginx-html",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.12.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@mdit/plugin-katex": "^0.24.1",
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"@vueuse/core": "^14.2.1",
|
|
"axios": "^1.13.2",
|
|
"dompurify": "^3.3.3",
|
|
"katex": "^0.16.27",
|
|
"markdown-it": "^14.1.0",
|
|
"markdown-it-wikilinks": "^1.4.0",
|
|
"pinia": "^3.0.4",
|
|
"tailwindcss": "^4.1.18",
|
|
"typescript": "^5.9.3",
|
|
"vue": "^3.5.22",
|
|
"vue-router": "^4.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.1.11",
|
|
"vite-plugin-vue-devtools": "^8.0.3"
|
|
}
|
|
}
|