-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.61 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
{
"name": "@aqzhyi/oh-my-monorepo",
"type": "module",
"private": true,
"engines": {
"node": ">=20.x",
"pnpm": ">=8.10"
},
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-git": "0.2.0",
"@changesets/cli": "2.27.9",
"changeset-conventional-commits": "0.2.5",
"del-cli": "6.0.0",
"husky": "9.1.6",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-jsdoc": "1.3.0",
"turbo": "2.2.3"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"tsc": "turbo run tsc",
"release-----README-----": "Release all projects within the monorepo.",
"release": "pnpm run release:bump && pnpm run release:publish",
"release:bump-------README---": "Generate a changelog and create a new version number for all projects based on 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",
"clean-----README-----": "Delete the node_modules directory and all files and directories generated by the project",
"clean": "del-cli \"**/node_modules\" \"**/.turbo\" \"**/.next\" \"**/tsconfig.tsbuildinfo\" \".pandacss\" \".vercel\" \".astro\"",
"clean:rebuild": "pnpm clean && pnpm install && pnpm build",
"prepare-----README-----": "Configuration related to the initial setup of git pre-commit hooks",
"prepare": "husky install"
}
}