-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.26 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": "ethereum-boilerplate",
"version": "2.0.0",
"private": true,
"homepage": "https://eth-boilerplate.vercel.app/",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"deploypage": "gh-pages -d .next"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.8",
"@chakra-ui/react": "^2.2.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@moralisweb3/eslint-config": "^1.0.0",
"@web3uikit/core": "^0.1.5",
"@web3uikit/icons": "^0.1.5",
"axios": "^0.27.2",
"ethers": "^5.6.9",
"framer-motion": "^6",
"moralis": "^2.0.3",
"next": "12.2.5",
"next-auth": "^4.10.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"wagmi": "^0.6.4"
},
"devDependencies": {
"@types/node": "18.7.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "8.22.0",
"eslint-plugin-etc": "^2.0.2",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}