-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.29 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
80
81
{
"name": "api",
"version": "1.0.14",
"description": "",
"author": "",
"repository": "",
"main": "index.ts",
"private": true,
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts | pino-pretty",
"build": "tsup",
"start": "node dist/index.js",
"clean": "rimraf dist coverage",
"lint": "biome check src/",
"lint:fix": "biome check src/ --fix",
"format": "biome format src/",
"test": "vitest run",
"prepare": "husky",
"db:setup": "tsx src/database/scripts/setupDatabase.ts",
"db:generate": "npx prisma generate --schema=src/database/prisma/schema.prisma",
"db:migrate": "npx prisma migrate dev --schema=src/database/prisma/schema.prisma",
"db:deploy": "npx prisma migrate deploy --schema=src/database/prisma/schema.prisma",
"db:studio": "npx prisma studio --schema=src/database/prisma/schema.prisma"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.0.0",
"@langchain/anthropic": "^0.3.12",
"@langchain/community": "^0.3.27",
"@langchain/core": "^0.3.36",
"@langchain/openai": "^0.4.2",
"@prisma/client": "^6.5.0",
"ai": "^4.1.54",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"langchain": "^0.3.14",
"pg": "^8.13.3",
"pino": "^9.4.0",
"pino-http": "^10.0.0",
"prisma": "^6.5.0",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pino-pretty": "^13.0.0",
"rimraf": "^6.0.0",
"supertest": "^7.0.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite-tsconfig-paths": "^5.0.0",
"vitest": "^2.0.0"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
"biome check --apply --no-errors-on-unmatched"
]
},
"tsup": {
"entry": [
"src",
"!src/**/__tests__/**",
"!src/**/*.test.*"
],
"splitting": false,
"sourcemap": true,
"clean": true
}
}