-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.27 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
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
{
"name": "Pi-Hole",
"description": "Electron wrapper for Pi-Hole dasboard",
"version": "3.0.0",
"private": true,
"homepage": "./",
"main": "public/main.js",
"author": {
"name": "Salman Rameli",
"email": "salmanrameli@gmail.com"
},
"build": {
"appId": "com.salmanrameli.electron-pihole",
"productName": "Electron Pi-Hole",
"copyright": "Copyright © 2020 ${author}",
"asar": false,
"extends": null,
"files": [
"assets/*",
"build/**/*",
"node_modules/**/*",
"public/*",
"src/*",
"electron-wait-react.js",
"Procfile"
],
"directories": {
"buildResources": "build",
"output": "dist"
},
"mac": {
"icon": "assets/icon.icns",
"type": "distribution",
"target": [
"dmg"
],
"category": "public.app-category.utilities"
},
"linux": {
"icon": "assets/icon_1024x1024x32.png",
"executableName": "Pi-Hole",
"target": [
"deb", "AppImage"
],
"synopsis": "Electron wrapper for Pi-Hole dashboard"
}
},
"dependencies": {
"cross-env": "^7.0.2",
"electron-is-dev": "^1.2.0",
"electron-store": "^5.2.0",
"jquery": "^3.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-electron-web-view": "^2.0.1",
"react-scripts": "3.4.1"
},
"scripts": {
"react-start": "react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test --env=jsdom",
"react-eject": "react-scripts eject",
"electron-build": "electron-builder",
"release": "yarn react-build && electron-builder --publish=always",
"build": "yarn react-build && yarn electron-build",
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^5.2.0",
"electron": "^9.1.0",
"electron-builder": "^22.7.0",
"foreman": "^3.0.1",
"typescript": "^3.9.7",
"wait-on": "^5.1.0"
}
}