chore: Updated build command
f5671f13
1 file(s) · +26 −36
| 1 | 1 | { |
|
| 2 | - | "name": "bhvr", |
|
| 3 | - | "version": "0.3.0", |
|
| 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:server": "cd server && bun run build", |
|
| 21 | - | "build": "bun run build:shared && bun run build:client", |
|
| 22 | - | "postinstall": "bun run build:shared && bun run build:server" |
|
| 23 | - | }, |
|
| 24 | - | "keywords": [ |
|
| 25 | - | "bun", |
|
| 26 | - | "hono", |
|
| 27 | - | "react", |
|
| 28 | - | "vite", |
|
| 29 | - | "monorepo" |
|
| 30 | - | ], |
|
| 31 | - | "devDependencies": { |
|
| 32 | - | "bun-types": "latest", |
|
| 33 | - | "concurrently": "^9.1.2" |
|
| 34 | - | }, |
|
| 35 | - | "peerDependencies": { |
|
| 36 | - | "typescript": "^5.0.0" |
|
| 37 | - | } |
|
| 2 | + | "name": "bhvr", |
|
| 3 | + | "version": "0.3.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": ["./server", "./client", "./shared"], |
|
| 9 | + | "scripts": { |
|
| 10 | + | "dev:client": "cd client && bun run dev", |
|
| 11 | + | "dev:server": "cd server && bun run dev", |
|
| 12 | + | "dev:shared": "cd shared && bun run dev", |
|
| 13 | + | "dev": "concurrently \"bun run dev:shared\" \"bun run dev:server\" \"bun run dev:client\"", |
|
| 14 | + | "build:client": "cd client && bun run build", |
|
| 15 | + | "build:shared": "cd shared && bun run build", |
|
| 16 | + | "build:server": "cd server && bun run build", |
|
| 17 | + | "build": "bun run build:shared && bun run build:server && bun run build:client", |
|
| 18 | + | "postinstall": "bun run build:shared && bun run build:server" |
|
| 19 | + | }, |
|
| 20 | + | "keywords": ["bun", "hono", "react", "vite", "monorepo"], |
|
| 21 | + | "devDependencies": { |
|
| 22 | + | "bun-types": "latest", |
|
| 23 | + | "concurrently": "^9.1.2" |
|
| 24 | + | }, |
|
| 25 | + | "peerDependencies": { |
|
| 26 | + | "typescript": "^5.0.0" |
|
| 27 | + | } |
|
| 38 | 28 | } |