forked from p3nGu1nZz/react-electron-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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
{
"name": "example-cra-electron",
"version": "0.1.10",
"private": true,
"author": "electron-cra-example",
"description": "A simple skeleton example application made with electron react",
"homepage": "./",
"dependencies": {
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.14",
"electron-updater": "^2.21.4",
"node-notifier": "^5.2.1",
"react": "^16.3.1",
"react-dom": "^16.3.1"
},
"devDependencies": {
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"electron": "^1.8.4",
"electron-builder": "^20.8.1",
"prettier": "^1.12.0",
"react-scripts": "^1.1.4",
"wait-on": "^2.1.0"
},
"main": "public/electron.js",
"build": {
"appId": "io.atom.electron.electron-cra-example",
"files": [
"build/**/*",
"package.json"
],
"directories": {
"buildResources": "assets"
},
"publish": {
"provider": "github"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev": "concurrently \"cross-env BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"pack": "build -c.extraMetadata.main=build/electron.js",
"release": "build -c.extraMetadata.main=build/electron.js --publish=always",
"prepack": "yarn build",
"prerelease": "yarn build"
}
}