-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1010 Bytes
/
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
{
"name": "electron-react-boilerplate",
"version": "0.1.0",
"main": "public/electron.js",
"hompage": "./",
"private": true,
"dependencies": {
"electron-is-dev": "^1.0.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "^2.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron-start": "electron .",
"electron-dev": "concurrently \"BROWSER=none npm run start\" \"wait-on http://localhost:3000 && electron .\"",
"preelectron-pack": "npm build",
"electron-pack": "build -- em.main=build/electron.js"
},
"devDependencies": {
"concurrently": "^4.0.1",
"electron": "^4.0.1",
"electron-builder": "^20.38.5",
"wait-on": "^3.0.1"
},
"build": {
"appId": "com.mook",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}