forked from tahnik/electron-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.32 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
{
"name": "electron-react",
"version": "1.0.0",
"description": "Boilerplate for Electron and React",
"main": "./app/build/app.js",
"scripts": {
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --config webpack/dev.config.js\" \"cross-env NODE_ENV=development electron ./app/src/main/app.js\"",
"prod": "cross-env NODE_ENV=production webpack --progress --color --config webpack/prod.config.js",
"start": "npm run prod && electron app/build/app.js",
"lint": "eslint --ext .jsx,.js app/src/main --fix",
"pack": "electron-builder --dir",
"dist": "npm run prod && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"author": "Tahnik Mustasin",
"license": "MIT",
"build": {
"productName": "electron-react",
"win": {
"target": "NSIS"
},
"linux": {
"target": [
"deb",
"AppImage"
]
},
"mac": {
"category": "public.app-category.developer-tools"
},
"directories": {
"output": "release"
}
},
"keywords": [
"electron",
"react",
"react router v4",
"redux",
"webpack 3"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"electron": "^1.8.6",
"electron-builder": "^20.10.0",
"electron-devtools-installer": "^2.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"node-sass": "^4.9.0",
"react-hot-loader": "^4.1.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"redux": "^4.0.0"
}
}