{ "name": "fes.js", "version": "2.0.0", "description": "一个好用的前端管理台快速开发框架", "preferGlobal": true, "private": true, "workspaces": [ "packages/*" ], "scripts": { "clean": "lerna clean", "bootstrap": "lerna bootstrap", "dev": "node scripts/build.js --watch", "build": "node scripts/build.js", "ver": "lerna version --conventional-prerelease --no-changelog --no-commit-hooks --no-private", "release": "node scripts/build.js && lerna publish from-git", "docs:dev": "vuepress dev docs --clean-cache", "docs:build": "vuepress build docs --clean-cache", "test": "fes test", "lint": "eslint -c ./.eslintrc.js --ext .js,.jsx,.vue,.ts" }, "license": "MIT", "keywords": [ "管理端", "fes", "fast", "easy", "strong" ], "dependencies": { "lerna": "^4.0.0" }, "devDependencies": { "@babel/core": "^7.15.0", "@babel/preset-env": "^7.15.0", "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@fesjs/fes": "^2.0.0", "@fesjs/plugin-jest": "^2.0.0", "@vuepress/plugin-docsearch": "2.0.0-beta.28", "@vuepress/plugin-pwa": "2.0.0-beta.28", "@vuepress/plugin-pwa-popup": "2.0.0-beta.28", "@webank/eslint-config-webank": "0.3.1", "chalk": "^4.1.2", "chokidar": "^3.5.2", "commitizen": "^4.2.1", "cz-conventional-changelog": "^3.3.0", "deepmerge": "^4.2.2", "fs-extra": "^10.0.0", "husky": "^4.3.0", "lint-staged": "^10.4.0", "postcss": "^8.0.0", "postcss-loader": "^5.0.0", "vuepress": "2.0.0-beta.28", "yargs-parser": "^20.2.9" }, "lint-staged": { "*.{js,jsx,vue,ts}": [ "eslint --format=codeframe" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "changelog": { "bugsUrl": "https://github.com/WeBankFinTech/fes.js/issues/", "authorName": true, "authorEmail": false, "settings": { "feat": { "title": ":rocket: New Feature", "enable": true }, "fix": { "title": ":bug: Bug Fix" }, "perf": { "title": ":running_woman: Performance" }, "revert": { "title": ":leftwards_arrow_with_hook: Revert" }, "refactor": { "title": "♻ 代码重构" }, "docs": { "title": ":memo: Documentation", "enable": true }, "style": { "title": ":eyeglasses: Spec Compliance", "enable": true }, "test": { "title": "✅ 测试", "enable": false }, "build": { "title": "👷‍ 构建", "enable": false }, "ci": { "title": "🔧 CI 配置", "enable": false }, "chore": { "title": "🎫 其他更新", "enable": false } } } }