-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
{
"name": "next-web3-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"compile-contract-types": "typechain --target ethers-v5 --out-dir './contracts/types' './contracts/*.json'",
"gen:schema": "graphql-codegen",
"postinstall": "yarn compile-contract-types"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@apollo/react-hooks": "^4.0.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",
"autoprefixer": "^10.4.13",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"cspell": "^6.10.1",
"dayjs": "^1.11.7",
"graphql": "^16.6.0",
"ipfs-only-hash": "github:alanshaw/ipfs-only-hash",
"moment": "^2.29.4",
"moralis-v1": "^1.11.0",
"next": "12.1.0",
"nft.storage": "^7.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-loading": "^2.0.3",
"react-nice-avatar": "^1.2.4",
"react-use": "^17.4.0",
"swr": "^2.0.0",
"tailwindcss": "^3.2.4",
"wagmi": "^0.8.10"
},
"devDependencies": {
"@ethersproject/abi": "^5.1.3",
"@ethersproject/providers": "^5.1.3",
"@graphql-codegen/cli": "^1.8.3",
"@graphql-codegen/typescript-operations": "^1.8.3",
"@graphql-codegen/typescript-resolvers": "^1.8.3",
"@typechain/ethers-v5": "^9.0.0",
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"@wagmi/cli": "^0.1.3",
"eslint": "8.8.0",
"eslint-config-next": "12.0.9",
"ethers": "^5.7.0",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
}
}