-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.02 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
100
{
"name": "kevan.ar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:with-gen": "pnpm run gen && next build",
"gen": "ts-node ./scripts/generate.ts",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@calcom/embed-react": "^1.5.3",
"@datastax/astra-db-ts": "^1.4.1",
"@hookform/resolvers": "^3.9.1",
"@langchain/community": "^0.3.59",
"@langchain/core": "^0.3.80",
"@langchain/openai": "^0.3.17",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.1.0",
"ai": "^3.4.33",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"gray-matter": "^4.0.3",
"langchain": "^0.3.37",
"lucide-react": "^0.441.0",
"next": "^15.5.18",
"next-themes": "^0.3.0",
"openai": "^4.104.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.77.0",
"react-markdown": "^9.0.1",
"resend": "^4.8.0",
"sonner": "^1.5.0",
"sugar-high": "^0.7.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.5.18",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.19",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"pnpm": {
"overrides": {
"axios": "1.16.1",
"@eslint/eslintrc>ajv": "6.14.0",
"@eslint/eslintrc>js-yaml": "4.1.1",
"@langchain/community>js-yaml": "4.1.1",
"@typescript-eslint/parser": "8.60.0",
"@typescript-eslint/typescript-estree>minimatch": "9.0.7",
"anymatch>picomatch": "2.3.2",
"eslint>ajv": "6.14.0",
"eslint>js-yaml": "4.1.1",
"eslint>minimatch": "3.1.4",
"eslint-plugin-import>minimatch": "3.1.4",
"eslint-plugin-jsx-a11y>minimatch": "3.1.4",
"eslint-plugin-react>minimatch": "3.1.4",
"flat-cache>flatted": "3.4.2",
"form-data": "4.0.5",
"glob": "10.5.0",
"glob>minimatch": "9.0.7",
"gray-matter>js-yaml": "3.14.2",
"js-cookie": "3.0.8",
"jws": "3.2.3",
"langchain>js-yaml": "4.1.1",
"langsmith": "0.7.3",
"minimatch@3.1.4>brace-expansion": "1.1.13",
"micromatch>picomatch": "2.3.2",
"next>postcss": "8.5.15",
"playwright": "1.60.0",
"postcss-load-config>yaml": "2.8.3",
"readdirp>picomatch": "2.3.2",
"react-markdown>mdast-util-to-hast": "13.2.1",
"ts-node>diff": "4.0.4"
}
}
}