-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.33 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
{
"name": "alan-demo-test",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "NODE_ENV=production rsbuild build",
"build:rsdoctor": "RSDOCTOR=true rsbuild build",
"check": "biome check --write",
"dev": "rsbuild dev --open && cargo run",
"format": "biome format --write",
"preview": "rsbuild preview",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-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-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-spring/web": "^10.0.3",
"@simplewebauthn/browser": "^13.2.2",
"@tanstack/react-query": "^5.90.10",
"@tanstack/react-router": "^1.139.0",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.1",
"cmdk": "^1.1.1",
"ky": "^1.14.0",
"lucide-react": "^0.555.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.1",
"react-hotkeys-hook": "^5.2.1",
"react-resizable-panels": "^3.0.6",
"react-use-measure": "^2.1.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@rsbuild/core": "^1.6.4",
"@rsbuild/plugin-react": "^1.4.2",
"@rsdoctor/rspack-plugin": "^1.3.11",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/router-plugin": "^1.139.0",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "biome check --write --no-errors-on-unmatched .",
"**/*.rs": [
"sh -c 'cargo clippy --fix --allow-dirty --allow-staged -q'",
"git add ."
]
}
}