-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.68 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
{
"name": "electron-starter-kit",
"productName": "electron-starter-kit",
"version": "1.0.0",
"description": "Electron starter kit with React, Redux, Webpack 4, Autoupdater and much more...",
"repository": "https://github.com/trembacz/electron-starter-kit.git",
"main": "main.js",
"scripts": {
"build": "webpack --colors --hide-modules --config=./webpack.prod.config.js",
"bundle": "webpack --colors --hide-modules --config=./webpack.dev.config.js",
"serve": "electron .",
"start": "(SET NODE_ENV=development) && npm-run-all --parallel bundle serve",
"prod": "(SET NODE_ENV=production) && npm-run-all --parallel build serve",
"package-all": "electron-builder -wml --ia32 --x64",
"package-win": "electron-builder --win --ia32 --x64",
"package-mac": "electron-builder --mac",
"package-linux": "electron-builder --linux",
"publish-app": "electron-builder -wml --ia32 --x64 -p always"
},
"author": "Tomasz Rembacz <[email protected]>",
"license": "MIT",
"build": {
"appId": "com.starter.kit",
"win": {
"compression": "maximum",
"target": "nsis-web",
"icon": "assets/icons/icon.ico"
},
"mac": {
"category": "public.app-category.productivity"
},
"linux": {
"category": "Productivity",
"target": [
"AppImage"
]
},
"nsisWeb": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"createDesktopShortcut": true
},
"directories": {
"buildResources": "assets/icons",
"output": "dist"
},
"files": [
"**/*",
"!dist/*",
"!node_modules/*"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"electron": "^10.1.3",
"electron-builder": "22.8.1",
"electron-devtools-installer": "^3.1.1",
"electron-reload": "^1.5.0",
"eslint": "^7.10.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.21.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.3",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"core-js": "^3.6.5",
"electron-updater": "^4.3.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5"
}
}