This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "ionexviewer",
"description": "IONEX Viewer by Altun Ismailov",
"author": "matador",
"version": "0.2.7",
"private": true,
"dependencies": {
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"cross-env": "6.0.2",
"d3": "^5.14.2",
"d3-scale": "^3.2.1",
"electron-is-dev": "1.1.0",
"electron-log": "^3.0.8",
"heatmap.js": "^2.0.5",
"jsheatmap": "^1.2.2",
"plotly.js": "^1.54.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.15",
"react-dom": "^16.8.6",
"react-globe.gl": "^2.4.4",
"react-plotly.js": "^2.4.0",
"react-simple-maps": "^1.0.0-beta.0",
"react-tabs": "^3.1.0",
"simpleheat": "^0.4.0",
"update-electron-app": "^1.2.0"
},
"devDependencies": {
"concurrently": "4.1.2",
"electron": "6.0.11",
"electron-builder": "^21.2.0",
"prettier": "^1.4.4",
"react-scripts": "3.1.2",
"wait-on": "3.3.0"
},
"build": {
"publish": {
"provider": "github"
}
},
"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",
"build32": "yarn react-build && yarn electron-build --ia32",
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron .\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}