generated from tomoima525/typescript-node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "template",
"version": "1.0.0",
"packageManager": "[email protected]",
"type": "module",
"description": "template",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"test": "jest"
},
"author": "tomo",
"license": "MIT",
"devDependencies": {
"@langchain/scripts": "^0.0.10",
"@tsconfig/node18": "18.2.1",
"@types/eslint": "^8.44.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/html-to-text": "^9.0.3",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.6.3",
"prettier": "^3.0.2",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.1.6"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"dependencies": {
"@inquirer/prompts": "^3.1.2",
"@json2csv/plainjs": "^7.0.3",
"@langchain/community": "^0.0.43",
"@langchain/core": "0.1.53",
"@langchain/openai": "^0.0.25",
"airtable": "^0.12.2",
"hnswlib-node": "^2.0.0",
"html-to-text": "^9.0.5",
"langchain": "^0.1.30",
"mongodb": "^6.2.0",
"zod": "^3.22.2"
},
"pnpm": {
"overrides": {
"@langchain/core": "0.1.53",
"zod": "3.22.4"
}
}
}