-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 807 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 807 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
{
"name": "reborn",
"private": true,
"packageManager": "pnpm@8.7.4",
"npmClient": "pnpm",
"scripts": {
"format-check": "prettier --check .",
"format-fix": "prettier --write ."
},
"devDependencies": {
"@commitlint/config-conventional": "^17.6.3",
"commitlint": "^17.6.3",
"cz-conventional-changelog": "^3.3.0",
"lint-staged": "^13.2.2",
"yorkie": "^2.0.0",
"generate-changelog": "^1.8.0"
},
"gitHooks": {
"commit-msg": "commitlint -E GIT_PARAMS"
},
"pnpm": {
"neverBuiltDependencies": [
"core-js",
"vue-demi"
],
"patchedDependencies": {
"vue-template-compiler@2.6.14": "patches/vue-template-compiler@2.6.14.patch"
}
}
}