-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "egghead-fresh-emails",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"build:watch": "babel src --out-dir dist --watch",
"prestart": "npm run build",
"start": "npm run build:watch & nodemon ./dist/server.js --watch ./dist",
"generate": "node ./dist/cli.js"
},
"author": {
"name": "Mantas Miliukas",
"email": "[email protected]"
},
"homepage": "https://github.com/wix-incubator/mjml-react-example",
"bugs": "https://github.com/wix-incubator/mjml-react-example/issues",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4"
},
"dependencies": {
"express": "^4.17.1",
"he": "^1.2.0",
"lodash": "^4.17.15",
"mailbrush": "0.0.8",
"mjml": "^4.5.1",
"mjml-react": "^1.0.57",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"prismjs": "^1.17.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^4.2.2",
"react-prism": "^4.3.2",
"react-scripts": "^3.3.0"
}
}