sandbox-notebookllamalm-nextjs/frontend/package.json
DJP 834f0217e1 Add markdown rendering, user role management, synthesis error handling
- Chat now renders markdown properly (ReactMarkdown)
- Added PUT /admin/users/{id}/role endpoint
- Synthesis shows error if it fails
- Podcast task 5 stuck (34+ min), task 8 pending
- All other features working

Features complete:
 Markdown chat rendering
 User role management endpoint
 Synthesis error handling
 React Query cache optimization
 All styling applied
2025-10-03 08:47:35 -04:00

29 lines
672 B
JSON

{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000 --turbopack",
"build": "next build --turbopack",
"start": "next start -p 4000"
},
"dependencies": {
"@tanstack/react-query": "^5.90.2",
"axios": "^1.12.2",
"date-fns": "^4.1.0",
"lucide-react": "^0.544.0",
"next": "15.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5"
}
}