-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 761 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 761 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
27
28
{
"name": "@eshttp/repo",
"private": true,
"packageManager": "bun@1.3.2",
"type": "module",
"workspaces": [
"apps/*",
"libs/*"
],
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"format": "turbo run format",
"test": "turbo run test",
"dev:cli": "bun run --filter 'eshttp' dev",
"dev:web": "bun run --filter '@eshttp/web' dev",
"dev:landing": "bun run --filter '@eshttp/web' dev",
"dev:desktop:web": "bun run --filter '@eshttp/desktop' dev",
"dev:app": "bun run --filter '@eshttp/desktop' tauri:dev"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/bun": "^1.3.9",
"turbo": "^2.8.10",
"typescript": "^5.8.2"
}
}