-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.17 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
61
62
63
{
"name": "gbfm",
"version": "2.65.4",
"sideEffects": false,
"private": true,
"scripts": {
"dev": "sst dev --stage=dev --verbose",
"refresh": "sst refresh --stage=dev",
"deploy": "sst deploy --stage=dev",
"deploy:prod": "sst deploy --stage=prod",
"gen": "cd vps && sst shell drizzle-kit generate",
"release": "semantic-release",
"typecheck": "tsgo --noEmit && bun --filter='*' typecheck",
"test": "cd packages/core && bun run test && cd ../theme && bun run test && cd ../../apps/vps && bun run test",
"lint": "oxlint apps/*/src packages infra '*.{js,ts,tsx,jsx}' --no-error-on-unmatched-pattern",
"lint:fix": "oxlint apps/*/src packages infra '*.{js,ts,tsx,jsx}' --fix --no-error-on-unmatched-pattern",
"format": "oxfmt apps/*/src packages infra '*.{js,ts,tsx,jsx,json,css}' --write --no-error-on-unmatched-pattern",
"format:check": "oxfmt apps/*/src packages infra '*.{js,ts,tsx,jsx,json,css}' --check --no-error-on-unmatched-pattern",
"check": "bun run format && bun run lint:fix",
"oxc:ci": "bun run format:check && bun run lint",
"precommit": "bun run check && bun run typecheck",
"ci": "bun run oxc:ci && bun run typecheck && bun run test && cd apps/www && bun run build",
"prepare": "effect-language-service patch",
"init:lefthook": "lefthook install"
},
"dependencies": {
"@effect/cli": "0.75.2",
"@effect/platform": "0.96.2",
"effect": "4.0.0-beta.93",
"gray-matter": "4.0.3",
"sst": "4.15.2",
"vitest": "4.1.8",
"zod": "4.4.3"
},
"devDependencies": {
"@effect/language-service": "0.86.4",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.8",
"@tsconfig/bun": "1.0.10",
"@typescript/native-preview": "7.0.0-dev.20260612.1",
"lefthook": "2.1.9",
"madge": "8.0.0",
"oxfmt": "0.54.0",
"oxlint": "1.69.0",
"semantic-release": "25.0.5",
"typescript": "6.0.3"
},
"overrides": {
"react": "19.2.5",
"react-dom": "19.2.5",
"effect": "4.0.0-beta.93"
},
"workspaces": [
"packages/*",
"apps/*"
],
"trustedDependencies": [
"aws-sdk",
"esbuild",
"sharp"
]
}