forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
{
"name": "@copilotkit/showcase-shell-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "cd ../scripts && npm install --no-audit --no-fund --silent",
"predev": "tsx ../scripts/generate-registry.ts && tsx ../scripts/probe-docs.ts",
"dev": "next dev --turbopack --port 3002",
"prebuild": "tsx ../scripts/generate-registry.ts && tsx ../scripts/probe-docs.ts",
"build": "next build",
"start": "next start --port 3002",
"pretest": "tsx ../scripts/generate-registry.ts && tsx ../scripts/probe-docs.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:visual": "playwright test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "^15.0.0",
"pocketbase": "^0.21.5",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^29.0.2",
"postcss": "^8.5.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.4"
}
}