-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.18 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
41
42
{
"name": "chat-agent",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"stop": "pkill -f \"tsx watch src/backend/index.ts\" && pkill -f vite",
"dev:backend": "tsx watch src/backend/index.ts",
"dev:frontend": "vite",
"build": "vite build && tsc -p tsconfig.backend.json",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@types/node": "^25.9.1",
"express": "^4.21.0",
"highlight.js": "^11.11.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-window": "^2.2.7",
"react-window-infinite-loader": "^2.0.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/express": "^5.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.0.0",
"jsdom": "^27.0.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
}
}