-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "reactron",
"version": "1.0.0",
"private": false,
"author": "Mitch Pierias <github.com/MitchPierias>",
"description": "Simplified Electron with React Boilerplate",
"main": "main.js",
"scripts": {
"start": "npm start:react",
"start:react": "MODE=dev webpack-dev-server --mode development --progress",
"start:electron": "MODE=dev electron .",
"build": "webpack --mode production",
"dist": "electron-builder"
},
"dependencies": {
"path": "^0.12.7",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"webpack-dev-server": "^3.3.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^2.0.0",
"electron": "^3.0.11",
"electron-builder": "^20.38.3",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"build": {
"productName": "Reactron",
"appId": "com.reactron.app",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"**/*",
"build/**/*",
"assets/**/*",
"!dist/**/*",
"!src/**/*",
"node_modules/**/*"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}