-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "electron-cra",
"description": "electron+create-react-app sample app",
"version": "0.0.1",
"private": true,
"author": "thinkholic",
"license": "MIT",
"homepage": "./",
"repository": {
"type": "git",
"url": "git+https://github.com/kodeflex/electron-cra.git"
},
"main": "public/electron.js",
"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 npm start\" \"wait-on http://localhost:3000 && electron .\"",
"prod": "build --em.main=build/electron.js",
"release": "build --em.main=build/electron.js --publish=always",
"preprod": "npm run build",
"prerelease": "npm run build"
},
"dependencies": {
"cross-env": "^5.1.3",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.14",
"electron-updater": "^2.19.1",
"node-notifier": "^5.2.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"concurrently": "3.5.1",
"electron": "1.7.10",
"electron-builder": "^19.54.0",
"prettier": "^1.10.2",
"react-scripts": "^1.1.0",
"wait-on": "^2.1.0"
},
"build": {
"appId": "io.example.electron-cra",
"files": [
"build/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "assets"
},
"publish": {
"provider": "github"
}
}
}