-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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": "uniswapv3-staker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn graphql-gen --watch\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"web3-gen": "typechain --target ethers-v5 --out-dir src/types/abis src/config/abis/*.json",
"graphql-gen": "graphql-codegen --config codegen.ts",
"gen": "yarn web3-gen && yarn graphql-gen",
"prestart": "yarn gen",
"predev": "yarn web3-gen"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@rainbow-me/rainbowkit": "^1.0.1",
"@types/node": "18.15.11",
"@types/react": "18.0.34",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"graphql": "^16.6.0",
"jsbi": "^4.3.0",
"next": "13.4.0",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-table": "^7.8.0",
"tailwindcss": "3.3.1",
"tiny-invariant": "^1.3.1",
"typescript": "5.1.3",
"viem": "^0.3.50",
"wagmi": "^1.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.3.0",
"@graphql-codegen/client-preset": "3.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@typechain/ethers-v5": "^10.2.0",
"@types/react-table": "^7.7.14",
"concurrently": "^8.0.1",
"typechain": "^8.1.1"
}
}