-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.75 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
{
"name": "langchain_backend",
"version": "0.0.1",
"main": "app.ts",
"type": "module",
"repository": "https://github.com/RayelNabie/langchain_backend.git",
"author": "Rayel <rayelnabie@gmail.com>",
"license": "MIT",
"private": true,
"imports": {
"#*": {
"production": "./build/*",
"default": "./src/*"
}
},
"scripts": {
"dev": "nodemon --verbose --config nodemon.json --exec 'node --loader ts-node/esm --no-warnings' src/app.ts",
"start": "node --conditions=production build/app.js",
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint",
"test": "vitest",
"ingest": "node --loader ts-node/esm --no-warnings src/rag/ingest.ts"
},
"dependencies": {
"@langchain/community": "^1.1.27",
"@langchain/core": "^1.1.42",
"@langchain/openai": "^1.4.5",
"@langchain/textsplitters": "^1.0.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"pdf-parse": "1.1.1",
"pg": "^8.20.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/pdf-parse": "^1.1.5",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.0",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}