-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "patchplane-monorepo",
"private": true,
"engines": {
"node": ">=22.19.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "effect-language-service patch",
"dev:client": "cd apps/client && bun --env-file=../../.env.local run dev",
"dev:backend": "bun run --cwd packages/backend dev",
"patchplane": "bun run packages/cli/src/main.ts",
"build:client": "bun run --cwd apps/client build",
"bundle:size:client": "bun scripts/bundle-size-client.ts",
"bundle:check:client": "bun scripts/bundle-size-client.ts --check",
"infra:dev": "bun --bun alchemy dev --env-file .env.local --stage dev",
"infra:plan": "bun --bun alchemy deploy --dry-run --env-file .env.local --stage dev",
"infra:deploy": "bun --bun alchemy deploy --env-file .env.local --stage dev",
"infra:destroy": "bun --bun alchemy destroy --env-file .env.local --stage dev",
"test:backend": "bun run --cwd packages/backend test",
"test:domain": "bun run --cwd packages/domain test",
"test:core": "bun run --cwd packages/core test",
"test:plugins": "bun run --cwd packages/plugins test",
"test:infra-patches": "vitest run test/alchemy-runtime-patches.test.ts",
"smoke:foundation": "bun run --cwd apps/client smoke",
"typecheck": "bun run --cwd packages/domain typecheck && bun run --cwd packages/core typecheck && bun run --cwd packages/plugins typecheck && bun run --cwd packages/cli typecheck && bun run --cwd packages/backend typecheck && bun run --cwd apps/client typecheck && bun run --cwd apps/source-control typecheck && bun run --cwd apps/infra typecheck",
"lint": "oxlint apps packages && bun run --cwd packages/backend lint:convex",
"lint:fix": "oxlint --fix apps packages && bun run --cwd packages/backend lint:convex:fix",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"format": "oxfmt .",
"format:check": "oxfmt --check ."
},
"dependencies": {
"@effect/platform-bun": "4.0.0-beta.90",
"@effect/platform-node": "4.0.0-beta.90",
"@sentry/effect": "^10.62.0",
"alchemy": "^2.0.0-beta.59",
"effect": "4.0.0-beta.90"
},
"devDependencies": {
"@effect/language-service": "^0.86.2",
"@effect/vitest": "4.0.0-beta.90",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"oxlint-tsgolint": "^0.23.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"packageManager": "bun@1.3.10",
"patchedDependencies": {
"@distilled.cloud/cloudflare-runtime@0.11.3": "patches/@distilled.cloud%2Fcloudflare-runtime@0.11.3.patch",
"@distilled.cloud/cloudflare-vite-plugin@0.11.3": "patches/@distilled.cloud%2Fcloudflare-vite-plugin@0.11.3.patch"
}
}