-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.51 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.51 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently --names api,frontend --prefix-colors auto \"bun run --cwd apps/api dev\" \"bun run --cwd apps/frontend dev\"",
"dev:api": "bun run --cwd apps/api dev",
"dev:frontend": "bun run --cwd apps/frontend dev",
"dev:sync": "bun run --cwd apps/sync-v2 dev",
"dev:all": "concurrently --names api,frontend,sync --prefix-colors auto \"bun run --cwd apps/api dev\" \"bun run --cwd apps/frontend dev\" \"bun run --cwd apps/sync-v2 dev\"",
"lint:check": "bun run --cwd apps/api lint && bun run --cwd apps/frontend lint",
"lint:safefix": "bun run --cwd apps/api lint:fix && bun run --cwd apps/frontend lint:fix",
"lint:next": "next lint",
"typecheck:frontend": "bun run --cwd apps/frontend typecheck",
"format:check": "bun run --cwd apps/api format:check && bun run --cwd apps/frontend format:check",
"format": "bun run --cwd apps/api format && bun run --cwd apps/frontend format",
"prepare": "husky"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260210.1",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "0.31.0",
"oxlint": "1.46.0",
"oxlint-tsgolint": "0.12.0"
},
"overrides": {
"hono-og@0.0.29": {
"satori": "0.12.2"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx,html,yml,yaml}": "bunx oxfmt"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.9"
}