-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.34 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.34 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-electron",
"version": "0.0.1",
"description": "A React application wrapped in an Electron Application.",
"private": false,
"author": "Matthew Stewart <matthew.stewart.mi@gmail.com>",
"license": "AGPL-3.0",
"homepage": "./",
"main": "public/electron.js",
"dependencies": {
"axios": "^0.18.0",
"electron-is-dev": "^1.0.1",
"electron-publisher-s3": "^20.17.2",
"moment": "^2.22.2",
"react": "^16.5.2",
"react-dev-utils": "^6.0.4",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"shortid": "^2.2.13"
},
"repository": "https://github.com/omnicoders/react-electron.git",
"keywords": [
"React",
"Electron"
],
"scripts": {
"dev": "react-scripts start",
"start": "concurrently \"cross-env BROWSER=none react-scripts start\" \" wait-on http://localhost:3000 && electron .\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"electron": "^3.0.3",
"electron-builder": "^20.28.4",
"electron-devtools-installer": "^2.2.4",
"react-scripts": "^2.0.4",
"version-bump-prompt": "^4.2.1",
"wait-on": "^3.1.0"
},
"build": {
"appId": "com.your-domain",
"compression": "normal",
"productName": "Example",
"directories": {
"buildResources": "build",
"output": "dist"
},
"mac": {
"icon": "assets/icon.icns",
"type": "distribution",
"target": [
"pkg",
"dmg",
"mas"
],
"publish": {
"provider": "s3",
"bucket": "example-releases",
"path": "releases"
},
"category": "public.app-category.news"
},
"mas": {
"entitlements": "assets/entitlements.mas.plist",
"entitlementsInherit": "assets/entitlements.mas.inherit.plist",
"provisioningProfile": "assets/embedded.provisionprofile"
},
"win": {
"target": "nsis",
"icon": "assets/icon.ico",
"publish": {
"provider": "s3",
"bucket": "example-releases",
"path": "releases"
}
},
"linux": {
"icon": "assets/icon.png",
"target": [
"snap",
"AppImage"
],
"description": "Example",
"category": "Network;Feed",
"publish": {
"provider": "s3",
"bucket": "example-releases",
"path": "releases"
}
}
}
}