-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
43
44
45
46
47
48
{
"name": "medusa-plugin-smtp",
"version": "1.2.0",
"description": "SMTP transactional emails",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/minpham-com/medusa-plugin-smtp"
},
"author": "Min",
"license": "MIT",
"devDependencies": {
"@babel/cli": "latest",
"@babel/core": "latest",
"@babel/node": "latest",
"@babel/plugin-proposal-class-properties": "latest",
"@babel/plugin-transform-instanceof": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/register": "latest",
"@babel/runtime": "latest",
"client-sessions": "latest",
"cross-env": "latest",
"jest": "latest"
},
"scripts": {
"build": "babel src -d .",
"prepare": "cross-env NODE_ENV=production yarn run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest --passWithNoTests"
},
"peerDependencies": {
"@medusajs/medusa": "latest"
},
"dependencies": {
"@babel/plugin-transform-classes": "latest",
"body-parser": "latest",
"email-templates": "latest",
"express": "latest",
"medusa-core-utils": "latest",
"medusa-test-utils": "latest",
"nodemailer": "latest"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-smtp"
]
}