-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.04 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.04 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
{
"name": "hiveboard",
"module": "src/index.ts",
"type": "module",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"start": "bun run build:api && bun run build:web && bun --env-file=.env run packages/api/dist/index.js",
"build:api": "bun run --filter '@hiveboard/api' build",
"dev": "bun --env-file=.env run --filter '*' dev",
"dev:api": "bun --env-file=.env run --filter api dev",
"dev:web": "bun --env-file=.env run --filter web dev",
"build:web": "bun run --filter '@hiveboard/web' build",
"tsc:api": "bunx tsc --noEmit -p packages/api/tsconfig.json",
"tsc:web": "bunx tsc --noEmit -p packages/web/tsconfig.json",
"tsc": "bun run tsc:api && bun run tsc:web",
"test": "bun test",
"fmt": "bunx biome check --fix .",
"lint": "bunx biome lint .",
"check": "bun run lint && bun run fmt && bun run test && bun run tsc && bun run build:web"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/bun": "1.3.11"
},
"peerDependencies": {
"typescript": "5.9.3"
}
}