-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 765 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 765 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
{
"name": "chat-space",
"version": "1.0.0",
"description": "",
"scripts": {
"clean": "rm -rf node_modules && rm -rf client/node_modules && rm -rf server/node_modules",
"dev:server": "pnpm --prefix server dev",
"dev:client": "pnpm --prefix client dev",
"dev": "concurrently \"pnpm dev:server\" \"pnpm dev:client\"",
"build": "pnpm --prefix client build",
"start": "pnpm --prefix server start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"hono": "^4.6.12",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "^22.10.1",
"concurrently": "^9.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9"
}
}