-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1013 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1013 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
30
31
32
33
34
35
36
37
{
"name": "compwordle",
"version": "0.3.1",
"description": "A monorepo template built with Bun, Hono, Vite, and React",
"author": "Steve Simkins",
"license": "MIT",
"homepage": "https://github.com/stevedylandev/bhvr",
"workspaces": [
"./server",
"./client",
"./shared"
],
"scripts": {
"dev:client": "cd client && bun run dev",
"dev:server": "cd server && bun run dev",
"dev:shared": "cd shared && bun run dev",
"dev": "concurrently \"bun run dev:shared\" \"bun run dev:server\" \"bun run dev:client\"",
"build:client": "cd client && bun run build",
"build:shared": "cd shared && bun run build",
"build:server": "cd server && bun run build",
"build": "bun run build:shared && bun run build:server && bun run build:client"
},
"keywords": [
"bun",
"hono",
"react",
"vite",
"monorepo"
],
"devDependencies": {
"bun-types": "latest",
"concurrently": "^9.1.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}