-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.66 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
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "electron/electron-starter.js",
"homepage": "./",
"scripts": {
"electron-dev": "cross-env ELECTRON_START_URL=http://localhost:5000 electron .",
"prod": "electron .",
"start": "nf start",
"build": "electron-builder",
"react-start": "cross-env BROWSER=none react-scripts start",
"react-build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"dependencies": {
"cross-env": "^6.0.3",
"d3-scale": "^3.2.0",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-compound-slider": "^2.4.0",
"react-dom": "^16.12.0",
"react-scripts": "3.2.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.1",
"simple.logger": "^2.0.1",
"telnet-client": "^1.2.3"
},
"devDependencies": {
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"foreman": "^3.0.1"
},
"build": {
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
}
},
"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"
]
}
}