2020-08-27 17:18:57 +08:00
|
|
|
{
|
2020-09-07 19:03:01 +08:00
|
|
|
"name": "fes.js",
|
2020-11-02 09:51:40 +08:00
|
|
|
"version": "2.0.0",
|
2020-08-27 17:18:57 +08:00
|
|
|
"description": "一个好用的前端管理台快速开发框架",
|
|
|
|
"preferGlobal": true,
|
2020-11-02 09:51:40 +08:00
|
|
|
"private": true,
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2020-08-27 17:18:57 +08:00
|
|
|
"scripts": {
|
2021-01-19 11:39:35 +08:00
|
|
|
"clean": "lerna clean",
|
2020-09-19 16:47:03 +08:00
|
|
|
"bootstrap": "lerna bootstrap",
|
2021-08-07 15:43:24 +08:00
|
|
|
"dev": "node scripts/build.js --watch",
|
|
|
|
"build": "node scripts/build.js",
|
2021-07-23 11:07:33 +08:00
|
|
|
"ver": "lerna version --conventional-prerelease --no-changelog --no-commit-hooks --no-private",
|
2021-08-07 15:43:24 +08:00
|
|
|
"release": "node scripts/build.js && lerna publish from-git",
|
2021-01-19 21:13:13 +08:00
|
|
|
"docs:dev": "vuepress dev docs --clean-cache",
|
2021-07-22 20:46:49 +08:00
|
|
|
"docs:build": "vuepress build docs --clean-cache",
|
2022-05-25 11:49:22 +08:00
|
|
|
"docs:build-pages": "BASE=/fes.js/ vuepress build docs --clean-cache",
|
2021-08-13 17:58:13 +08:00
|
|
|
"test": "fes test",
|
2021-07-22 20:46:49 +08:00
|
|
|
"lint": "eslint -c ./.eslintrc.js --ext .js,.jsx,.vue,.ts"
|
2020-08-27 17:18:57 +08:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"keywords": [
|
|
|
|
"管理端",
|
|
|
|
"fes",
|
|
|
|
"fast",
|
|
|
|
"easy",
|
|
|
|
"strong"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2021-08-09 14:43:47 +08:00
|
|
|
"lerna": "^4.0.0"
|
2020-08-27 17:18:57 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-08-07 15:43:24 +08:00
|
|
|
"@babel/core": "^7.15.0",
|
|
|
|
"@babel/preset-env": "^7.15.0",
|
2020-09-19 16:12:11 +08:00
|
|
|
"@commitlint/cli": "^11.0.0",
|
|
|
|
"@commitlint/config-conventional": "^11.0.0",
|
2021-08-13 17:58:13 +08:00
|
|
|
"@fesjs/fes": "^2.0.0",
|
|
|
|
"@fesjs/plugin-jest": "^2.0.0",
|
2022-01-08 15:32:08 +08:00
|
|
|
"@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",
|
2022-05-05 16:55:39 +08:00
|
|
|
"@vuepress/bundler-webpack": "2.0.0-beta.28",
|
2021-08-20 10:08:58 +08:00
|
|
|
"@webank/eslint-config-webank": "0.3.1",
|
2021-08-07 15:43:24 +08:00
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"chokidar": "^3.5.2",
|
2020-09-19 16:12:11 +08:00
|
|
|
"commitizen": "^4.2.1",
|
2020-09-20 19:20:35 +08:00
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
2021-08-07 15:43:24 +08:00
|
|
|
"deepmerge": "^4.2.2",
|
|
|
|
"fs-extra": "^10.0.0",
|
2020-09-19 16:12:11 +08:00
|
|
|
"husky": "^4.3.0",
|
2021-01-19 21:13:13 +08:00
|
|
|
"lint-staged": "^10.4.0",
|
2021-07-27 20:50:39 +08:00
|
|
|
"postcss": "^8.0.0",
|
2021-08-07 15:43:24 +08:00
|
|
|
"postcss-loader": "^5.0.0",
|
2022-01-08 15:32:08 +08:00
|
|
|
"vuepress": "2.0.0-beta.28",
|
2021-08-07 15:43:24 +08:00
|
|
|
"yargs-parser": "^20.2.9"
|
2020-09-19 16:12:11 +08:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-12-25 10:23:31 +08:00
|
|
|
"*.{js,jsx,vue,ts}": [
|
2020-09-19 16:12:11 +08:00
|
|
|
"eslint --format=codeframe"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
2020-09-20 19:20:35 +08:00
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
2020-09-19 16:12:11 +08:00
|
|
|
}
|
2020-09-23 12:37:21 +08:00
|
|
|
},
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 17:18:57 +08:00
|
|
|
}
|
2021-08-09 14:43:47 +08:00
|
|
|
}
|