-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"name": "monorepo-template",
"version": "0.0.0",
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@changesets/cli": "2.30.0",
"syncpack": "14.3.0",
"turbo": "2.9.5"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.0",
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"check": "pnpm syncpack:lint && turbo run lint format typecheck",
"dev": "turbo run dev",
"fix": "pnpm syncpack:fix && turbo run lint:fix format:fix",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"release": "pnpm build && changeset publish",
"syncpack:fix": "syncpack fix && pnpm syncpack:format",
"syncpack:format": "syncpack format && pnpm exec biome format --write package.json packages/ui/package.json apps/web/package.json",
"syncpack:lint": "syncpack lint",
"typecheck": "turbo run typecheck",
"version-packages": "changeset version"
}
}