46 lines
1.4 KiB
JSON
46 lines
1.4 KiB
JSON
{
|
|
"name": "langgraph-python-starter",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:ui\" \"npm run dev:agent\" --names ui,agent --prefix-colors blue,green --kill-others",
|
|
"dev:debug": "LOG_LEVEL=debug npm run dev",
|
|
"dev:agent": "cd agent && npx @langchain/langgraph-cli dev --port 8123 --no-browser",
|
|
"dev:ui": "next dev --turbopack -H 127.0.0.1",
|
|
"build": "next build",
|
|
"start": "next start -H 127.0.0.1",
|
|
"lint": "eslint .",
|
|
"install:agent": "sh ./scripts/setup-agent.sh || scripts\\setup-agent.bat",
|
|
"postinstall": "npm run install:agent"
|
|
},
|
|
"dependencies": {
|
|
"@ag-ui/client": "^0.0.42",
|
|
"@ag-ui/langgraph": "0.0.18",
|
|
"@auth0/nextjs-auth0": "^4.13.2",
|
|
"@copilotkit/react-core": "1.50.0",
|
|
"@copilotkit/react-ui": "1.50.0",
|
|
"@copilotkit/runtime": "1.50.0",
|
|
"next": "^16.0.8",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"openai": "^5.9.0",
|
|
"zod": "^3.24.4"
|
|
},
|
|
"overrides": {
|
|
"openai": "^5.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@langchain/langgraph-cli": "^1.0.4",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"concurrently": "^9.1.2",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.1",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|