package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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://github.com/chendeben/MailHub#readme",
  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. "antd": "^5.29.3",
  42. "react": "^19.2.7",
  43. "react-dom": "^19.2.7"
  44. },
  45. "devDependencies": {
  46. "@types/react": "^19.2.17",
  47. "@types/react-dom": "^19.2.3",
  48. "@vitejs/plugin-react": "^6.0.3",
  49. "typescript": "^5.9.3",
  50. "vite": "^8.1.3"
  51. }
  52. }