| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "@vendure/email-plugin",
- "version": "0.5.0",
- "license": "MIT",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*",
- "templates/**/*",
- "dev-mailbox.html"
- ],
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "build": "rimraf lib && tsc -p ./tsconfig.build.json",
- "lint": "tslint --fix --project ./",
- "test": "jest --config ./jest.config.js"
- },
- "publishConfig": {
- "access": "public"
- },
- "dependencies": {
- "dateformat": "^3.0.3",
- "express": "^4.16.4",
- "fs-extra": "^8.0.1",
- "handlebars": "^4.1.2",
- "mjml": "^4.3.0",
- "nodemailer": "^5.0.0"
- },
- "devDependencies": {
- "@types/dateformat": "^3.0.0",
- "@types/express": "^4.16.1",
- "@types/fs-extra": "^8.0.1",
- "@types/handlebars": "^4.1.0",
- "@types/mjml": "^4.0.2",
- "@types/nodemailer": "^4.6.5",
- "@vendure/common": "^0.5.0",
- "@vendure/core": "^0.5.0",
- "rimraf": "^3.0.0",
- "typescript": "~3.5.3"
- }
- }
|