forked from perfect-panel/ppanel-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
55
56
57
58
59
60
{
"name": "ppanel-web",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/web-ppanel/ppanel-web",
"bugs": {
"url": "https://github.com/web-ppanel/ppanel-web/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/web-ppanel/ppanel-web.git"
},
"license": "GUN",
"scripts": {
"build": "turbo build",
"clean": "turbo run clean",
"dev": "turbo dev",
"lint": "turbo lint",
"locale": "turbo locale",
"openapi": "turbo openapi",
"prepare": "./scripts/prepare.sh",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"setup:components": "node ./scripts/setup-components.mjs",
"setup:lobehub": "./scripts/lobehub-setup.sh"
},
"lint-staged": {
"*.{json,md}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx,cjs,mjs}": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx}": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"devDependencies": {
"@repo/commitlint-config": "workspace:*",
"@repo/prettier-config": "workspace:*",
"@umijs/openapi": "^1.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"semantic-release": "^21.1.2",
"semantic-release-config-gitmoji": "^1.5.3",
"turbo": "^2.2.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"react-is": "rc"
}
}
}