-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 943 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"prettier": "prettier --write '**/*.{js,ts,md,json,vue}'",
"lint": "eslint --fix packages/**/*.{ts,vue}",
"c": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "^16.0.3",
"@commitlint/config-conventional": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^8.3.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.2.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}