package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "1.9.7",
  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. "lint": "tslint --fix --project ./",
  16. "test": "jest --config ./jest.config.js"
  17. },
  18. "homepage": "https://www.vendure.io/",
  19. "funding": "https://github.com/sponsors/michaelbromley",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "dependencies": {
  24. "@types/nodemailer": "^6.4.0",
  25. "dateformat": "^3.0.3",
  26. "express": "^4.17.1",
  27. "fs-extra": "^10.0.0",
  28. "handlebars": "^4.7.6",
  29. "mjml": "^4.7.1",
  30. "nodemailer": "^6.4.13"
  31. },
  32. "devDependencies": {
  33. "@types/dateformat": "^3.0.1",
  34. "@types/express": "^4.17.8",
  35. "@types/fs-extra": "^9.0.1",
  36. "@types/handlebars": "^4.1.0",
  37. "@types/mjml": "^4.0.4",
  38. "@vendure/common": "^1.9.7",
  39. "@vendure/core": "^1.9.7",
  40. "rimraf": "^3.0.2",
  41. "typescript": "4.3.5"
  42. }
  43. }