forked from leonvanzyl/agentic-coding-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.48 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
{
"name": "agentic-coding-starter-kit",
"version": "1.1.2",
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:ci": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck",
"test:e2e": "playwright test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"setup": "npx tsx scripts/setup.ts",
"env:check": "node -e \"require('./src/lib/env.ts').checkEnv()\" || echo 'Run with tsx: npx tsx -e \"import { checkEnv } from './src/lib/env'; checkEnv();\"'",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:dev": "drizzle-kit push",
"db:reset": "drizzle-kit drop && drizzle-kit push",
"sync-template": "node create-agentic-app/scripts/sync-templates.js"
},
"dependencies": {
"@ai-sdk/react": "^2.0.190",
"@aws-sdk/client-s3": "^3.1067.0",
"@aws-sdk/s3-request-presigner": "^3.1067.0",
"@better-auth/api-key": "^1.6.17",
"@hookform/resolvers": "^5.4.0",
"@openrouter/ai-sdk-provider": "^1.5.4",
"@radix-ui/react-avatar": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-label": "^2.1.9",
"@radix-ui/react-slot": "^1.2.5",
"@react-email/components": "^1.0.12",
"@react-email/render": "^2.0.8",
"ai": "^5.0.188",
"better-auth": "^1.6.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"lucide-react": "^0.539.0",
"next": "16.2.9",
"next-themes": "^0.4.6",
"postgres": "^3.4.9",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-hook-form": "^7.78.0",
"react-markdown": "^10.1.0",
"resend": "^6.12.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^22.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.9",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"shadcn": "^3.8.5",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}