-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.07 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.07 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
{
"name": "monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@10.23.0",
"devDependencies": {
"@changesets/changelog-git": "0.2.1",
"@changesets/cli": "2.29.7",
"@types/node": "24.10.1",
"changeset-conventional-commits": "0.2.5",
"lefthook": "2.0.4",
"turbo": "2.6.1",
"typescript": "5.9.3"
},
"scripts": {
"postinstall:README": "💡 Installs configured hooks to Git hooks.",
"postinstall": "lefthook install",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"tsc": "turbo run tsc",
"release:bump:README": "💡 Generate a changelog and create a new version number for all projects based on the commits",
"release:bump": "changeset-conventional && changeset version",
"release:publish:README": "💡 All ongoing projects that have not yet been published will be released accordingly.",
"release:publish": "changeset publish",
"release": "pnpm run release:bump && pnpm run release:publish"
}
}