-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.2 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@wlocalhost/ngx-email-builder-convertor",
"version": "0.0.0-development",
"description": "Convert IPEmail object to a HTML a fully responsive Template!",
"main": "index.js",
"type": "module",
"private": false,
"scripts": {
"start": "pnpm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "tsx watch server.ts",
"copy": "copyfiles -a './templates/**' './thumbnails/**' ./README.md ./CHANGELOG.md ./mjml-output/*.css ./package.json ./dist",
"build": "rimraf dist && tsc && pnpm copy",
"template-json": "tsx generate-template-json.ts",
"template-thumbnails": "tsx generate-thumbnails.ts",
"template-thumb:json": "pnpm run template-json && npm run template-thumbnails",
"commit": "git add . && git-cz"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./dist"
}
]
]
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"repository": {
"url": "https://github.com/wanoo21/Angular-mjml-output"
},
"author": {
"name": "Wlocalhost"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"css": "^3.0.0",
"express": "^4.16.3",
"html-minifier": "^4.0.0",
"mjml": "^4.15.3"
},
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/cors": "^2.8.4",
"@types/css": "^0.0.31",
"@types/express": "^4.16.0",
"@types/html-minifier": "^4.0.2",
"@types/mjml": "^4.0.0",
"@types/node": "^22.10.6",
"cheerio": "^1.0.0-rc.3",
"commitizen": "^4.2.4",
"copyfiles": "^2.1.1",
"cross-env": "^7.0.3",
"rimraf": "^2.6.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"webshot": "^0.18.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}