-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ssv-staking-dashboard",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "concurrently --raw --hide 1 \"vite\" \"pnpm generate:hooks:watch\"",
"generate:hooks": "node scripts/generate-hook-exports.cjs",
"generate:hooks:watch": "node scripts/generate-hook-exports.cjs --watch",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"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": {
"@hookform/resolvers": "^5.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@rainbow-me/rainbowkit": "2.2.10",
"@supabase/supabase-js": "^2.103.1",
"@tanstack/react-query": "5.90.12",
"@xstate/react": "^6.1.0",
"buffer": "^6.0.3",
"canvas-confetti": "^1.9.4",
"clsx": "2.1.1",
"lodash": "^4.17.23",
"lottie-react": "^2.4.1",
"lucide-react": "0.446.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.72.0",
"react-icons": "^5.5.0",
"react-use": "^17.6.0",
"recharts": "^3.7.0",
"sonner": "1.7.4",
"tailwind-merge": "2.6.0",
"valtio": "^2.3.1",
"viem": "2.43.3",
"wagmi": "2.19.5",
"xstate": "^5.30.0",
"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/lodash": "^4.17.24",
"@types/node": "20.19.27",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "^4.3.1",
"abitype": "^1.2.3",
"autoprefixer": "10.4.23",
"concurrently": "^9.2.1",
"eslint": "9.39.2",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-tailwindcss": "3.18.2",
"jsdom": "24.1.3",
"postcss": "8.5.6",
"tailwindcss": "3.4.19",
"ts-morph": "^27.0.2",
"typescript": "5.9.3",
"vite": "^5.4.21",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "4.0.17"
},
"pnpm": {
"onlyBuiltDependencies": ["bufferutil", "esbuild", "keccak", "utf-8-validate"]
}
}