-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 3.24 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 3.24 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
{
"name": "better-fullstack",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:cli": "turbo run dev --filter=create-better-fullstack",
"cli": "cd apps/cli && node dist/cli.js",
"dev:web": "turbo run dev --filter=web",
"build:web": "turbo run build --filter=web --only",
"build:cli": "turbo run build --filter=create-better-fullstack",
"lint": "turbo lint",
"test": "turbo test",
"test:cli": "turbo test --filter=create-better-fullstack",
"test:web": "turbo test --filter=web",
"test:release": "bun run --cwd packages/types build && bun run --cwd packages/template-generator build && bun test apps/cli/test/template-snapshots.test.ts && bun test apps/cli/test/cli-builder-sync.test.ts && bun test apps/web/test/preview-config.test.ts && bun test apps/web/test/stack-state-contract.test.ts && bun test apps/web/test/stack-command-parity.test.ts && bun test apps/cli/test/generate-reproducible-command.test.ts && bun test apps/cli/test/add-history-commands.test.ts && bun run --cwd apps/web validate:tech-links",
"check": "oxfmt . && oxlint .",
"prepare": "sh scripts/install-hooks.sh",
"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-fullstack/backend deploy",
"deploy:web": "bun run --filter=web deploy",
"generate": "bun run --filter=web generate-schema",
"deploy": "bun run deploy:web",
"update-deps": "bun run --filter=@better-fullstack/template-generator check-deps",
"update-deps:fix": "bun run --filter=@better-fullstack/template-generator check-deps:fix",
"sync-versions": "bun run --filter=@better-fullstack/template-generator sync-versions",
"upstream-gap-report": "bun run scripts/upstream-gap-report.ts --markdown",
"test:smoke": "bun run testing/smoke-test.ts",
"test:smoke:strict": "bun run testing/smoke-test.ts --preset all --dev-check --strict",
"test:smoke:pr-core": "bun run testing/smoke-test.ts --preset pr-core --dev-check --strict --output testing/.smoke-output/core",
"test:smoke:pr-broad": "bun run testing/smoke-test.ts --preset pr-broad --dev-check --strict --output testing/.smoke-output/broad",
"test:e2e": "turbo test:e2e",
"test:e2e:cli": "E2E=1 bun test ./apps/cli/test/e2e/e2e.e2e.ts --timeout 600000",
"test:e2e:package-managers": "bun test apps/cli/test/e2e/default-package-manager-matrix.test.ts --timeout 900000",
"test:e2e:web": "cd apps/web && bunx playwright test",
"test:integration": "turbo test:integration"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"three": "^0.183.2"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/three": "^0.183.1",
"changelogithub": "^14.0.0",
"effect": "^3.21.0",
"lefthook": "^2.1.5",
"lint-staged": "^16.4.0",
"oxfmt": "^0.19.0",
"oxlint": "^1.58.0",
"turbo": "^2.9.4",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.3.5"
}