-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "admcp",
"version": "1.0.0",
"description": "Next.js + tRPC full-stack application with MCP integration",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "npx drizzle-kit migrate",
"auth:migrate": "npx @better-auth/cli migrate",
"auth:generate": "npx @better-auth/cli generate"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"@tanstack/react-query": "^5.0.0",
"@trpc/client": "^11.0.0",
"@trpc/next": "^11.0.0",
"@trpc/react-query": "^11.0.0",
"@trpc/server": "^11.0.0",
"better-auth": "^1.3.27",
"drizzle-orm": "0.39.3",
"next": "^15.0.0",
"pg": "^8.11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@better-auth/cli": "^1.3.27",
"@types/node": "^20.10.6",
"@types/pg": "^8.15.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"drizzle-kit": "0.31.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}