-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "t3s-agent",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=web",
"check": "turbo run format lint check",
"dev": "concurrently --names web,convex --prefix-colors auto \"bun run web\" \"bun run convex\"",
"web": "bun run --cwd apps/web dev",
"convex": "bun run --cwd apps/web convex",
"dev:web": "bun run dev",
"install:web": "cd apps/web && bun install",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"quality": "turbo run lint format",
"quality:fix": "turbo run lint:fix format:fix",
"typecheck": "turbo run typecheck",
"typecheck:web": "turbo run typecheck --filter=web",
"knip": "knip"
},
"devDependencies": {
"@types/node": "^25.5.0",
"concurrently": "^9.2.1",
"knip": "^5.88.1",
"oxfmt": "^0.41.0",
"oxlint": "^1.57.0",
"turbo": "^2.8.20",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10"
}