-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
43
44
45
{
"name": "simple-chatapp",
"version": "1.0.0",
"type": "module",
"description": "A simple chat application with Droid SDK",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch server/server.ts",
"dev:client": "vite --port 5173",
"start": "tsx server/server.ts",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"tools:check": "tsx scripts/check-droid-tools.ts"
},
"dependencies": {
"@factory/droid-sdk": "^0.2.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use-websocket": "^4.13.0",
"uuid": "^10.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vite": "^5.4.0",
"vitest": "^3.1.0"
}
}