-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.27 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
76
77
78
79
80
{
"name": "web",
"version": "2026.5.31",
"private": true,
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"gen:docs": "node scripts/gen-docs.mjs",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:bdd": "tsx node_modules/@cucumber/cucumber/bin/cucumber.js",
"test:bdd:install": "playwright install --with-deps chromium"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@composio/core": "^0.13.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-alert-dialog": "^1.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.9",
"@tailwindcss/typography": "^0.5.19",
"better-auth": "^1.6.20",
"central-icons": "npm:@central-icons-react/round-outlined-radius-2-stroke-2@^1.1.246",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cron-parser": "^5.6.0",
"cronstrue": "^3.14.0",
"fflate": "^0.8.3",
"lucide-react": "^1.21.0",
"next": "16.2.9",
"pg": "^8.21.0",
"react": "19.2.7",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cucumber/cucumber": "^13.0.0",
"@playwright/test": "^1.60.0",
"@pollyjs/adapter-fetch": "^6.0.7",
"@pollyjs/core": "^6.0.6",
"@pollyjs/persister-fs": "^6.0.6",
"@tailwindcss/postcss": "^4",
"@types/node": "^26",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.7",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"playwright": "^1.60.0",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^6",
"vite": "^8.0.16",
"vitest": "^4.1.7"
},
"pnpm": {
"overrides": {
"postcss@<8.5.10": ">=8.5.10",
"js-yaml@<4.2.0": ">=4.2.0",
"@babel/core@<7.29.6": ">=7.29.6",
"hono@<4.12.25": ">=4.12.25"
}
}
}