Files
copilotkit__copilotkit/examples/showcases/cloudplot/package.json
2026-08-27 06:42:01 -07:00

49 lines
1.3 KiB
JSON

{
"name": "cloudplot",
"version": "0.1.0",
"private": true,
"nx": {
"targets": {
"typecheck": {
"dependsOn": ["^build"]
}
}
},
"scripts": {
"dev": "concurrently \"pnpm dev:ui\" \"pnpm dev:agent\" --names ui,agent --prefix-colors blue,green --kill-others",
"dev:debug": "LOG_LEVEL=debug pnpm dev",
"dev:agent": "cd agent && uv run --env-file .env uvicorn server:app --host 0.0.0.0 --port 8123 --reload",
"dev:ui": "next dev --turbopack",
"build": "next build",
"start": "next start --hostname 0.0.0.0",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@copilotkit/react-core": "workspace:*",
"@copilotkit/runtime": "workspace:*",
"framer-motion": "^12.23.25",
"lucide-react": "^0.555.0",
"next": "16.2.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"jsdom": "^26.1.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.3"
}
}