-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "langchain-playground",
"version": "0.0.1",
"description": "A LangChain playground using TypeScript",
"main": "./dist/index.js",
"private": true,
"scripts": {
"prepare": "husky",
"start": "node dist/index.js",
"dev": "ts-node -r dotenv/config -r tsconfig-paths/register ./src/index.ts | pino-pretty",
"dev:watch": "nodemon",
"dev:script": "ts-node -r dotenv/config -r tsconfig-paths/register",
"build": "rm -rf dist && tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json && chmod 755 ./dist/index.js",
"clean": "rm -rf ./dist/",
"lint": "eslint ./",
"lint:fix": "npm run lint --fix",
"format": "prettier --config .prettierrc.js --write .",
"test": "jest --coverage --logHeapUsage --detectOpenHandles",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisleekr/langchain-playground.git"
},
"keywords": [
"LangChain",
"TypeScript"
],
"author": "Chris Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisleekr/langchain-playground/issues"
},
"homepage": "https://github.com/chrisleekr/langchain-playground#readme",
"dependencies": {
"@fastify/compress": "^8.0.1",
"@fastify/cors": "^10.0.2",
"@fastify/helmet": "^13.0.1",
"@fastify/rate-limit": "^10.2.2",
"@fastify/type-provider-typebox": "^5.1.0",
"@langchain/community": "^0.3.27",
"@langchain/core": "^0.3.36",
"@langchain/groq": "^0.1.3",
"@langchain/langgraph": "^0.2.41",
"@langchain/ollama": "^0.1.5",
"@langchain/openai": "^0.4.2",
"@langchain/redis": "^0.1.0",
"@sinclair/typebox": "^0.34.14",
"chromadb": "1.10.4",
"config": "3.3.12",
"dotenv": "16.4.7",
"fastify": "^5.2.1",
"http-status-codes": "2.3.0",
"ioredis": "5.4.2",
"langchain": "^0.3.13",
"pdf-parse": "1.1.1",
"pino": "9.6.0",
"uuid": "11.0.5"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@jest/globals": "^29.7.0",
"@types/config": "3.3.5",
"@types/jest": "29.5.14",
"@types/node": "22.12.0",
"@types/pino": "7.0.5",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.3",
"nodemon": "3.1.9",
"pino-pretty": "13.0.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3"
},
"lint-staged": {
"**/*": "npm run format",
"**/*.{js,ts}": "npm run lint:fix"
},
"engines": {
"node": "22"
},
"volta": {
"node": "22"
}
}