-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
31 lines (31 loc) · 894 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
{
"name": "electron-react-webpack",
"version": "1.0.0",
"description": "Electron + React 16 + Webpack 4 template.",
"main": "main_process.js",
"scripts": {
"bundle": "webpack --mode development",
"serve": "electron .",
"start": "npm-run-all --parallel bundle serve"
},
"author": "J. Renato Ramos González <[email protected]>",
"repository": "pastahito/electron-react-webpack",
"license": "WTFPL",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"electron": "^1.8.2",
"electron-reload": "^1.2.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.10",
"npm-run-all": "^4.1.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}