-
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.3 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.3 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": "@schemaforge/backend",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"lint": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/multipart": "^8.3.0",
"@fastify/rate-limit": "^10.3.0",
"@langchain/core": "^0.3.0",
"@prisma/client": "^5.22.0",
"bullmq": "^5.12.0",
"dotenv": "^16.4.0",
"fastembed": "^2.0.0",
"fastify": "^4.28.0",
"ioredis": "^5.4.0",
"langchain": "^0.3.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"prom-client": "^15.1.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.13.0",
"@testcontainers/redis": "^10.13.0",
"@types/node": "^20.14.0",
"@types/pg": "^8.11.0",
"@vitest/coverage-v8": "^2.0.0",
"pg": "^8.11.0",
"prisma": "^5.22.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}