-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "vercel-ai-sdk-examples",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.8.0",
"@google-ai/generativelanguage": "^1.1.0",
"@supabase/supabase-js": "^2.38.3",
"@types/node": "^20.8.8",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"ai": "2.2.18",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-config-next": "^13.5.6",
"langchain": "^0.0.170",
"next": "13.5.6",
"openai": "^4.13.0",
"postcss": "^8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"replicate": "^0.20.1",
"stream": "^0.0.2",
"tailwindcss": "^3.3.4",
"typescript": "^5.2.2"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "3.0.3"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,mdx}": "prettier --write"
}
}