-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "electron-create-react-app",
"description": "Boilerplate linking electron and create-react-app",
"version": "0.1.0",
"private": true,
"author": {
"name": "mcmunder",
"email": "[email protected]",
"url": "https://mcmunder.de"
},
"dependencies": {
"cross-env": "5.1.3",
"electron-is-dev": "0.3.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"chalk": "^2.3.1",
"concurrently": "3.5.1",
"electron": "1.8.2",
"electron-builder": "20.2.0",
"electron-devtools-installer": "^2.2.3",
"react-scripts": "1.1.1",
"wait-on": "2.1.0"
},
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.example.electron-create-react-app"
},
"scripts": {
"start": "react-scripts start",
"debug": "npm run electron-dev -- --inspect=5858",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron-dev":
"concurrently \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "build -- --em.main=build/electron.js",
"preelectron-pack": "npm run build"
}
}