-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "netstat",
"description": "Simple netstat popup docked in tray",
"author": "peshka",
"version": "0.0.1",
"private": true,
"dependencies": {
"cross-env": "5.1.6",
"electron-is-dev": "0.3.0",
"electron-log": "^2.2.6",
"react": "16.4.0",
"react-dom": "16.4.0",
"axios": "^0.18.0",
"copy-to-clipboard": "^3.1.0"
},
"devDependencies": {
"concurrently": "3.5.1",
"electron": "2.0.2",
"electron-builder": "^20.15.1",
"prettier": "^1.4.4",
"react-scripts": "1.1.4",
"wait-on": "2.1.0"
},
"main": "public/electron.js",
"homepage": "./",
"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 .\""
}
}