-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nextjs-chakra-dapp",
"description": "A template web3 Dapp based on nextjs and chakra-ui.",
"author": "Andreas Bigger <[email protected]>",
"private": false,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.5",
"@chakra-ui/react": "^1.4.2",
"@chakra-ui/theme-tools": "1.1.2",
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"@ensdomains/react-ens-address": "^0.0.30",
"@metamask/jazzicon": "^2.0.0",
"@walletconnect/web3-provider": "^1.6.5",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletconnect-connector": "^6.2.4",
"autoprefixer": "^10.3.4",
"classnames": "^2.3.1",
"debounce": "^1.2.1",
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"framer-motion": "^4.0.3",
"logrocket": "^2.1.1",
"material-react-toastify": "^1.0.1",
"next": "latest",
"react": "^17.0.2",
"react-console-emulator": "^5.0.1",
"react-dom": "^17.0.2",
"react-i18next": "^11.12.0",
"styled-components": "^5.3.1",
"web3": "^1.5.3",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.1",
"@types/node": "^14.6.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.4",
"prettier": "^2.4.0",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"typescript": "4.3.2"
},
"prettier": {
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 1000
}
}
]
}
}