mirror of
https://github.com/root-fr/jmap-webmail.git
synced 2026-09-27 00:01:20 +00:00
- Set up Next.js 15.5 with TypeScript and Turbopack - Configured Tailwind CSS v4 with minimalist design system - Created core email components: list, viewer, composer - Implemented sidebar navigation with mailbox folders - Added JMAP client wrapper using jmap-jam library - Set up Zustand for state management - Created responsive layout with three-pane view - Added mock data for development
31 lines
673 B
JSON
31 lines
673 B
JSON
{
|
|
"name": "jmap-webmail",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build --turbopack",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"jmap-jam": "^0.11.0",
|
|
"lucide-react": "^0.544.0",
|
|
"next": "15.5.4",
|
|
"next-auth": "^4.24.11",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"tailwind-merge": "^3.3.1",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|