feat: Enhance backend with request/SQL logging via morgan/winston and fix frontend by correctly rendering email Markdown content using the 'marked' library.

This commit is contained in:
2025-07-29 12:44:56 +08:00
parent c38a4f0f62
commit 8c649adf93
19 changed files with 859 additions and 246 deletions
+11 -6
View File
@@ -3,19 +3,24 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"axios": "^1.11.0",
"element-plus": "^2.10.4",
"pinia": "^3.0.3",
"register-service-worker": "^1.7.2",
"vue": "^3.5.18",
"vue-i18n": "^11.1.11",
"vue-router": "^4.5.1"
"vue-router": "^4.5.1",
"ws": "^8.18.3",
"marked": "^13.0.2"
},
"devDependencies": {
"@vue/cli-plugin-pwa": "~5.0.0",
"@vue/cli-service": "~5.0.8"
"@vitejs/plugin-vue": "^5.0.5",
"vite": "^5.3.1",
"vite-plugin-pwa": "^0.20.0"
}
}