-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.55 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
{
"name": "buzzkit-monorepo",
"license": "AGPL-3.0-only",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"db:up": "docker compose up -d postgres tinybird",
"db:down": "docker compose down",
"lint": "biome lint . && bun scripts/lint-conventions.ts",
"lint:conventions": "bun scripts/lint-conventions.ts",
"format": "biome check .",
"format:fix": "biome check . --write",
"prepare": "husky",
"check-types": "turbo run check-types && tsc -p scripts",
"test": "turbo run test --filter=buzzkit --filter=@buzzkit/auth --filter=@buzzkit/schema --filter=@buzzkit/web --filter=@buzzkit/marketing --filter=@buzzkit/ping",
"changeset": "changeset",
"sdk:build": "turbo run build --filter=buzzkit",
"sdk:version": "changeset version && bun install --lockfile-only",
"sdk:release": "bun run --cwd packages/buzzkit scripts/publish-manifest.ts && changeset publish"
},
"devDependencies": {
"@babel/parser": "^8.0.4",
"@biomejs/biome": "2.5.9",
"@changesets/changelog-github": "^1.0.1",
"@changesets/cli": "^3.0.2",
"@types/node": "^24.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"sherif": "^1.13.0",
"turbo": "^2.10.7",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22.22"
},
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc,css}": [
"biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
]
}
}