-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "bridgeback",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"typecheck": "tsc --noEmit",
"start": "next start",
"lint": "eslint",
"test": "vitest run --exclude tests/e2e/**",
"test:e2e": "playwright test",
"verify": "npm run typecheck && npm run lint && npm test && npm run build"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@clerk/nextjs": "^7.5.17",
"@xyflow/react": "^12.11.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.42.1",
"lucide-react": "^1.24.0",
"next": "16.2.10",
"openai": "^6.46.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.13.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.10"
},
"overrides": {
"postcss": "^8.5.10"
}
}