-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.72 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
{
"name": "agent-studio",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/devhimanshuu/Agent-Studio"
},
"homepage": "https://agent-studio-v1.vercel.app",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "prisma db seed",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"prepare": "husky"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.11.0",
"@hookform/resolvers": "^3.10.0",
"@langchain/langgraph": "^1.4.8",
"@prisma/client": "^6.2.1",
"@tanstack/react-query": "^5.64.2",
"clsx": "^2.1.1",
"lucide-react": "^0.474.0",
"next": "^15.1.6",
"next-themes": "^0.4.4",
"pino": "^9.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"tailwind-merge": "^3.0.1",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.6",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.1",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"wait-on": "^8.0.1"
}
}