-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.38 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
{
"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": {
"@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",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.8",
"alchemy-sdk": "^2.2.3",
"axios": "^1.2.0",
"moment": "^2.29.4",
"next": "12.0.2",
"primeflex": "^3.3.0",
"primeicons": "^6.0.1",
"primereact": "^8.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-moment": "^1.1.2",
"react-router-dom": "^6.4.3",
"sass": "^1.56.1",
"swr": "^1.0.1"
},
"devDependencies": {
"@typechain/ethers-v5": "^8.0.1",
"@types/react": "^17.0.34",
"dotenv-webpack": "^8.0.1",
"eslint": "7.32.0",
"eslint-config-next": "12.0.2",
"ethers": "^5.5.1",
"typechain": "^6.0.2",
"typescript": "^4.4.4"
}
}