-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 976 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
37
38
39
40
41
42
43
44
45
{
"name": "userstoryenhancer",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start": "func start",
"test": "jest"
},
"dependencies": {
"@azure/functions": "^4.0.0-alpha.7",
"@langchain/core": "~0.1.45",
"@langchain/openai": "^0.0.21",
"dotenv": "^16.3.1",
"langchain": "^0.1.28"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.11.5",
"jest": "^29.6.2",
"jest-mock-extended": "^3.0.5",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"resolutions": {
"@langchain/core": "~0.1.45"
},
"overrides": {
"@langchain/core": "~0.1.45"
},
"pnpm": {
"overrides": {
"@langchain/core": "~0.1.45"
}
},
"main": "dist/src/functions/*.js",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}