-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
{
"name": "dapp-frontend-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f ./.env next dev",
"build": "env-cmd -f ./.env.production next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier './src' --write",
"commit": "git-cz",
"wagmi": "wagmi generate",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ethersproject/providers": "^5.7.2",
"@reduxjs/toolkit": "^1.9.7",
"@tailwindcss/forms": "^0.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@wagmi/chains": "^1.8.0",
"@wagmi/cli": "^1.5.2",
"@wagmi/core": "^1.4.5",
"@web3modal/ethereum": "^2.7.1",
"@web3modal/react": "^2.7.1",
"@web3modal/wagmi": "^3.1.0",
"bignumber.js": "^9.1.2",
"env-cmd": "^10.1.0",
"ethers": "^6.8.0",
"focus-visible": "^5.2.0",
"framer-motion": "^10.16.4",
"i18next": "^23.6.0",
"lodash": "^4.17.21",
"next": "13.5.6",
"next-i18next": "^14.0.3",
"next-seo": "^6.1.0",
"react": "^18",
"react-dom": "^18",
"react-i18next": "^13.3.1",
"react-redux": "^8.1.3",
"react-toastify": "^9.1.3",
"react-use": "^17.4.0",
"redux-persist": "^6.0.0",
"styled-components": "^6.1.0",
"swr": "^2.2.4",
"viem": "^1.16.6",
"wagmi": "^1.4.5"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"postcss": "^8",
"prettier": "^2.8.1",
"tailwindcss": "^3",
"typescript": "^5"
}
}