-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.1 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
{
"name": "be-the-best-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "start http://localhost:3000 && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@walletconnect/web3-provider": "^1.7.8",
"@web3auth/web3auth": "^1.1.1",
"ethers": "^5.6.9",
"magic-sdk": "^8.1.1",
"next": "12.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-moralis": "^1.4.0",
"recharts": "2.1.12",
"web3uikit": "^0.1.169"
},
"devDependencies": {
"@types/node": "18.0.4",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "4.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged "
}
}
}