-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 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
{
"name": "patchplane",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:client": "bun run --cwd apps/client dev",
"dev:backend": "bun run --cwd packages/backend dev",
"build:client": "bun run --cwd apps/client build",
"test:backend": "bun run --cwd packages/backend test",
"test:domain": "bun run --cwd packages/domain test",
"typecheck": "bun run --cwd packages/domain typecheck && bun run --cwd packages/backend typecheck && bun run --cwd packages/backend typecheck:convex && bun run --cwd apps/client typecheck",
"lint": "oxlint . && bun run --cwd packages/backend lint:convex",
"lint:fix": "oxlint --fix . && bun run --cwd packages/backend lint:convex:fix",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"format": "oxfmt .",
"format:check": "oxfmt --check ."
},
"dependencies": {
"effect": "3.21.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.5.0",
"oxfmt": "latest",
"oxlint": "latest",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.10"
}