-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.26 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.26 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "next-chat-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "npx drizzle-kit migrate && next build",
"start": "next start",
"lint": "next lint",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/stripe/webhook",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate",
"db:start": "docker run --name pegnaai -e POSTGRES_PASSWORD=pegnaai -e POSTGRES_USER=pegnaai -e POSTGRES_DB=pegnaai -p 5432:5432 -d postgres",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.9",
"@ai-sdk/google": "^1.2.10",
"@ai-sdk/openai": "^1.3.9",
"@auth0/nextjs-auth0": "^4.4.2",
"@aws-sdk/client-s3": "^3.782.0",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/language-data": "^6.5.1",
"@codemirror/view": "^6.36.5",
"@hookform/resolvers": "^5.0.1",
"@neondatabase/serverless": "^1.0.0",
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-collapsible": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.7",
"@radix-ui/react-progress": "^1.1.3",
"@radix-ui/react-radio-group": "^1.2.4",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.4",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-tooltip": "^1.2.0",
"@sentry/nextjs": "^9.15.0",
"@sentry/profiling-node": "^9.15.0",
"@tanstack/react-query": "^5.72.2",
"@uiw/react-codemirror": "^4.23.10",
"ai": "^4.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"drizzle-orm": "^0.41.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.487.0",
"marked": "^15.0.8",
"next": "15.3.0",
"next-themes": "^0.4.6",
"pg": "^8.14.1",
"react": "^19.1.0",
"react-codemirror-merge": "^4.23.10",
"react-dom": "^19.1.0",
"react-hook-form": "^7.55.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"react-textarea-autosize": "^8.5.9",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.3",
"stripe": "^18.0.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@faker-js/faker": "^9.6.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/pg": "^8.11.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"drizzle-kit": "^0.30.6",
"eslint": "^9",
"eslint-config-next": "15.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5"
}
}