-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
{
"name": "vite-Dogsbody",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite dev",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --fix --quiet ./",
"prepare": "husky install"
},
"dependencies": {
"@ethersproject/address": "^5.6.1",
"@ethersproject/constants": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/providers": "^5.6.8",
"@reduxjs/toolkit": "^1.9.3",
"@vitejs/plugin-legacy": "^4.0.1",
"@web3-react/abstract-connector": "^6.0.7",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"ahooks": "^3.7.4",
"antd": "^5.4.0",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"ethers": "^5.6.9",
"eventemitter3": "^5.0.0",
"events": "^3.3.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.2",
"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",
"web3modal": "^1.9.8"
},
"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",
"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.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-progress": "^0.0.6"
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"npm run lint"
]
}
}