-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 920 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 920 Bytes
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": "mx-admin-monorepo",
"private": true,
"version": "7.1.2",
"bump": {
"before": [
"git pull --rebase"
],
"recursive": true,
"changelog": true
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"preview": "turbo run preview",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"release": "sh ./release.sh",
"prepare": "pnpm exec simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --ignore-path ./.gitignore --write ",
"oxlint --fix"
]
},
"devDependencies": {
"@innei/prettier": "1.0.0",
"lint-staged": "16.4.0",
"oxlint": "^1.0.0",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"turbo": "^2.3.0"
},
"packageManager": "pnpm@11.0.0"
}