forked from AmanVarshney01/create-better-t-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "better-t-stack",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@erquhart/convex-oss-stats": "^0.8.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.2",
"better-result": "^3.0.0",
"convex": "^1.43.0",
"convex-helpers": "^0.1.120",
"handlebars": "^4.7.9",
"oxfmt": "^0.63.0",
"ts-morph": "^28.0.0",
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"yaml": "^2.9.0",
"zod": "^4.4.3"
}
},
"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",
"smoke:publish": "bun run scripts/publish-smoke.ts",
"dev:web": "turbo run dev --filter=web",
"build:web": "turbo run build --filter=web",
"build:cli": "turbo run build --filter=create-better-t-stack",
"test": "bun run check && cd apps/cli && bun test",
"test:complete": "bun run check && bun run build && cd apps/cli && BTS_MATRIX_MODE=smoke BTS_BUILD_SAMPLES=1 bun test --bail=5",
"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",
"smoke:docker": "bash scripts/docker-smoke.sh",
"smoke:vercel": "bash scripts/vercel-smoke.sh"
},
"dependencies": {
"@clack/prompts": "^1.7.0"
},
"devDependencies": {
"@oxlint/plugins": "1.78.0",
"@types/bun": "^1.3.14",
"changelogithub": "^14.0.0",
"lefthook": "^2.1.10",
"lint-staged": "^17.2.0",
"oxfmt": "catalog:",
"oxlint": "1.78.0",
"turbo": "^2.10.7",
"typescript": "catalog:"
},
"lint-staged": {
"*": [
"bun check"
]
},
"engines": {
"node": "24.x"
},
"packageManager": "bun@1.3.14"
}