-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.78 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": "vite-Dogsbody",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite dev",
"dev": "vite",
"clean": "rm -rf dist",
"build": "tsc && vite build",
"serve": "yarn build && scp -r dist [email protected]:/www/wwwroot/tool && yarn clean",
"view": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet ./",
"prepare": "husky install"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.6.5",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@reduxjs/toolkit": "^1.9.3",
"@vitejs/plugin-legacy": "^4.0.1",
"@walletconnect/ethereum-provider": "1.8",
"@web3-react/coinbase-wallet": "^8.0.34-beta.0",
"@web3-react/core": "8.0.35-beta.0",
"@web3-react/gnosis-safe": "^8.0.7-beta.0",
"@web3-react/metamask": "^8.0.29-beta.0",
"@web3-react/network": "^8.0.27-beta.0",
"@web3-react/types": "^8.0.20-beta.0",
"@web3-react/walletconnect": "^8.0.36-beta.0",
"ahooks": "^3.7.4",
"antd": "^5.2.3",
"axios": "^1.3.4",
"babel-plugin-styled-components-px2vw": "^1.6.0",
"bip39": "^3.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dayjs": "^1.11.7",
"ethereum-hdwallet": "^0.1.2",
"ethers": "^5.6.9",
"eventemitter3": "^5.0.0",
"js-export-excel": "^1.1.4",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-redux": "^8.0.5",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.2",
"redux-localstorage-simple": "^2.5.1",
"styled-components": "^5.3.6",
"use-clipboard-copy": "^0.2.0",
"use-immer": "^0.8.1",
"vconsole": "^3.15.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-imp": "^2.3.1",
"vite-plugin-require": "^1.1.10"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.14.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/rollup-plugin-visualizer": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^4.9.3",
"vite": "4.3.0-beta.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-progress": "^0.0.6",
"vite-plugin-require-transform": "^1.0.12"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"npm run lint"
]
}
}