-
-
Notifications
You must be signed in to change notification settings - Fork 309
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "better-t-stack",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:cli": "turbo run dev --filter=create-better-t-stack",
"cli": "cd apps/cli && node dist/cli.js",
"dev:web": "turbo run dev --filter=web",
"build:web": "turbo run build --filter=web",
"build:cli": "turbo run build --filter=create-better-t-stack",
"lint": "turbo run lint",
"check": "oxfmt . && oxlint .",
"prepare": "lefthook install",
"release": "bun run scripts/release.ts",
"bump": "bun run scripts/bump-version.ts",
"canary": "bun run scripts/canary-release.ts",
"cleanup-previews": "bun run scripts/cleanup-previews.ts",
"deploy:convex": "turbo run --filter=@better-t-stack/backend deploy",
"deploy:web": "turbo run deploy --filter=web",
"generate": "turbo run generate-schema --filter=web",
"deploy": "turbo run deploy --filter=web"
},
"dependencies": {
"@clack/prompts": "^1.1.0"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"changelogithub": "^14.0.0",
"lefthook": "^2.1.3",
"lint-staged": "^16.3.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"turbo": "^2.8.14",
"typescript": "5.9.3"
},
"lint-staged": {
"*": [
"bun check"
]
},
"engines": {
"node": "24.x"
},
"packageManager": "bun@1.3.10"
}