generated from LimeChain/limeacademy-next-web3-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "next-web3-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 4001",
"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": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/units": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/onboarding": "^1.0.1",
"@mui/material": "^5.10.5",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.8",
"big-number": "^2.0.0",
"bootstrap": "^5.2.1",
"ipfs-http-client": "^58.0.0",
"next": "^12.3.0",
"react": "17.0.2",
"react-bootstrap": "^2.5.0",
"react-dom": "17.0.2",
"react-router-dom": "^6.4.0",
"swr": "^1.0.1"
},
"devDependencies": {
"@typechain/ethers-v5": "^8.0.1",
"@types/node": "^18.7.18",
"@types/react": "^17.0.50",
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"ethers": "^5.5.1",
"typechain": "^6.0.2",
"typescript": "^4.4.4"
}
}