package.json 943 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "0.1.2-beta.12",
  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": "^8.0.1",
  23. "handlebars": "^4.1.2",
  24. "mjml": "^4.3.0",
  25. "nodemailer": "^5.0.0"
  26. },
  27. "devDependencies": {
  28. "@types/dateformat": "^3.0.0",
  29. "@types/express": "^4.16.1",
  30. "@types/fs-extra": "^7.0.0",
  31. "@types/handlebars": "^4.1.0",
  32. "@types/mjml": "^4.0.2",
  33. "@types/nodemailer": "^4.6.5",
  34. "@vendure/common": "^0.1.2-beta.12",
  35. "@vendure/core": "^0.1.2-beta.12",
  36. "rimraf": "^2.6.3",
  37. "typescript": "^3.4.1"
  38. }
  39. }