-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "canvas-browser",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:client\"",
"dev:client": "vite",
"dev:server": "node server/index.mjs",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:smoke": "vitest run App.smoke.test.tsx"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"dotenv": "^16.6.1",
"express": "^5.1.0",
"lucide-react": "^0.556.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-markdown": "^10.1.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^2.1.8"
}
}