mirror of
https://github.com/root-fr/jmap-webmail.git
synced 2026-09-24 16:01:18 +00:00
- Implement thread grouping by threadId in email list - Add ThreadListItem with collapsed/expanded states for desktop - Create ThreadConversationView for full-screen mobile experience - Add thread utility functions for grouping and sorting - Extend JMAP client with getThread() and getThreadEmails() methods - Add keyboard shortcut 'x' to expand/collapse threads - Add thread expansion state management in email store - Fix React hooks order in login page - Add .env.example for environment configuration - Add husky for git hooks
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "jmap-webmail",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build --turbopack",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"lint:fix": "next lint --fix",
|
|
"prepare": "husky",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@types/dompurify": "^3.0.5",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"dompurify": "^3.2.7",
|
|
"jmap-jam": "^0.11.0",
|
|
"lucide-react": "^0.556.0",
|
|
"next": "^16.0.8",
|
|
"next-auth": "^4.24.11",
|
|
"next-intl": "^4.5.8",
|
|
"react": "^19.2.1",
|
|
"react-dom": "^19.2.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"zustand": "^5.0.9"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^22",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@typescript-eslint/eslint-plugin": "^8.49.0",
|
|
"@typescript-eslint/parser": "^8.49.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-next": "^16.0.8",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"globals": "^16.5.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.2.7",
|
|
"tailwindcss": "^4.1.17",
|
|
"typescript": "^5"
|
|
}
|
|
}
|