-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.47 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.47 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
{
"name": "@ethui/site",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc --noEmit",
"start": "vite start",
"start:prod": "node .output/server/index.mjs",
"lint": "yarn lint:biome && yarn lint:tsc",
"lint:biome": "biome check .",
"lint:tsc": "tsc --noEmit",
"lint:unused": "ts-unused-exports tsconfig.json --excludePathsFromReport='routeTree.gen.ts;loggingMiddleware.tsx;app.config;api.ts;ssr.tsx;__root.tsx'",
"fix": "yarn fix:biome",
"fix:biome": "biome check --write ."
},
"dependencies": {
"@aptabase/web": "^0.4.3",
"@ethui/ui": "^0.0.139",
"@hookform/resolvers": "^5.2.1",
"@mdx-js/react": "^3.1.0",
"@rainbow-me/rainbowkit": "^2.2.4",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/nitro-v2-vite-plugin": "^1.133.3",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-router": "^1.133.3",
"@tanstack/react-router-devtools": "^1.133.3",
"@tanstack/react-router-ssr-query": "^1.133.3",
"@tanstack/react-start": "^1.133.3",
"@tanstack/react-table": "^8.21.3",
"@types/big.js": "^6.2.2",
"autoprefixer": "^10.4.20",
"big.js": "^7.0.1",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.542.0",
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.1",
"react-hot-toast": "^2.5.2",
"tailwind-merge": "^3.0.2",
"tailwindcss": "4.0.11",
"titleize": "^4.0.0",
"viem": "2.x",
"vite-tsconfig-paths": "^5.1.4",
"wagmi": "^2.14.15",
"zod": "^4.1.5",
"zustand": "^5.0.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@mdx-js/rollup": "^3.1.0",
"@tailwindcss/postcss": "^4.0.11",
"@tailwindcss/vite": "^4.0.11",
"@tanstack/router-plugin": "^1.131.3",
"@types/cheerio": "^0.22.35",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.3.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"csstype": "^3.1.3",
"globals": "^16.0.0",
"motion": "^12.4.7",
"postcss": "^8.5.3",
"rollup": "^4.52.4",
"tailwindcss": "^4.0.11",
"ts-unused-exports": "^11.0.1",
"tsc": "^2.0.4",
"typescript": "^5.8.2",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "yarn@4.7.0"
}