forked from MartinPham/smartcontract-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.94 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
{
"name": "@xtools-at/smartcontract-ui",
"version": "0.2.1",
"private": true,
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@mui/icons-material": "^5.1.0",
"@mui/lab": "^5.0.0-alpha.55",
"@mui/material": "latest",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/network-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "^6.2.8",
"@web3-react/walletlink-connector": "^6.2.8",
"clsx": "latest",
"copy-to-clipboard": "^3.3.1",
"immer": "^9.0.6",
"localforage": "^1.10.0",
"loglevel": "^1.8.0",
"md5": "^2.3.0",
"next": "latest",
"notistack": "^2.0.3",
"react": "latest",
"react-dom": "latest",
"react-number-format": "^4.8.0",
"react-qr-reader": "^2.2.1",
"react-syntax-highlighter": "^15.4.5",
"use-immer": "^0.6.0"
},
"scripts": {
"dev": "yarn chainlist:build && (local-ssl-proxy --source 3443 --target 3000) & next",
"build": "next build && next export",
"start": "next start",
"chainlist:build": "node scripts/buildChainList",
"chainlist:update": "git submodule update --init --remote; cd config/chainlist; git pull origin master; cd ../../; yarn chainlist:build",
"explorer": "node scripts/getExplorerInfo && yarn chainlist:build",
"update": "yarn chainlist:update && yarn explorer",
"upload": "bash .ci/release.sh; rm -rf .ci/.yarn; rm .ci/-rf node_modules; rm -r out; rm -r .build; rm -r .release"
},
"devDependencies": {
"@types/md5": "^2.3.1",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/react-syntax-highlighter": "^13.5.2",
"local-ssl-proxy": "^1.3.0",
"node-fetch": "^2.6.1",
"typescript": "latest"
}
}