| 1 | { |
| 2 | "name": "bhvr", |
| 3 | "version": "0.1.1", |
| 4 | "description": "A monorepo template built with Bun, Hono, Vite, and React", |
| 5 | "author": "Steve Simkins", |
| 6 | "license": "MIT", |
| 7 | "homepage": "https://github.com/stevedylandev/bhvr", |
| 8 | "workspaces": [ |
| 9 | "./server", |
| 10 | "./client", |
| 11 | "./shared" |
| 12 | ], |
| 13 | "scripts": { |
| 14 | "dev:client": "cd client && bun run dev", |
| 15 | "dev:server": "cd server && bun run dev", |
| 16 | "dev:shared": "cd shared && bun run dev", |
| 17 | "dev": "concurrently \"bun run dev:shared\" \"bun run dev:server\" \"bun run dev:client\"", |
| 18 | "build:client": "cd client && bun run build", |
| 19 | "build:shared": "cd shared && bun run build", |
| 20 | "build": "bun run build:shared && bun run build:client", |
| 21 | "postinstall": "bun run build:shared" |
| 22 | }, |
| 23 | "keywords": [ |
| 24 | "bun", |
| 25 | "hono", |
| 26 | "react", |
| 27 | "vite", |
| 28 | "monorepo" |
| 29 | ], |
| 30 | "devDependencies": { |
| 31 | "bun-types": "latest", |
| 32 | "concurrently": "^9.1.2" |
| 33 | }, |
| 34 | "peerDependencies": { |
| 35 | "typescript": "^5.0.0" |
| 36 | } |
| 37 | } |