package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "mailhub",
  3. "version": "1.0.0",
  4. "type": "module",
  5. "description": "Dockerized outbound mail control panel with DNS guidance and DKIM signing.",
  6. "license": "MIT",
  7. "author": "MailHub contributors",
  8. "keywords": [
  9. "email",
  10. "smtp",
  11. "dkim",
  12. "dns",
  13. "mail",
  14. "postfix",
  15. "self-hosted"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+ssh://git@github.com/chendeben/MailHub.git"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/chendeben/MailHub/issues"
  23. },
  24. "homepage": "https://mail-send.ss5.xyz",
  25. "scripts": {
  26. "start": "node src/server.js",
  27. "dev": "NODE_ENV=development node src/server.js",
  28. "dev:ui": "vite --host 0.0.0.0",
  29. "build": "tsc --noEmit && vite build",
  30. "preview:ui": "vite preview --host 0.0.0.0",
  31. "test": "node --test test/*.test.js",
  32. "test:ui": "vitest run",
  33. "release:check": "npm test && npm run test:ui && npm run build",
  34. "deploy:remote": "bash scripts/deploy-remote.sh"
  35. },
  36. "engines": {
  37. "node": ">=24.0.0"
  38. },
  39. "dependencies": {
  40. "@ant-design/icons": "^6.3.2",
  41. "@ant-design/plots": "^2.6.8",
  42. "@zone-eu/mailsplit": "^5.4.14",
  43. "antd": "^5.29.3",
  44. "parse5": "^8.0.1",
  45. "react": "^19.2.7",
  46. "react-dom": "^19.2.7",
  47. "react-router-dom": "^7.18.1"
  48. },
  49. "devDependencies": {
  50. "@testing-library/react": "^16.3.2",
  51. "@testing-library/user-event": "^14.6.1",
  52. "@types/react": "^19.2.17",
  53. "@types/react-dom": "^19.2.3",
  54. "@vitejs/plugin-react": "^6.0.3",
  55. "jsdom": "^29.1.1",
  56. "typescript": "^5.9.3",
  57. "vite": "^8.1.3",
  58. "vitest": "^4.1.10"
  59. }
  60. }