forked from SOPT-AI-25SS/week2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "tutorial",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "next dev",
"ingest": "ts-node src/ingest.ts",
"query": "ts-node src/query.ts",
"lint": "eslint src --ext .ts",
"test": "echo 'no tests'"
},
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"dependencies": {
"@ai-sdk/react": "^1.2.9",
"@google/genai": "^0.10.0",
"@langchain/core": "^0.3.49",
"@langchain/textsplitters": "^0.1.0",
"@llamaindex/google": "^0.2.4",
"@llamaindex/openai": "^0.3.4",
"@llamaindex/qdrant": "^0.0.4",
"@qdrant/js-client-rest": "^1.14.0",
"dotenv": "^16.5.0",
"llamaindex": "^0.10.2",
"next": "^14.1.0",
"pdfjs-dist": "^4.1.392",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.3"
},
"devDependencies": {
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.2",
"eslint-plugin-unused-imports": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}