-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
{
"name": "pipelines",
"private": true,
"type": "module",
"scripts": {
"start": "dotenv -e ./.env -- node dist/src/index.js",
"postinstall": "pnpm generate",
"generate": "prisma generate",
"dev": "pnpm with-env tsup-node --watch --onSuccess \"node dist/src/index.js\"",
"build": "pnpm with-env tsup-node",
"clean": "rm -rf node_modules",
"lint": "eslint",
"format": "prettier --check . --ignore-path ./.gitignore",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ./.env --",
"run:script": "pnpm tsx --env-file=.env"
},
"prisma": {
"schema": "prisma/schema"
},
"dependencies": {
"@ai-sdk/azure": "^1.1.9",
"@aws-sdk/client-s3": "^3.651.0",
"@azure/search-documents": "^12.1.0",
"@bull-board/api": "^5.21.1",
"@bull-board/hono": "^5.21.1",
"@hono/node-server": "^1.12.0",
"@hono/zod-validator": "^0.4.1",
"@openiti/markdown-parser": "^1.2.2",
"@prisma/client": "^6.10.1",
"@t3-oss/env-core": "^0.10.1",
"ai": "^4.1.26",
"bullmq": "^5.10.3",
"hono": "^4.5.1",
"ioredis": "^5.4.1",
"llamaindex": "^0.9.2",
"lru-cache": "^11.0.0",
"node-vibrant": "3.2.1-alpha.1",
"openai": "^4.53.2",
"prisma-json-types-generator": "^3.0.4",
"puppeteer-core": "^22.4.0",
"slugify": "^1.6.6",
"string-strip-html": "^13.4.8",
"tinypool": "^1.0.2",
"typesense": "^1.7.2",
"zod": "^3.23.8",
"dotenv-cli": "^7.4.2"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.9",
"eslint": "^9.7.0",
"eslint-plugin-import": "^2.29.1",
"inquirer": "^9.2.15",
"prettier": "^3.3.3",
"prisma": "^6.10.1",
"tsup": "^8.0.2",
"tsx": "^3.12.7",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1"
},
"engines": {
"node": ">=22.12"
},
"packageManager": "pnpm@9.15.4"
}