Files
SRCmail/package.json
T
Matthieu MALVACHEandMatthieu MALVACHE fb414bf2c9 feat: add contacts phase 2, advanced search, vacation responder, Docker & TOTP 2FA
- Contact groups/lists, vCard import/export (RFC 6350), bulk operations
- Advanced search with JMAP filter panel, search chips, cross-mailbox queries
- Vacation responder with JMAP VacationResponse, settings tab, sidebar indicator
- TOTP two-factor authentication support
- Docker multi-stage build with standalone output and docker-compose
- CSP Report-Only headers and security headers via proxy middleware
- Virtual scrolling for large email lists
- Structured server-side logger (text/JSON, configurable level)
- 450+ tests (contacts, vCard, threads, headers, identity, components)
- Playwright E2E framework setup
- Updated README and ROADMAP with all new features
2026-02-16 18:51:30 +01:00

74 lines
1.9 KiB
JSON

{
"name": "jmap-webmail",
"version": "1.0.0",
"description": "A modern JMAP webmail client built for Stalwart Mail Server",
"author": "Matthieu MALVACHE <matthieu@root.cloud>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/root-fr/jmap-webmail.git"
},
"homepage": "https://github.com/root-fr/jmap-webmail",
"bugs": {
"url": "https://github.com/root-fr/jmap-webmail/issues"
},
"keywords": [
"jmap",
"webmail",
"stalwart",
"email",
"nextjs",
"react",
"typescript"
],
"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": {
"@tanstack/react-virtual": "^3.13.18",
"@types/dompurify": "^3.0.5",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.1",
"jmap-jam": "^0.13.1",
"lucide-react": "^0.564.0",
"next": "^16.1.5",
"next-intl": "^4.5.8",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.2.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/ui": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}