forked from RootXP-dev/medusa-email-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
41
42
{
"name": "@rootxpdev/medusa-email-plugin",
"version": "0.8.0",
"description": "Send emails when certain actions happens in medusa store",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/RootXP-dev/medusa-email-plugin"
},
"homepage:": "https://github.com/RootXP-dev/medusa-email-plugin",
"author": "Root XP",
"license": "GPL-3.0-or-later",
"dependencies": {
"email-templates": "^11.1.1",
"medusa-interfaces": "^1.3.9",
"nodemailer": "^6.9.13",
"pug": "^3.0.2",
"zod": "^3.23.4"
},
"devDependencies": {
"@medusajs/medusa-cli": "^1.3.22",
"@types/nodemailer": "^6.4.14",
"awilix": "^8.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"shx": "^0.3.4",
"typescript": "^5.2.2"
},
"scripts": {
"prepare": "cross-env NODE_ENV=production yarn run build",
"test": "jest --passWithNoTests src",
"build": "shx rm -rf ./dist && tsc",
"watch": "tsc --watch"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-notification",
"email",
"transactional email"
]
}