forked from mjmlio/mjml-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.39 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "mjml-app",
"productName": "MJML",
"version": "2.10.0",
"license": "MIT",
"description": "The desktop app for MJML",
"repository": "https://github.com/mjmlio/mjml-app",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"release": "build",
"site": "webpack-dev-server --config webpack/site.js --content-base site",
"build:site": "NODE_ENV=production webpack --config webpack/site.js && cp -r site/assets dist",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint src webpack",
"prettier": "prettier --write \"{src,webpack}/**/*.js\"",
"prettier:check": "prettier --list-different \"{src,webpack}/**/*.js\""
},
"electronWebpack": {
"title": true,
"renderer": {
"webpackConfig": "./webpack/renderer.js"
}
},
"dependencies": {
"balloon-css": "^0.5.0",
"classnames": "^2.2.5",
"codemirror": "^5.36.0",
"electron-debug": "^1.5.0",
"electron-json-storage": "^4.0.2",
"electron-updater": "^2.21.3",
"es6-promisify": "^6.0.0",
"fix-path": "^2.1.0",
"fuse.js": "^3.2.0",
"immutable": "^3.8.2",
"js-beautify": "^1.7.5",
"mjml": "^4.1.2",
"mjml-migrate": "^4.1.0",
"ncp": "^2.0.0",
"node-mailjet": "^3.2.1",
"react": "^16.2.0",
"react-collapse": "^4.0.3",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-icons": "^2.2.7",
"react-mortal": "^3.2.0",
"react-redux": "^5.0.7",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"react-select": "^1.2.1",
"react-split-pane": "^0.1.77",
"react-steack": "^1.3.1",
"redux": "^3.7.2",
"redux-actions": "^2.3.0",
"redux-thunk": "^2.2.0",
"source-map-support": "^0.5.4",
"superagent-promise": "^1.1.0",
"trash": "^4.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"electron": "1.8.8",
"electron-builder": "^20.6.2",
"electron-devtools-installer": "^2.2.3",
"electron-webpack": "^1.13.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"node-sass": "^4.8.3",
"prettier": "^1.11.1",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.7",
"webpack": "3.11.0"
},
"resolutions": {
"webpack-sources": "1.0.1"
},
"authors": [
{
"name": "Meriadec Pillet",
"url": "https://github.com/meriadec"
},
{
"name": "Cedric Cavrois",
"url": "https://github.com/kmcb777"
},
{
"name": "Nicolas Garnier",
"url": "https://github.com/ngarnier"
},
{
"name": "Giulio M.",
"url": "https://github.com/Mistra"
},
{
"name": "Mateusz Dabrowski",
"url": "https://github.com/MateuszDabrowski"
},
{
"name": "Robbie Antenesse",
"url": "https://github.com/Alamantus"
},
{
"name": "Jon Bickelhaupt",
"url": "https://github.com/jbickelhaupt"
}
]
}