-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "minze-monorepo",
"private": true,
"type": "module",
"engines": {
"node": ">=v16.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "npm run stub",
"dev": "npm run dev -w minze",
"stub": "npm run stub --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"docs": "vitepress dev docs",
"docs-build": "vitepress build docs",
"docs-preview": "vitepress preview docs",
"format": "prettier --write --cache .",
"lint": "eslint --cache .",
"deps": "(npx -y taze -r -w) && (npm i)",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@types/node": "^22.7.8",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"simple-git-hooks": "^2.11.1",
"typescript-eslint": "^8.11.0",
"vitepress": "^1.4.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx @n6ai/verify-commit-msg@latest $1"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/**/*.{ts,js}": [
"eslint --cache --fix"
]
}
}