generated from mirshko/next-web3-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 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
59
{
"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": {
"@ethersproject/bignumber": "^5.4.1",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.4",
"@ethersproject/units": "^5.4.0",
"@ethersproject/wallet": "^5.4.0",
"@headlessui/react": "^1.7.0",
"@heroicons/react": "^1.0.5",
"@metamask/onboarding": "^1.0.1",
"@tailwindcss/forms": "^0.3.4",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"ansi-regex": "^6.0.1",
"aws-sdk": "^2.1023.0",
"axios": "^0.22.0",
"chrome-aws-lambda": "^10.1.0",
"elliptic": "^6.5.4",
"faunadb": "^4.5.2",
"glob-parent": "^6.0.2",
"html2canvas": "^1.3.2",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.32",
"multiselect-react-dropdown": "^2.0.25",
"next": "11.1.1",
"puppeteer": "^11.0.0",
"puppeteer-core": "^11.0.0",
"react": "17.0.2",
"react-cool-img": "^1.2.12",
"react-dom": "17.0.2",
"react-tooltip": "^4.2.21",
"retry-axios": "^2.6.0",
"swr": "^1.0.1",
"web3": "^1.7.4"
},
"devDependencies": {
"@typechain/ethers-v5": "^7.0.1",
"@types/react": "^17.0.19",
"autoprefixer": "^10.3.7",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"ethers": "^5.4.5",
"postcss": "^8.3.9",
"tailwindcss": "^2.2.16",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
}
}