-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "mla-monorepo",
"scripts": {
"prepare": "lefthook install",
"preinstall": "npx only-allow pnpm",
"build": "pnpm -r build",
"dev": "pnpm --filter ./apps/web run dev",
"test": "pnpm -r test",
"test:install": "pnpm -r test:install",
"build:packages": "pnpm --filter ./packages/* build",
"lint": "pnpm --filter ./packages/react-mla run lint",
"commit": "git-cz --signoff",
"deploy:app": "pnpm --filter ./apps/web run deploy"
},
"validate-branch-name": {
"pattern": "^(feat|fix|hotfix|release|test|experimental)/.+$",
"errorMsg": "Branch name validation failed"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint",
"always_signoff": true
}
},
"packageManager": "[email protected]",
"version": "1.1.5",
"pnpm": {
"overrides": {
"micromatch": "^4.0.8",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"cookie@<0.7.0": ">=0.7.0"
}
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"commitizen": "4.3.1",
"inquirer": "12.3.2",
"lefthook": "1.10.10",
"validate-branch-name": "1.3.2",
"gh-pages": "6.3.0"
}
}