-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "business-components-monorepo",
"version": "0.0.62",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint-fix:script": "eslint . --ext .js,.ts,.vue --fix",
"prettier:w": "prettier -c -w .",
"lint-fix:style": "stylelint \"**/*.{vue,less,css}\" --fix",
"lint-fix": "pnpm run lint-fix:script && pnpm run prettier:w && pnpm run lint-fix:style",
"prepare": "husky install",
"git-commit": "git add . && git cz",
"pre:publish": "cd packages/bdsaas-bc/scripts && release.sh",
"go-publish": "cd packages/bdsaas-bc && pnpm run build:dist && pnpm run start:publishing",
"go-deploy": "cd ./docs && pnpm run docs:build",
"changelog": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0 -n ./changelog-option.js"
},
"keywords": [],
"author": "",
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{css,less,html}": [
"prettier --write",
"stylelint --fix"
],
"*.md": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@types/gulp": "^4.0.13",
"@types/gulp-autoprefixer": "^0.0.34",
"@types/gulp-less": "^0.0.33",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"compare-func": "^2.0.0",
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-conventionalcommits": "^5.0.0",
"conventional-changelog-custom-config": "^0.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-less": "^5.0.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.23",
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^2.8.7",
"stylelint": "^15.5.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-recommended-less": "^1.0.4",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-less": "^1.0.6",
"typescript": "^5.0.4",
"vue-eslint-parser": "^9.3.1"
}
}