-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.21 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": "@wanoo21/ip-email-builder-convertor",
"version": "0.0.0-development",
"description": "Convert IPEmail object to a HTML a fully responsive Template!",
"main": "index.js",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "nodemon --exec ts-node server.ts",
"copy": "copyfiles -a './templates/**' ./mjml-output/*.css ./package.json ./dist",
"build": "rimraf dist && tsc && yarn copy",
"template-json": "ts-node generate-template-json.ts",
"template-thumbnails": "ts-node generate-thumbnails.ts",
"template-thumb:json": "npm 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"
}
]
]
},
"keywords": [],
"repository": {
"url": "https://github.com/wanoo21/Angular-mjml-output"
},
"author": {
"name": "Wlocalhost"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"cross-env": "^7.0.2",
"css": "^3.0.0",
"express": "^4.16.3",
"html-minifier": "^4.0.0",
"lodash": "^4.17.10",
"mjml": "^4.13.0"
},
"devDependencies": {
"@types/html-minifier": "^4.0.2",
"@types/cheerio": "^0.22.21",
"@types/cors": "^2.8.4",
"@types/css": "^0.0.31",
"@types/express": "^4.16.0",
"@types/mjml": "^4.0.0",
"@types/node": "^10.9.4",
"cheerio": "^1.0.0-rc.3",
"commitizen": "^4.2.4",
"copyfiles": "^2.1.1",
"nodemon": "^1.18.3",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"typescript": "^4.6.4",
"webshot": "^0.18.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}