-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·99 lines (99 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·99 lines (99 loc) · 3.11 KB
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
{
"name": "web-dao",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"postinstall": "node ./husky_prepare.js",
"format": "prettier --write '**/*.{js,jsx,ts,tsx}' --config .prettierrc",
"precommit": "lint-staged"
},
"dependencies": {
"@binance-chain/bsc-connector": "1.0.0",
"@blocto/blocto-connector": "0.2.3",
"@coinbase/wallet-sdk": "3.5.4",
"@metamask/detect-provider": "2.0.0",
"@walletconnect/web3-provider": "1.8.0",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "6.2.13",
"@web3-react/walletlink-connector": "^6.2.14",
"@web3modal/ethereum": "2.0.0-beta.3",
"@web3modal/react": "2.0.0-beta.3",
"clsx": "^1.2.1",
"dayjs": "^1.11.4",
"ethers": "^5.7.2",
"framer-motion": "^6.5.1",
"lodash": "^4.17.21",
"next": "12.2.3",
"next-i18next": "^11.3.0",
"next-seo": "^5.14.0",
"next-sitemap": "^3.1.30",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-device-detect": "2.2.2",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-query": "^3.39.2",
"styled-components": "^5.3.6",
"styled-system": "5.1.5",
"web3": "1.8.0",
"web3modal": "1.9.9"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@next/eslint-plugin-next": "^12.2.3",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/lodash": "4.14.188",
"@types/node": "18.6.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.15",
"@types/react-dom": "18.0.8",
"@types/styled-components": "5.1.26",
"@types/styled-system": "5.1.15",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fs": "^0.0.1-security",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.0.9",
"prettier": "^2.7.1",
"sass": "^1.54.0",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write '**/*.{js,jsx,ts,tsx}' --config .prettierrc"
]
}
}