-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "medusa-plugin-sendgrid-typescript",
"version": "2.2.2",
"description": "SendGrid transactional emails typescript",
"repository": {
"type": "git",
"url": "https://github.com/luluhoc/medusa-plugin-sendgrid-typescript.git"
},
"engines": {
"node": ">=16"
},
"types": "dist/types.d.ts",
"files": [
"dist"
],
"author": "Lucjan Grzesik | Oliver Juhl",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-instanceof": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@medusajs/medusa": "^1.20.1",
"@medusajs/types": "^1.11.9",
"@types/express": "^4.17.21",
"client-sessions": "^0.8.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"medusa-interfaces": "^1.3.7",
"medusa-test-utils": "^1.1.41",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typeorm": "^0.3.20",
"typescript": "^5.3.3"
},
"scripts": {
"prepublishOnly": "cross-env NODE_ENV=production tsc --build",
"test": "jest --passWithNoTests src",
"build": "rimraf dist && tsc",
"watch": "tsc --watch"
},
"peerDependencies": {
"@medusajs/medusa": "^1.19.0",
"medusa-interfaces": "^1.3.7",
"typeorm": "^0.3.16"
},
"dependencies": {
"@medusajs/utils": "^1.11.2",
"@sendgrid/mail": "^8.1.0",
"medusa-core-utils": "^1.2.0"
},
"gitHead": "3bbd1e8507e00bc471de6ae3c30207999a4a4011",
"keywords": [
"medusa-plugin",
"medusa-plugin-notification"
]
}