-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "medusa-plugin-brevo-email",
"version": "1.0.21",
"description": "Brevo notification plugin for MedusaJS",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/kb-0912/medusa-plugin-brevo/"
},
"author": "KB",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-instanceof": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.5",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.9.6",
"@medusajs/medusa": "^1.7.5",
"client-sessions": "^0.8.0",
"cross-env": "^5.2.1",
"jest": "^29.7.0",
"medusa-interfaces": "^1.3.3"
},
"scripts": {
"build": "babel src --out-dir . --ignore '**/__tests__','**/__mocks__'",
"prepare": "cross-env NODE_ENV=production yarn run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest --passWithNoTests"
},
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"dependencies": {
"@babel/plugin-transform-classes": "^7.9.5",
"@getbrevo/brevo": "^2.2.0",
"@medusajs/event-bus-local": "latest",
"@medusajs/event-bus-redis": "^1.8.13",
"@medusajs/file-local": "latest",
"@medusajs/medusa": "^1.20.10",
"@tanstack/react-query": "4.22.0",
"benchmark": "^2.1.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "16.3.1",
"express": "^4.17.2",
"get-stream": "^6.0.1",
"jimp": "^0.22.12",
"medusa-core-utils": "^1.1.37",
"medusa-interfaces": "latest",
"medusa-test-utils": "^1.1.37",
"moment": "^2.30.1",
"node-tesseract-ocr": "^2.2.1",
"pdfkit": "^0.13.0",
"prism-react-renderer": "^2.0.4",
"replace-color": "^2.3.0",
"typeorm": "^0.3.16",
"undici": "^6.19.2"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-notification"
]
}