-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.34 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
{
"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.4.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@moralisweb3/next": "^2.9.0",
"@reservoir-labs/sdk": "^0.1.3",
"@web3uikit/core": "^0.1.5",
"@web3uikit/icons": "^0.1.5",
"eslint-config-next": "^13.0.6",
"ethers": "^5.6.9",
"framer-motion": "^6",
"moralis": "^2.9.0",
"next": "^13.0.6",
"next-auth": "^4.18.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"wagmi": "^0.9.2"
},
"devDependencies": {
"@moralisweb3/eslint-config": "^1.0.1",
"@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"
}
}