-
Notifications
You must be signed in to change notification settings - Fork 644
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "ai-getting-started",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-embeddings-pinecone": "node src/scripts/indexBlogs.mjs",
"generate-embeddings-supabase": "node src/scripts/indexBlogPGVector.mjs"
},
"dependencies": {
"@arcjet/next": "^1.0.0-alpha.13",
"@clerk/nextjs": "^5.1.4",
"@headlessui/react": "^1.7.15",
"@pinecone-database/pinecone": "^2.2.2",
"@supabase/supabase-js": "^2.25.0",
"@tailwindcss/forms": "^0.5.7",
"ai": "^2.1.3",
"autoprefixer": "10.4.19",
"dotenv": "^16.4.5",
"hnswlib-node": "^1.4.2",
"langchain": "^0.0.100",
"next": "14.2.3",
"postcss": "8.4.38",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-github-btn": "^1.4.0",
"replicate": "^0.9.3"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.2.14",
"@types/node": "20.14.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "8.56.0",
"eslint-config-next": "14.2.3",
"tailwindcss": "3.4.4",
"typescript": "5.4.5"
}
}