You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
{
|
|
"name": "tall-4",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "main.js",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
"@typescript-eslint/parser": "^5.8.1",
|
|
"commitizen": "^4.2.4",
|
|
"commitlint": "^16.0.1",
|
|
"conventional-changelog": "^3.1.25",
|
|
"conventional-changelog-cli": "^2.2.2",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-plugin-import": "^2.25.3",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-vue": "^8.2.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.1.4",
|
|
"prettier": "^2.5.1",
|
|
"right-pad": "^1.0.1",
|
|
"vue-cli-plugin-commitlint": "^1.0.12"
|
|
},
|
|
"browserslist": [
|
|
"Android >= 4",
|
|
"ios >= 8"
|
|
],
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,json,css,vue}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
],
|
|
"*.js": "eslint --cache --fix"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"cz": "npm run log && git add . && git cz",
|
|
"log": "conventional-changelog --config ./node_modules/vue-cli-plugin-commitlint/lib/log -i CHANGELOG.md -s -r 0"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|
|
|