-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
{
"name": "hackathon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "./node_modules/prettier/bin-prettier.js --check './src/**/*.{ts,tsx,js,json}'",
"prettier:write": "./node_modules/prettier/bin-prettier.js --write ./src/**/*.{ts,tsx,js,json}"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/styles": "^4.11.5",
"@mui/material": "^5.10.4",
"@mui/styled-engine-sc": "^5.10.3",
"@walletconnect/web3-provider": "^1.7.8",
"antd": "^4.22.6",
"bignumber.js": "^9.0.1",
"ethers": "^5.7.0",
"fs": "^0.0.1-security",
"next": "12.3.0",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^9.0.8",
"styled-components": "^5.3.5",
"web3": "^1.7.5",
"web3modal": "^1.9.9"
},
"devDependencies": {
"@types/node": "18.7.16",
"@types/react": "18.0.19",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"dotenv": "^8.2.0",
"eslint": "8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"typescript": "4.8.3"
}
}