forked from xhash-com/xhash-auto-staking-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.55 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
{
"name": "xhash-auto-staking-client",
"productName": "xhash-auto-staking-client",
"version": "1.0.0",
"description": "GUI application for eth2.0 staking on XHash",
"main": "./build/electron/index.js",
"author": "XHash",
"license": "GPL-3.0",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.11",
"@types/tmp": "^0.2.2",
"bufferutil": "^4.0.7",
"electron": "^18.2.0",
"electron-builder": "^22.14.5",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"utf-8-validate": "^5.0.10",
"webpack": "^5.64.3",
"webpack-cli": "^4.9.1"
},
"scripts": {
"build": "webpack --config webpack.react.config.js --config webpack.electron.config.js",
"build:watch": "webpack --config webpack.react.config.js --config webpack.electron.config.js --watch",
"buildcli": "src/scripts/bundle_proxy_linux.sh",
"buildcliwin": "src/scripts/bundle_proxy_win.bat",
"start": "electron ./build/electron/index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"@chainsafe/bls": "^2.0.0",
"@chainsafe/ssz": "^0.6.7",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@walletconnect/client": "^1.7.8",
"@walletconnect/qrcode-modal": "^1.7.8",
"antd": "^4.23.6",
"axios": "^0.21.1",
"compare-versions": "^3.6.0",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"jsencrypt": "3.2.1",
"qrcode.react": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"shebang-loader": "^0.0.1",
"style-loader": "^3.0.0",
"styled-components": "^5.3.0",
"typeface-roboto": "^1.1.13",
"uglifyjs-webpack-plugin": "^2.2.0",
"web3-utils": "^1.7.0"
},
"resolutions": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9"
},
"build": {
"appId": "com.xhash",
"productName": "xhash-auto-staking-client",
"files": [
"build/**/*",
"package.json"
],
"extraFiles": [
"build/bin/*",
"build/word_lists/*",
"static/xhash.png"
],
"mac": {
"category": "public.app-category.utilities"
},
"linux": {
"target": "AppImage",
"icon": "static/xhash.png"
},
"win": {
"target": "portable",
"icon": "static/xhash.ico"
}
}
}