Files
copilotkit__copilotkit/examples/v1/state-machine/package.json
Tyler Slaton f6e0004fbd fix(examples): disable caching
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2026-03-04 16:05:32 -05:00

46 lines
1.1 KiB
JSON

{
"name": "@copilotkit-examples/state-machine",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next"
},
"dependencies": {
"@copilotkit/react-core": "workspace:*",
"@copilotkit/runtime": "workspace:*",
"@copilotkit/react-ui": "workspace:*",
"@copilotkit/runtime-client-gql": "workspace:*",
"clsx": "^1.2.1",
"motion": "^11.18.1",
"next": "14.2.35",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reactflow": "^11.11.4",
"tailwind-merge": "^1.13.2"
},
"nx": {
"targets": {
"build": {
"cache": false
}
}
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}