-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.23 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
46
47
48
49
50
51
{
"name": "homework",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore .",
"format:fix": "pnpm format --write",
"fix": "pnpm format:fix && pnpm lint:fix",
"types": "tsc --noEmit --incremental",
"types:watch": "tsc --noEmit --incremental --watch"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.2.3",
"@tanstack/react-query": "^5.66.0",
"next": "14.2.7",
"react": "^18",
"react-dom": "^18",
"viem": "2.x",
"wagmi": "^2.14.10"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"postcss": "^8",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"peerDependencies": {
"tsx": "*"
}
}