-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.97 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"format": "biome check --write ./src/**/*",
"wasm": "wasm-pack build wasm && rm wasm/pkg/.gitignore && rm wasm/pkg/README.md",
"prepare": "husky",
"knip": "knip"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@icons-pack/react-simple-icons": "^13.11.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@vercel/analytics": "^2.0.0",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"elysia": "^1.4.27",
"lucide-react": "^1.0.0",
"motion": "^12.34.4",
"next": "16.2.4",
"next-themes": "^0.4.6",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-hook-form": "^7.71.2",
"recharts": "2.15.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/bun": "^1.3.9",
"@types/node": "^25.3.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"ac-library-js": "^0.1.1",
"husky": "^9.1.7",
"knip": "^6.0.0",
"lint-staged": "^16.3.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"wasm": "workspace:wasm/pkg"
},
"workspaces": [
"wasm/pkg"
],
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}