-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 871 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
{
"name": "langchain-streaming",
"version": "1.0.0",
"main": "server.js",
"author": "Lorenzo Rivosecchi <[email protected]>",
"private": true,
"type": "module",
"scripts": {
"dev": "nodemon --watch server.ts --exec \"ts-node --esm server.ts\"",
"build": "tsc --outDir ./dist/",
"start": "node ./dist/server.js",
"client": "node ./dist/client.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"langchain": "^0.0.96",
"react-markdown": "^8.0.7",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"daisyui": "^3.1.5",
"dotenv": "^16.3.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}