-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.49 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
83
84
85
86
87
88
89
{
"name": "evm-dapp-starter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"lint": "eslint --max-warnings 0 .",
"test": "vitest run",
"storybook": "storybook dev -p 6006",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-query": "^5.59.20",
"@tanstack/react-query-devtools": "^5.59.20",
"@wagmi/core": "^2.14.4",
"bignumber.js": "^9.1.2",
"class-variance-authority": "^0.7.0",
"connectkit": "^1.8.2",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"immer": "^10.1.1",
"jotai": "^2.10.1",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"next-themes": "^0.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-jazzicon": "^1.0.4",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"ts-enum-util": "^4.1.0",
"uni-string": "^2.0.7",
"viem": "^2.21.44",
"wagmi": "^2.12.29",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@next/eslint-plugin-next": "^15.0.3",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/nextjs": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/test": "^8.4.2",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.48",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"storybook": "^8.4.2",
"storybook-dark-mode": "^4.0.2",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"connectkit": "patches/connectkit.patch"
}
}
}