package.json 860 B

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