generated from mirshko/next-web3-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "next-web3-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile-contract-types": "typechain --target ethers-v5 --out-dir './contracts/types' './contracts/*.json'",
"postinstall": "yarn compile-contract-types"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.2",
"@ethersproject/units": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/onboarding": "^1.0.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.2.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"eslint": "8.8.0",
"eslint-config-next": "12.0.9",
"ethers": "^5.5.3",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
}
}