This repository has been archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "sentinel",
"version": "0.3.3",
"main": "./electron/index.js",
"homepage": "./",
"description": "Sentinel desktop and web client.",
"author": {
"name": "Sentinel",
"email": "support.desktop@sentinel.co",
"url": "https://sentinel.co"
},
"private": false,
"dependencies": {
"electron-log": "^4.3.5",
"electron-updater": "^4.3.9"
},
"devDependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@ramonak/react-progress-bar": "^3.1.0",
"async": "^3.2.0",
"axios": "^0.21.1",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"bootstrap": "^4.6.0",
"electron": "^13.0.1",
"electron-builder": "^22.10.5",
"env-cmd": "^10.1.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-sort-exports": "^0.4.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-download-link": "^2.3.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-simple-maps": "^2.3.0",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0"
},
"scripts": {
"build:web": "react-scripts build",
"start:web": "env-cmd -f .env.development react-scripts start",
"build:desktop": "GENERATE_SOURCEMAP=false react-scripts build && NODE_ENV=production node build.js",
"start:desktop": "GENERATE_SOURCEMAP=false react-scripts build && NODE_ENV=production electron .",
"build:desktop:development": "react-scripts build && node build.js",
"start:desktop:development": "react-scripts build && electron ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}