-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 736 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 736 Bytes
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
{
"name": "@examples/kitchen-sink",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch server/index.ts\"",
"server": "tsx server/index.ts",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@raed667/streaming-ui-primitives": "file:../../",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"express": "^4.18.0",
"concurrently": "^9.0.0",
"marked": "^15.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.4.1",
"@types/express": "^4.17.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/marked": "^6.0.0",
"tsx": "^4.0.0",
"typescript": "^5.8.0",
"vite": "^6.0.0"
}
}