-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
46
47
48
49
{
"name": "jusstudy",
"version": "0.5.1",
"description": "A monorepo template built with Bun, Hono, Vite, and React",
"author": "Steve Simkins",
"license": "MIT",
"homepage": "https://github.com/stevedylandev/bhvr",
"packageManager": "bun@1.2.4",
"workspaces": [
"./server",
"./client",
"./shared"
],
"scripts": {
"dev": "turbo dev",
"dev:client": "turbo dev --filter=client",
"dev:server": "turbo dev --filter=server",
"build": "turbo build",
"build:client": "turbo build --filter=client",
"build:server": "turbo build --filter=server",
"deploy:cf": "turbo build && wrangler deploy --minify",
"lint": "turbo lint",
"type-check": "turbo type-check",
"test": "turbo test",
"postinstall": "turbo build --filter=shared --filter=server"
},
"keywords": [
"bun",
"hono",
"react",
"vite",
"monorepo",
"turbo"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20260116.0",
"bun-types": "latest",
"turbo": "^2.7.4",
"wrangler": "^4.59.2"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"better-auth": "^1.4.13",
"hono": "^4.11.4",
"zod": "^4.3.5"
}
}