-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 959 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
31
32
33
34
35
{
"name": "rockburg-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-types": "typechain --target=ethers-v5 --out-dir src/contracts 'src/abi/*.json'",
"postinstall": "npm run generate-types"
},
"dependencies": {
"@walletconnect/web3-provider": "^1.6.5",
"autoprefixer": "^10.3.4",
"ethers": "^5.4.7",
"next": "11.1.2",
"postcss": "^8.3.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "^2.2.15",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@typechain/ethers-v5": "^7.1.0",
"@types/react": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
}
}