package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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",
  32. "release:check": "npm test && npm run build",
  33. "deploy:remote": "bash scripts/deploy-remote.sh"
  34. },
  35. "engines": {
  36. "node": ">=24.0.0"
  37. },
  38. "dependencies": {
  39. "@ant-design/icons": "^6.3.2",
  40. "@ant-design/plots": "^2.6.8",
  41. "@zone-eu/mailsplit": "^5.4.14",
  42. "antd": "^5.29.3",
  43. "parse5": "^8.0.1",
  44. "react": "^19.2.7",
  45. "react-dom": "^19.2.7"
  46. },
  47. "devDependencies": {
  48. "@types/react": "^19.2.17",
  49. "@types/react-dom": "^19.2.3",
  50. "@vitejs/plugin-react": "^6.0.3",
  51. "typescript": "^5.9.3",
  52. "vite": "^8.1.3"
  53. }
  54. }