Delete confirmation: - Replaced browser confirm() popup with inline red warning bar in editor - Shows content title, Cancel and Delete buttons inline in the editor header - Category delete uses double-click pattern with toast feedback Login screen: - Changed from dark blue/purple gradient to light gray background (var(--g50)) - Card now matches 404 page style: white, subtle blue shadow, indigo border Presentation content type: - New 'Presentation' button in CMS toolbar (green style) - Marp markdown textarea editor (dark code editor style) shown when type=presentation - Body/Tiptap editor hidden; Marp section shown (toggleEditorMode) - Preview button: renders Marp HTML via @marp-team/marp-core, opens in new tab - Download PPTX: pure-JS pptxgenjs (no Chromium), parses slides, exports .pptx - AI generate: returns Marp markdown directly when contentType=presentation - Body column stores Marp markdown for presentations Backend: - POST /api/admin/learning/generate-pptx — pptxgenjs PPTX from Marp markdown - POST /api/admin/learning/preview-slides — Marp HTML preview GitHub repo set to private via API.
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "pediatric-ai-scribe",
|
|
"version": "3.1.0",
|
|
"description": "AI-powered pediatric clinical documentation platform",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js"
|
|
},
|
|
"dependencies": {
|
|
"@marp-team/marp-cli": "^4.3.1",
|
|
"@marp-team/marp-core": "^4.3.0",
|
|
"@tiptap/core": "^3.20.4",
|
|
"@tiptap/extension-color": "^3.20.4",
|
|
"@tiptap/extension-link": "^3.20.4",
|
|
"@tiptap/extension-text-align": "^3.20.4",
|
|
"@tiptap/extension-text-style": "^3.20.4",
|
|
"@tiptap/extension-underline": "^3.20.4",
|
|
"@tiptap/starter-kit": "^3.20.4",
|
|
"axios": "^1.7.7",
|
|
"bcryptjs": "^2.4.3",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.0",
|
|
"express-rate-limit": "^7.4.0",
|
|
"helmet": "^8.0.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"multer": "^1.4.5-lts.1",
|
|
"nodemailer": "^6.9.16",
|
|
"openai": "^4.73.0",
|
|
"pdf-parse": "^2.4.5",
|
|
"pg": "^8.13.0",
|
|
"pptxgenjs": "^4.0.1",
|
|
"qrcode": "^1.5.4",
|
|
"speakeasy": "^2.0.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@aws-sdk/client-bedrock-runtime": "^3.700.0"
|
|
}
|
|
}
|