-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 Bytes
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
{
"name": "jjhub",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --filter '@jjhub/server' dev",
"build": "bun run --filter '*' build",
"build:server": "bun run --filter '@jjhub/server' build",
"build:cli": "bun run --filter '@jjhub/cli' build",
"test:e2e": "bun run --filter '@jjhub/e2e-cli' test",
"sqlc": "sqlc generate",
"check": "bun run --filter '*' check",
"lint": "echo 'no linter configured yet'",
"build:all": "bun run scripts/build-all.ts",
"build:desktop": "bun run scripts/build-desktop.ts",
"release": "bun run scripts/build-all.ts && bun run scripts/build-desktop.ts",
"clean": "rm -rf apps/*/dist packages/*/dist dist"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.8"
}
}