-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 934 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 934 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "tsx watch src/tests/integration.ts",
"e2e": "tsx watch src/tests/e2e.ts",
"dev": "tsx watch src/server.ts",
"lint": "biome check --write src"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/type-provider-typebox": "^5.1.0",
"@langchain/core": "^0.3.42",
"@langchain/openai": "^0.4.4",
"@sinclair/typebox": "^0.34.30",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.3.19",
"typescript": "^5.8.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.10",
"@types/supertest": "^6.0.2",
"esbuild": "^0.25.1",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"tsx": "^4.19.3"
}
}