-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.8 KB
/
package.json
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
{
"name": "monorepo-boilerplate",
"description": "",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "turbo watch dev",
"add-changeset": "changeset add",
"build": "turbo run build",
"changeset": "changeset",
"db:migrate:create": "cd apps/backend && pnpm run db:migrate:create",
"db:migrate:latest": "cd apps/backend && pnpm run db:migrate:latest",
"db:migrate:undo": "cd apps/backend && pnpm run db:migrate:undo",
"clean:repo": "git add --all && git reset --hard",
"clean:workspaces": "turbo clean",
"clean:node_modules": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +\n",
"lint": "turbo run lint --continue --",
"lint:packages": "pnpm run lint:packages:semver && pnpm run lint:packages:mismatches",
"lint:packages:semver": "syncpack lint-semver-ranges",
"lint:packages:mismatches": "syncpack list-mismatches",
"publish-packages": "turbo run build && changeset version && changeset publish",
"typecheck": "turbo run typecheck --continue --",
"syncpack:update": "syncpack update && syncpack fix-mismatches && pnpm i",
"syncpack:format": "syncpack format",
"syncpack:lint": "syncpack lint",
"release": "changeset publish",
"version-packages": "changeset version",
"verify-types": "turbo run verify-types --continue --"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@internal/tsconfig": "workspace:*",
"@types/node": "22.10.7",
"lefthook": "1.10.9",
"syncpack": "13.0.0",
"turbo": "2.3.3",
"typescript": "5.7.3"
},
"engineStrict": true,
"engines": {
"node": ">=20.16.0"
},
"packageManager": "[email protected]"
}