-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 996 Bytes
/
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
{
"name": "email-starter",
"version": "2.0.0",
"scripts": {
"start": "run-s create-base dev",
"build": "mjml -r index.mjml -o index.html",
"build-all": "node lib/build-html.js",
"watch": "mjml --watch index.mjml -o index.html",
"dev": "run-p watch browser-sync",
"create-base": "node lib/select-template.js",
"browser-sync": "browser-sync start --server --files '**/*.mjml'",
"test": "node lib/litmus-test.js"
},
"keywords": [
"email"
],
"author": "Armon Raphiel <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@sendgrid/mail": "^6.4.0",
"browser-sync": "^2.26.7",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"mjml": "^4.4.1",
"npm-run-all": "^4.1.5",
"prompts": "^2.2.1",
"recursive-readdir": "^2.2.2",
"uuid": "^3.3.3"
},
"bugs": {
"url": "https://github.com/araphiel/email-starter/issues"
},
"homepage": "https://github.com/araphiel/email-starter#readme"
}