-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "medusa-plugin-nodemailer",
"version": "0.1.4",
"description": "A notification service based on nodemailer for medusajs",
"main": "index.js",
"repository": {
"type": "git",
"url": "github:blechlawine/medusa-plugin-nodemailer"
},
"scripts": {
"build": "babel src -d .",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"keywords": [
"medusa",
"email",
"nodemailer",
"medusa-plugin"
],
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"author": "Blechlawine",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"cross-env": "^7.0.3"
},
"dependencies": {
"cors": "^2.8.5",
"email-templates": "^8.0.8",
"express": "^4.17.1",
"medusa-core-utils": "^1.1.30",
"nodemailer": "^6.7.2",
"pug": "^3.0.2"
}
}