-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.16 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
{
"name": "ai-workbench-web",
"private": true,
"license": "MIT",
"version": "0.5.6",
"type": "module",
"description": "AI Workbench — workspace management UI (Vite + React + TypeScript).",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"e2e:install": "playwright install chromium --with-deps",
"gen:types": "npm --prefix ../../runtimes/typescript run dump:openapi && openapi-typescript ../../runtimes/typescript/dist/openapi.json -o src/lib/api-types.generated.ts && ../../node_modules/.bin/biome format --write src/lib/api-types.generated.ts"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-slot": "^1.1.1",
"@tanstack/react-query": "^5.101.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lowlight": "^3.3.0",
"lucide-react": "^1.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.81.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.1",
"rehype-highlight": "^7.0.2",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.5.2",
"jsdom": "^29.1.1",
"openapi-typescript": "^7.13.0",
"postcss": "^8.5.16",
"tailwindcss": "^4.0.0",
"typescript": "^6.0.3",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"overrides": {
"picomatch": "^4.0.4",
"brace-expansion": "^2.0.3",
"ip-address": "^10.1.1",
"js-yaml": "^4.2.0"
}
}