-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.24 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
{
"name": "electron-react-webpack-boilerplate",
"version": "1.1.0",
"description": "Minimal Electron, React, TypeScript and Webpack boilerplate to help you get started with building your next app.",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Y0nnyy/electron-react-boilerplate.git"
},
"homepage": "",
"bugs": {
"url": "https://github.com/Y0nnyy/electron-react-boilerplate.git/issues"
},
"author": {
"name": "Jonas Geschke",
"email": "[email protected]",
"url": "https://github.com/Y0nnyy"
},
"keywords": [
"app",
"boilerplate",
"electron",
"open",
"open-source",
"react",
"reactjs",
"source",
"webpack",
"typescript",
"native",
"modules"
],
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"main": "main.js",
"scripts": {
"prod": "webpack --mode production --config=./config/webpack.build.config.js && electron --noDevServer .",
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./config/webpack.dev.config.js --mode development",
"build": "webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./builds"
},
"dependencies": {
"bindings": "TooTallNate/node-bindings#pull/40/head",
"electron": "^3.0.6",
"react": "^16.6.0",
"react-dom": "^16.6.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"babel-loader": "^8.0.4",
"babel-minify-webpack-plugin": "^0.3.1",
"electron-native-loader": "^0.3.0",
"electron-native-patch-loader": "^0.3.0",
"electron-native-plugin": "Y0nnyy/electron-native-plugin",
"electron-packager": "^12.2.0",
"electron-rebuild": "^1.8.2",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.1.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
}
}