-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
70
71
72
73
74
{
"name": "supabase-ssr-auth-example",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"generate-types": "npx supabase gen types typescript --project-id YOUR_PROJECT_ID --schema public > types_db.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.5",
"@ai-sdk/openai": "^1.0.9",
"@ai-sdk/openai-compatible": "^0.1.0",
"@date-fns/tz": "^1.2.0",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.4",
"@mui/material": "^6.1.4",
"@mui/material-nextjs": "^6.1.4",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.6",
"@upstash/ratelimit": "^2.0.2",
"@upstash/redis": "^1.34.3",
"ai": "^4.0.20",
"cheerio": "^1.0.0",
"date-fns": "^4.1.0",
"exponential-backoff": "^3.1.1",
"highlight.js": "^11.10.0",
"js-tiktoken": "^1.0.16",
"next": "^15.0.2",
"node-html-markdown": "^1.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-intersection-observer": "^9.13.1",
"react-markdown": "^9.0.1",
"rehype-highlight": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"server-only": "^0.0.1",
"swr": "^2.2.5",
"uuid": "^11.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.16.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.13.0",
"supabase": "^2.1.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.0"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none"
}
}