-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 KB
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": "jsx-email-builder",
"version": "1.7.0",
"description": "A jsx email template builder. Supper easy and fast.",
"type": "module",
"main": "engine/api.js",
"scripts": {
"new": "node engine/cli.js new new-project --templatesDir templates",
"start": "nodemon engine/cli.js start --port 4000 --templatesDir ./new-project-template/email-templates --configDir ./new-project-template",
"build": "node engine/cli.js build --templatesDir ./new-project-template/email-templates --configDir ./new-project-template",
"trans": "node engine/cli.js trans --templatesDir ./new-project-template/email-templates --configDir ./new-project-template"
},
"bin": {
"jsx-email-builder": "engine/cli.js"
},
"keywords": [
"jsx email builder",
"modern email builder",
"email template builder",
"react email templates"
],
"author": "Iman Mahmoudinasab",
"license": "GPL-3.0",
"dependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.74",
"@types/react": "^18.2.18",
"chalk": "^5.3.0",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"glob": "^10.2.3",
"html-escaper": "^3.0.3",
"i18next": "^23.4.1",
"jsdom": "^22.1.0",
"lodash-es": "^4.17.21",
"minimist": "^1.2.8",
"prettier": "^3.0.1",
"swc-loader": "^0.2.3",
"uuid": "^9.0.0",
"webpack": "^5.88.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1"
},
"resolve": {
"extensions": [
".js"
]
}
}