-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 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
{
"name": "typesense-explorer",
"version": "0.1.0",
"description": "A web UI for exploring, searching, and inspecting documents in Typesense collections",
"type": "module",
"scripts": {
"dev": "bun run --watch src/server/index.ts",
"dev:client": "vite",
"build": "vite build",
"build:server": "bun build src/server/index.ts --outdir dist --target bun",
"start": "NODE_ENV=production bun run dist/index.js",
"preview": "vite preview",
"screenshots": "bun run scripts/take-screenshots.ts"
},
"dependencies": {
"@hono/node-server": "^1.12.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@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",
"@uiw/react-json-view": "^2.0.0-alpha.25",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"hono": "^4.6.0",
"lucide-react": "^0.446.0",
"react": "^18.3.1",
"react-day-picker": "^9.14.0",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typesense": "^1.8.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/bun": "^1.1.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"playwright": "^1.58.2",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.6"
}
}