-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 KB
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
{
"name": "@bfehub/root",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"author": "haiweilian <haiweilian@foxmail.com>",
"private": true,
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"commit": "cz",
"lint:lint-staged": "lint-staged",
"lint:eslint": "eslint --fix --cache \"**/*.{js,jsx,ts,tsx,vue}\"",
"lint:stylelint": "stylelint --fix --cache \"**/*.{css,scss,less,styl,vue}\"",
"lint:prettier": "prettier --write \"**/*.{css,scss,less,styl,js,jsx,ts,tsx,vue}\"",
"version": "changeset version",
"publish": "changeset publish"
},
"devDependencies": {
"@bfehub/eslint-config-basic": "workspace:*",
"@bfehub/eslint-config-react": "workspace:*",
"@bfehub/eslint-config-typescript": "workspace:*",
"@bfehub/eslint-config-vue": "workspace:*",
"@bfehub/stylelint-config-basic": "workspace:*",
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"commitizen": "^4.3.0",
"eslint": "^9.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"typescript": "^5.6.2"
}
}