-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.86 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.86 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
80
81
82
83
84
85
86
87
88
{
"name": "web3-toolkit",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"dev:hot": "vite --host --force",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest",
"test:run": "NODE_OPTIONS='--max-old-space-size=8192' vitest run",
"test:coverage": "NODE_OPTIONS='--max-old-space-size=8192' vitest run --coverage",
"perf:debug-matrix": "node scripts/perf/debug-stress-matrix.mjs",
"qa:live:matrix": "node scripts/perf/live-qa-matrix.mjs",
"probe:testnets": "node scripts/testnet-probe.js",
"simulator:server": "node scripts/simulator-bridge.mjs",
"preview": "vite preview",
"check:inline-copy": "node scripts/check-inline-copy.mjs"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@rainbow-me/rainbowkit": "^2.2.8",
"@shazow/whatsabi": "^0.22.2",
"@solidity-parser/parser": "^0.20.2",
"@tanstack/react-query": "^5.87.4",
"@wagmi/core": "^2.20.3",
"@xyflow/react": "^12.10.2",
"animejs": "^4.3.5",
"axios": "^1.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dompurify": "^3.3.1",
"ethers": "^5.7.2",
"framer-motion": "^12.38.0",
"monaco-editor": "^0.55.1",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-helmet-async": "^3.0.0",
"react-resizable-panels": "^4.3.0",
"react-router-dom": "^6.28.1",
"react-window": "^2.2.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"viem": "^2.37.3",
"wagmi": "^2.16.9",
"ws": "^8.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vercel/node": "^5.7.6",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"happy-dom": "^20.9.0",
"jsdom": "^27.0.1",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^5.4.19",
"vitest": "^1.6.1"
}
}