package.json 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "0.1.0",
  4. "license": "MIT",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*",
  9. "templates/**/*",
  10. "dev-mailbox.html"
  11. ],
  12. "scripts": {
  13. "watch": "tsc -p ./tsconfig.build.json --watch",
  14. "build": "rimraf lib && tsc -p ./tsconfig.build.json"
  15. },
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "dependencies": {
  20. "dateformat": "^3.0.3",
  21. "express": "^4.16.4",
  22. "fs-extra": "^7.0.1",
  23. "handlebars": "^4.0.12",
  24. "mjml": "^4.3.0",
  25. "nodemailer": "^5.0.0",
  26. "rimraf": "^2.6.3",
  27. "typescript": "^3.4.1"
  28. },
  29. "devDependencies": {
  30. "@types/dateformat": "^3.0.0",
  31. "@types/express": "^4.16.1",
  32. "@types/fs-extra": "^5.0.4",
  33. "@types/handlebars": "^4.0.40",
  34. "@types/mjml": "^4.0.2",
  35. "@types/nodemailer": "^4.6.5",
  36. "@vendure/common": ">=0.1.0-alpha.1",
  37. "@vendure/core": ">=0.1.0-alpha.1"
  38. },
  39. "peerDependencies": {
  40. "@vendure/core": ">=0.1.0-alpha.18"
  41. }
  42. }