-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
30 lines (30 loc) · 882 Bytes
/
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
{
"name": "wagmi-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "APP_ENV=development PORT=8080 next dev ",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typechain": "typechain --out-dir src/config/abi/types --target=ethers-v5 \"src/config/abi/*.json\""
},
"dependencies": {
"@rainbow-me/rainbowkit": "^0.5.0",
"@typechain/ethers-v5": "^10.1.0",
"ethers": "^5.7.0",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"typechain": "^8.1.0",
"wagmi": "^0.6.4"
},
"devDependencies": {
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"typescript": "4.8.2"
}
}