forked from alexzaganelli/strapi-plugin-email-designer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.12 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
69
70
71
72
73
74
75
{
"name": "strapi-plugin-email-designer",
"version": "2.2.1",
"description": "Strapi Email designer plugin.",
"homepage": "https://github.com/alexzaganelli/strapi-plugin-email-designer#readme",
"strapi": {
"displayName": "Email Designer",
"name": "email-designer",
"icon": "envelope",
"description": "Design your own email templates directly from the Strapi admin panel and use the magic to send it programmatically in your controllers / services.",
"required": false,
"kind": "plugin"
},
"scripts": {
"cypress:install": "node ./node_modules/cypress/bin/cypress install",
"cypress:open": "cypress open",
"prettier:check": "prettier --check **/*.js",
"prettier:write": "prettier --write **/*.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"dayjs": "^1.11.9",
"decode-html": "^2.0.0",
"html-to-text": "^9.0.5",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"react-email-editor": "^1.7.8",
"react-github-btn": "^1.4.0",
"react-syntax-highlighter": "^15.5.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.10",
"cypress": "^12.17.4",
"eslint": "^8.47.0",
"prettier": "^3.0.2"
},
"peerDependencies": {
"@strapi/strapi": "^4.12.4"
},
"author": {
"name": "Alexandre Zaganelli",
"email": "me@alexzaganelli.com",
"url": "https://alexzaganelli.com"
},
"maintainers": [
{
"name": "Alexandre Zaganelli",
"email": "me@alexzaganelli.com",
"url": "https://alexzaganelli.com"
}
],
"engines": {
"node": ">=18.x.x <=20.x.x",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexzaganelli/strapi-plugin-email-designer.git"
},
"bugs": {
"url": "https://github.com/alexzaganelli/strapi-plugin-email-designer/issues"
},
"keywords": [
"strapi",
"plugin",
"email",
"template",
"templates-design"
],
"license": "MIT",
"funding": "https://www.buymeacoffee.com/alexzaganelli"
}