forked from maxmaxlabs/cloudmos-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.11 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "akashlytics-deploy",
"version": "0.8.1",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Akashlytics/akashlytics-deploy-tool.git"
},
"description": "Akashlytics deploy tool.",
"author": {
"name": "Akashlytics",
"email": "[email protected]",
"url": "https://www.akashlytics.com/"
},
"main": "public/electron.js",
"homepage": "./",
"scripts": {
"start": "cross-env BROWSER=none react-app-rewired start --scripts-version react-scripts",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"electron-dev": "cross-env ELECTRON_START_URL=http://localhost:3000 electron .",
"build-win": "cross-env GENERATE_SOURCEMAP=false react-app-rewired build && electron-builder --windows",
"build-mac": "cross-env GENERATE_SOURCEMAP=false react-app-rewired build && electron-builder --mac",
"build-linux": "cross-env GENERATE_SOURCEMAP=false react-app-rewired build && electron-builder --linux",
"dist-mac": "cross-env DEBUG=electron-builder electron-builder --mac",
"release": "react-app-rewired build && electron-builder --windows --publish always"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"pluginOptions": {
"electronBuilder": {
"nodeIntegration": true
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@cosmjs/proto-signing": "^0.25.4",
"@cosmjs/stargate": "^0.25.4",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@sentry/electron": "^2.5.0",
"@sentry/react": "^6.7.2",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"date-fns": "^2.22.1",
"electron-google-analytics": "^1.0.2",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.4",
"electron-updater": "^4.3.9",
"json-stable-stringify": "^1.0.1",
"jsrsasign": "^10.2.0",
"nanoid": "^3.1.23",
"node-fetch": "^2.6.1",
"notistack": "^1.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.3",
"react-helmet-async": "^1.0.9",
"react-hook-form": "^7.8.4",
"react-intl": "^5.24.3",
"react-markdown": "^8.0.0",
"react-monaco-editor": "^0.45.0",
"react-qr-code": "^2.0.3",
"react-query": "^3.17.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"semver": "^7.3.5",
"use-state-with-callback": "^2.0.3",
"usehooks-ts": "^2.2.1",
"web-vitals": "^1.1.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"cross-env": "^7.0.3",
"electron": "^12.0.7",
"electron-builder": "^22.10.5",
"electron-notarize": "^1.1.1",
"electron-squirrel-startup": "^1.0.0",
"monaco-editor-webpack-plugin": "^4.1.2",
"react-app-rewired": "^2.1.8"
}
}