-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 916 Bytes
/
package.json
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
{
"name": "express-typescript-project",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@azure/data-tables": "^13.3.0",
"@langchain/core": "^0.3.22",
"@langchain/langgraph": "^0.2.27",
"@langchain/openai": "^0.3.14",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs-node": "^4.22.0",
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"@types/nodemon": "^1.19.6",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"langchain": "^0.3.6",
"nodemon": "^3.0.2",
"rimraf": "^4.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.17"
}
}