-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.31 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
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
75
76
77
78
79
{
"name": "api.usul.ai",
"type": "module",
"packageManager": "pnpm@9.6.0",
"scripts": {
"postinstall": "pnpm db:generate",
"dev": "pnpm with-env tsup-node --watch --onSuccess \"pnpm start\"",
"start": "node dist/src/index.js",
"build": "pnpm with-env tsup-node",
"db:generate": "prisma generate",
"db:deploy": "prisma migrate deploy",
"db:migrate": "prisma migrate dev",
"db:seed": "pnpm run:script scripts/seed/index.ts",
"with-env": "dotenv --",
"run:script": "pnpm dlx tsx --env-file=.env",
"emails:build": "email build",
"emails:dev": "email dev",
"emails:export": "email export"
},
"prisma": {
"schema": "prisma/schema"
},
"dependencies": {
"@ai-sdk/azure": "^1.3.23",
"@aws-sdk/client-s3": "^3.709.0",
"@azure/search-documents": "^12.1.0",
"@bull-board/api": "^6.5.3",
"@bull-board/hono": "^6.5.3",
"@cantoo/pdf-lib": "^2.2.4",
"@hono/node-server": "^1.13.1",
"@hono/swagger-ui": "^0.5.2",
"@hono/zod-openapi": "^1.1.3",
"@hono/zod-validator": "^0.3.0",
"@langfuse/otel": "^4.6.1",
"@langfuse/tracing": "^4.6.1",
"@openiti/markdown-parser": "^1.2.2",
"@opentelemetry/auto-instrumentations-node": "^0.60.1",
"@opentelemetry/sdk-node": "^0.202.0",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "6.10.1",
"@react-email/components": "0.1.0",
"@react-email/render": "^1.1.2",
"@t3-oss/env-core": "^0.10.1",
"ai": "^4.3.19",
"better-auth": "^1.2.9",
"bullmq": "^5.28.1",
"cohere-ai": "^7.17.1",
"hono": "^4.6.3",
"ioredis": "^5.4.1",
"langfuse": "^3.37.6",
"lru-cache": "^11.0.1",
"nanoid": "^5.0.9",
"prisma-json-types-generator": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^4.6.0",
"string-strip-html": "^13.4.8",
"typesense": "^2.0.3",
"uuid": "^11.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^20.11.17",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"airtable": "^0.12.2",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"openai": "^4.72.0",
"prisma": "^6.10.1",
"react-email": "4.0.16",
"slugify": "^1.6.6",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.1.6"
}
}