package.json 913 B

123456789101112131415161718192021222324252627282930313233343536
  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": ["lib/**/*", "templates/**/*"],
  8. "scripts": {
  9. "watch": "tsc -p ./tsconfig.build.json --watch",
  10. "build": "rimraf lib && tsc -p ./tsconfig.build.json"
  11. },
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "dependencies": {
  16. "dateformat": "^3.0.3",
  17. "fs-extra": "^7.0.1",
  18. "handlebars": "^4.0.12",
  19. "mjml": "^4.3.0",
  20. "nodemailer": "^5.0.0",
  21. "rimraf": "^2.6.3",
  22. "typescript": "^3.4.1"
  23. },
  24. "devDependencies": {
  25. "@types/dateformat": "^3.0.0",
  26. "@types/fs-extra": "^5.0.4",
  27. "@types/handlebars": "^4.0.40",
  28. "@types/mjml": "^4.0.2",
  29. "@types/nodemailer": "^4.6.5",
  30. "@vendure/common": ">=0.1.0-alpha.1",
  31. "@vendure/core": ">=0.1.0-alpha.1"
  32. },
  33. "peerDependencies": {
  34. "@vendure/core": ">=0.1.0-alpha.18"
  35. }
  36. }