-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "electron-redux-react-boilerplate",
"productName": "ToDux",
"version": "1.0.0",
"description": "Electron boilerplate with React, Redux, ReactBootstrap, Babel and Webpack",
"main": "./src/background.js",
"scripts": {
"dev": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.app.dev.js",
"prod": "webpack --config webpack.app.prod.js && electron --noDevServer ./build/background.js",
"devbuild": "webpack --config webpack.app.dev.js && webpack --config webpack.main.dev.js",
"prodbuild": "webpack --config webpack.app.prod.js && webpack --config webpack.main.prod.js",
"package": "electron-builder"
},
"keywords": [],
"author": "hydrocarbons",
"license": "Apache License 2.0",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.9",
"electron": "^1.8.2",
"electron-builder": "^20.0.5",
"file-loader": "^1.1.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"style-loader": "^0.20.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.6.0"
},
"build": {
"appId": "com.hydrocarbons.bp.todux",
"productName": "ToDux",
"icon": "./icons/icon.icns",
"directories": {
"app": "./build",
"buildResources": "./icons",
"output": "./release"
},
"publish": null
}
}