This repository has been archived by the owner on May 24, 2023. It is now read-only.
generated from mirshko/next-web3-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.69 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
58
{
"name": "next-web3-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"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": {
"@chakra-ui/icons": "^2.0.12",
"@chakra-ui/react": "^2.4.1",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.2",
"@ethersproject/units": "^5.5.0",
"@ethersproject/wallet": "^5.5.0",
"@metamask/detect-provider": "^1.2.0",
"@metamask/onboarding": "^1.0.1",
"@tanstack/react-query": "^4.19.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"alchemy-sdk": "^2.2.5",
"axios": "^1.2.0",
"framer-motion": "^6",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"next": "^13.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.6.0",
"react-image-viewer-hook": "^0.3.1",
"react-jdenticon": "^1.0.0",
"slate": "^0.86.0",
"slate-history": "^0.86.0",
"slate-react": "^0.86.0",
"swr": "^1.2.0",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@typechain/ethers-v5": "^9.0.0",
"@types/node": "^18.0.0",
"@types/react": "^18.0.25",
"eslint": "8.8.0",
"eslint-config-next": "12.0.9",
"ethers": "^5.5.3",
"typechain": "^7.0.0",
"typescript": "^4.5.5"
}
}