package.json 1006 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@vendure/email-plugin",
  3. "version": "0.5.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. "lint": "tslint --fix --project ./",
  16. "test": "jest --config ./jest.config.js"
  17. },
  18. "publishConfig": {
  19. "access": "public"
  20. },
  21. "dependencies": {
  22. "dateformat": "^3.0.3",
  23. "express": "^4.16.4",
  24. "fs-extra": "^8.0.1",
  25. "handlebars": "^4.1.2",
  26. "mjml": "^4.3.0",
  27. "nodemailer": "^5.0.0"
  28. },
  29. "devDependencies": {
  30. "@types/dateformat": "^3.0.0",
  31. "@types/express": "^4.16.1",
  32. "@types/fs-extra": "^8.0.1",
  33. "@types/handlebars": "^4.1.0",
  34. "@types/mjml": "^4.0.2",
  35. "@types/nodemailer": "^4.6.5",
  36. "@vendure/common": "^0.5.0",
  37. "@vendure/core": "^0.5.0",
  38. "rimraf": "^3.0.0",
  39. "typescript": "~3.5.3"
  40. }
  41. }