-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
49
50
51
52
53
54
{
"name": "@next-devtools/monorepo",
"version": "0.3.0-beta.3",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"license": "MIT",
"author": {
"name": "Xinyao",
"email": "[email protected]"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"up": "taze major -Ir",
"lint": "eslint . --fix",
"release": "release-it",
"preRelease": "release-it --preRelease=beta && pnpm -r publish --tag beta",
"release:major": "release-it major && pnpm -r publish --tag latest",
"release:minor": "release-it minor && pnpm -r publish --tag latest",
"release:patch": "release-it patch && pnpm -r publish --tag latest",
"build": "turbo run build",
"dev": "turbo run dev dev:app",
"dev:devtools": "turbo run dev",
"dev:app": "turbo run dev:app",
"dev:pages": "turbo run dev:pages",
"docs": "turbo run docs",
"docs:build": "turbo run docs:build"
},
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@release-it/bumper": "catalog:",
"@release-it/conventional-changelog": "catalog:",
"@xystack/style-guide": "catalog:",
"bunchee": "catalog:",
"commitizen": "catalog:",
"copyfiles": "catalog:",
"cross-env": "catalog:",
"cz-conventional-changelog": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"npm-run-all": "catalog:",
"prettier": "catalog:",
"release-it": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"prettier": "@xystack/style-guide/prettier"
}