-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"name": "ai-study-companion-app",
"version": "1.0.0",
"main": "lib/index.js",
"engines": {
"node": "20"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && mkdir -p lib public && cp -r lib/* public/",
"watch": "tsc --watch",
"start": "node lib/index.js",
"dev": "tsc --watch & nodemon lib/index.js",
"serve": "npm run build && firebase emulators:start --only functions",
"deploy": "firebase deploy --only functions",
"clean": "rimraf lib/*"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@langchain/community": "^0.3.16",
"@langchain/core": "^0.3.20",
"@langchain/langgraph": "^0.2.24",
"@langchain/openai": "^0.3.14",
"@langchain/pinecone": "^0.1.3",
"@pinecone-database/pinecone": "^4.0.0",
"@types/multer": "^1.4.12",
"axios": "^1.7.9",
"cors": "^2.8.5",
"csv-parse": "^5.6.0",
"csv-parser": "^3.0.0",
"d3-dsv": "^2.0.0",
"docx": "^9.1.0",
"dotenv": "^16.4.7",
"express": "^4.17.1",
"firebase-admin": "^11.11.1",
"firebase-functions": "^4.9.0",
"langchain": "^0.3.6",
"mammoth": "^1.8.0",
"multer": "^1.4.5-lts.1",
"openai": "^4.73.1",
"pdf-parse": "^1.1.1",
"pdfjs-dist": "^4.9.124",
"tesseract.js": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"typescript": "^4.7.4"
}
}