-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
52
53
54
55
56
57
58
{
"name": "ssv-staking-dashboard",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck && pnpm format:check"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@rainbow-me/rainbowkit": "2.2.10",
"@tanstack/react-query": "5.90.12",
"canvas-confetti": "^1.9.4",
"clsx": "2.1.1",
"lottie-react": "^2.4.1",
"lucide-react": "0.446.0",
"next": "16.1.5",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.5.0",
"react-use": "^17.6.0",
"recharts": "^3.7.0",
"sonner": "1.7.4",
"tailwind-merge": "2.6.0",
"viem": "2.43.3",
"wagmi": "2.19.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "20.19.27",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"autoprefixer": "10.4.23",
"eslint": "9.39.2",
"eslint-config-next": "16.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-tailwindcss": "3.18.2",
"jsdom": "24.1.3",
"postcss": "8.5.6",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"vitest": "4.0.17"
}
}