-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.22 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
{
"name": "ai-vector-db-per-tenant",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"db:generate": "drizzle-kit generate --config=./app/lib/db/config.ts",
"db:migrate": "drizzle-kit migrate --config=./app/lib/db/config.ts",
"db:studio": "drizzle-kit studio --config=./app/lib/db/config.ts",
"format": "bunx biome format --write .",
"lint": "bunx biome lint --write .",
"start": "PORT=3000 remix-serve ./build/server/index.js ",
"typecheck": "tsc",
"vector-db-api:generate": "bunx openapi-typescript https://neon.tech/api_spec/release/v2.json -o ./app/lib/vector-db/api-schema.ts",
"vector-db:generate": "drizzle-kit generate --config=./app/lib/vector-db/config.ts",
"vector-db:migrate": "bun run ./migrate.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.629.0",
"@aws-sdk/s3-request-presigner": "^3.629.0",
"@langchain/community": "^0.2.27",
"@langchain/core": "^0.2.23",
"@langchain/openai": "^0.2.6",
"@radix-ui/react-avatar": "^1.1.0",
"@remix-run/node": "^2.12.0",
"@remix-run/react": "^2.12.0",
"@remix-run/serve": "^2.12.0",
"@tanstack/react-query": "^5.51.23",
"@upstash/ratelimit": "^2.0.1",
"@upstash/redis": "^1.34.0",
"ai": "^3.3.7",
"canvas": "^2.11.2",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.33.0",
"drizzle-zod": "^0.5.1",
"isbot": "^4.1.0",
"nanoid": "^5.0.7",
"openapi-fetch": "^0.11.1",
"postgres": "^3.4.4",
"react": "^18.2.0",
"react-aria-components": "^1.3.1",
"react-dom": "^18.2.0",
"react-resizable-panels": "^2.0.23",
"remix-auth": "^3.7.0",
"remix-auth-google": "^2.0.0",
"remix-utils": "^7.6.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"unpdf": "^0.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@remix-run/dev": "^2.10.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.24.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.1.4",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=20.0.0"
}
}