{ "name": "vue_cli_ts", "version": "1.0.0-B.10", "private": true, "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "eslint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue", "eslint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx,.vue", "stylelint": "stylelint \"./**/*.{css,scss,sass,vue,html}\"", "stylelint:fix": "stylelint \"./**/*.{css,scss,sass,vue,html}\" --fix", "prettier": "prettier --write .", "prepare": "husky install", "commit": "git add . && git cz", "changelog": "standard-version", "release:first": "standard-version --release-as 1.0.0-B.1", "release": "standard-version --prerelease B" }, "dependencies": { "@better-scroll/core": "^2.5.0", "@better-scroll/observe-image": "^2.5.0", "@better-scroll/scroll-bar": "^2.5.0", "axios": "^1.3.3", "core-js": "^3.8.3", "lodash-es": "^4.17.21", "pinia": "^2.0.30", "swiper": "^8.4.5", "vue": "^3.2.13" }, "devDependencies": { "@commitlint/cli": "^17.4.4", "@commitlint/config-conventional": "^17.4.4", "@types/lodash-es": "^4.17.8", "@types/qrcode": "^1.5.0", "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "@vue/cli-plugin-babel": "~5.0.0", "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-plugin-router": "~5.0.0", "@vue/cli-plugin-typescript": "~5.0.0", "@vue/cli-service": "~5.0.0", "@vue/eslint-config-typescript": "^9.1.0", "autoprefixer": "^10.4.14", "commitizen": "^4.3.0", "cz-git": "^1.4.1", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-vue": "^8.7.1", "husky": "^8.0.3", "lint-staged": "^13.1.2", "mrm": "^4.1.13", "pinia-logger": "^1.3.12", "postcss": "^8.4.21", "postcss-html": "^1.5.0", "postcss-px-to-viewport-8-plugin": "^1.2.0", "postcss-scss": "^4.0.6", "prettier": "^2.4.1", "sass": "^1.32.7", "sass-loader": "^12.0.0", "standard-version": "^9.5.0", "stylelint": "^15.1.0", "stylelint-config-recommended-scss": "^9.0.0", "stylelint-config-standard": "^30.0.1", "stylelint-config-standard-vue": "^1.0.0", "stylelint-order": "^6.0.2", "stylelint-scss": "^4.4.0", "tailwindcss": "^3.3.3", "typescript": "~4.5.5" }, "config": { "commitizen": { "path": "cz-git" } }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.{ts,tsx,vue,js,jsx}": "eslint --cache --fix", "*.{vue,scss}": "stylelint --fix" }, "standard-version": { "scripts": { "posttag": "git push --follow-tags origin dev" } } }