forked from coleam00/Archon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.05 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
{
"name": "@archon/web",
"version": "0.4.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"test": "bun test src/lib/ && bun test src/stores/ && bun test src/hooks/ && bun test src/components/ && bun test src/experiments/console/",
"generate:types": "openapi-typescript http://localhost:3090/api/openapi.json -o src/lib/api.generated.d.ts"
},
"dependencies": {
"@dagrejs/dagre": "^2.0.4",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-virtual": "^3.0.0",
"@xyflow/react": "^12.10.1",
"better-auth": "~1.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"escape-string-regexp": "^5.0.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.563.0",
"mdast-util-find-and-replace": "^3.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-gfm": "^3.0.0",
"mdast-util-gfm-autolink-literal": "^2.0.0",
"mdast-util-gfm-footnote": "^2.0.0",
"mdast-util-gfm-strikethrough": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-gfm-task-list-item": "^2.0.0",
"mdast-util-newline-to-break": "^2.0.0",
"mdast-util-to-markdown": "^2.0.0",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.0",
"react-resizable-panels": "^4",
"react-router": "^7.0.0",
"rehype-highlight": "^7.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "4",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/d3-hierarchy": "^3.1.7",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"openapi-typescript": "^7.13.0",
"shadcn": "^3.8.4",
"tailwindcss": "^4.0.0",
"typescript": "^5.3.0",
"vite": "^6.0.0"
}
}