-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.14 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.14 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
89
90
91
92
93
94
95
{
"name": "@ethui/site",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite dev --port 3000",
"build": "pnpm run gen:sitemap && vite build",
"gen:sitemap": "tsx scripts/generate-sitemap.ts",
"start": "node .output/server/index.mjs",
"lint": "pnpm run lint:biome && pnpm run lint:tsc && pnpm run lint:unused",
"lint:biome": "biome check .",
"lint:tsc": "pnpm --package=typescript dlx tsc --noEmit",
"lint:unused": "ts-unused-exports tsconfig.json --excludePathsFromReport='vite.config.ts;routeTree.gen.ts;loggingMiddleware.tsx;app.config;__root.tsx;router.tsx'",
"fix": "pnpm run fix:biome",
"fix:biome": "biome check --write .",
"gen:seo-images": "tsx scripts/generate-seo-images.ts"
},
"dependencies": {
"@aptabase/react": "^0.4.0",
"@ethui/ui": "^0.0.82",
"@fontsource/source-code-pro": "^5.2.7",
"@hookform/resolvers": "^5.2.2",
"@mdx-js/react": "^3.1.1",
"@rainbow-me/rainbowkit": "^2.2.10",
"@stefanprobst/rehype-extract-toc": "^3.0.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/devtools-vite": "^0.5.0",
"@tanstack/react-devtools": "^0.9.4",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-router": "^1.158.0",
"@tanstack/react-router-devtools": "^1.158.0",
"@tanstack/react-start": "^1.158.0",
"@vitejs/plugin-react": "^5.1.3",
"autoprefixer": "^10.4.24",
"cheerio": "^1.2.0",
"clsx": "^2.1.1",
"lodash-es": "^4.17.23",
"lru-cache": "^11.2.5",
"lucide-react": "^0.506.0",
"nitro": "npm:nitro-nightly@latest",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"redaxios": "^0.5.1",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-class-names": "^2.0.0",
"rehype-github-alert": "^1.0.0",
"rehype-github-alerts": "^4.2.0",
"rehype-github-emoji": "^1.0.0",
"rehype-mdx-import-media": "^1.2.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"simple-icons": "^16.7.0",
"srvx": "^0.11.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "4.0.11",
"titleize": "^4.0.0",
"viem": "^2.45.1",
"vite-tsconfig-paths": "^6.0.5",
"wagmi": "^2.19.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@mdx-js/rollup": "^3.1.1",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/router-plugin": "^1.158.0",
"@types/cheerio": "^1.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.8",
"@types/react": "^19.2.11",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"csstype": "^3.2.3",
"globals": "^16.5.0",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.16",
"motion": "^12.31.0",
"postcss": "^8.5.6",
"rehype-external-links": "^3.0.0",
"rollup": "^4.57.1",
"solid-js": "^1.9.11",
"tailwindcss": "^4.0.11",
"ts-unused-exports": "^11.0.1",
"tsc": "^2.0.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.3"
}
}