mirror of
https://github.com/langchain-ai/fullstack-chat-server.git
synced 2026-07-20 01:13:32 -04:00
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "react-agent-graph",
|
|
"version": "0.0.1",
|
|
"packageManager": "yarn@1.22.22",
|
|
"description": "A template containing a LangGraph.js ReAct agent.",
|
|
"main": "src/react_agent/graph.ts",
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.test\\.ts$ --testPathIgnorePatterns=\\.int\\.test\\.ts$",
|
|
"test:int": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern=\\.int\\.test\\.ts$",
|
|
"lint": "eslint src",
|
|
"format": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"@langchain/anthropic": "^0.3.12",
|
|
"@langchain/community": "^0.3.27",
|
|
"@langchain/core": "^0.3.37",
|
|
"@langchain/langgraph": "^0.2.43",
|
|
"langchain": "^0.3.14"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.9.1",
|
|
"@tsconfig/recommended": "^1.0.7",
|
|
"@types/jest": "^29.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
"@typescript-eslint/parser": "^5.59.8",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|