-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "whiteboard-canvas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev-frontend": "pnpm i && next dev --turbopack",
"dev-agent": "cd agent && poetry install && poetry run langgraph dev --host localhost --port 8123 --no-browser",
"dev": "pnpx concurrently \"pnpm dev-frontend\" \"pnpm dev-agent\" --names ui,agent --prefix-colors blue,green",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@copilotkit/react-core": "^1.6.0",
"@copilotkit/react-ui": "^1.6.0",
"@copilotkit/runtime": "^1.6.0",
"@heroicons/react": "^2.2.0",
"@langchain/openai": "^0.4.5",
"class-validator": "^0.14.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.475.0",
"next": "15.2.0-canary.73",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-spreadsheet": "^0.9.5",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"eslint": "^9",
"eslint-config-next": "15.2.0-canary.73",
"tailwindcss": "^4",
"typescript": "^5"
},
"packageManager": "[email protected]"
}