-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.96 KB
/
package.json
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
{
"name": "ask-poddy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"populate": "npx tsx scripts/populate.ts",
"search": "npx tsx scripts/search.ts",
"text-to-embedding": "npx tsx scripts/text-to-embedding.ts",
"developer": "npx tsx scripts/developer.ts",
"chunks": "npx tsx scripts/chunks.ts"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.20",
"@langchain/community": "^0.2.6",
"@langchain/openai": "^0.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"ai": "^3.1.26",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"convict": "^6.2.4",
"dotenv": "^16.4.5",
"hnswlib-node": "^3.0.0",
"langchain": "^0.2.5",
"lucide-react": "^0.383.0",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"rehype": "^13.0.1",
"rehype-parse": "^9.0.0",
"rehype-remark": "^10.0.0",
"rehype-stringify": "^10.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.4"
},
"devDependencies": {
"@types/convict": "^6.1.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-config-xo": "^0.45.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"zod": "^3.23.8"
}
}