-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "wagmi-tutorial",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write ."
},
"dependencies": {
"@tanstack/react-query": "^5.17.19",
"@web3modal/wagmi": "^4.0.0-alpha.2",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"viem": "^2.5.0",
"wagmi": "^2.5.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.17",
"bufferutil": "^4.0.8",
"encoding": "^0.1.13",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lokijs": "^1.5.12",
"pino-pretty": "^10.3.1",
"postcss": "^8",
"prettier": "^3.2.4",
"supports-color": "^9.4.0",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"utf-8-validate": "^6.0.3"
}
}