-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 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
50
51
52
53
{
"name": "task-manager",
"version": "0.4.0",
"description": "A full-stack task management application built with Bun, Hono, and React, demonstrating shared types and clean API boundaries.",
"author": {
"name": "David Moriarty",
"url": "https://davidmoriarty.dev"
},
"license": "MIT",
"homepage": "https://davidmoriarty.dev/projects/task-manager",
"repository": {
"type": "git",
"url": "https://github.com/davidmoriarty/task-manager"
},
"keywords": [
"bun",
"hono",
"react",
"vite",
"monorepo",
"turbo"
],
"packageManager": "bun@1.2.15",
"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",
"lint": "biome lint .",
"format": "biome format . --write",
"type-check": "turbo type-check",
"test": "turbo test",
"postinstall": "turbo build --filter=shared --filter=server"
},
"dependencies": {
"hono": "^4.11.7"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"bun-types": "latest",
"turbo": "^2.5.5"
},
"peerDependencies": {
"typescript": "^5.7.3"
}
}