mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-01 03:07:38 +08:00
61 lines
1.0 KiB
JSON
61 lines
1.0 KiB
JSON
|
{
|
||
|
"name": "@webank/fes-template",
|
||
|
"version": "0.1.0",
|
||
|
"description": "fes项目模版",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"build": "fes build",
|
||
|
"dev": "fes dev",
|
||
|
"lint": "fes lint"
|
||
|
},
|
||
|
"husky": {
|
||
|
"hooks": {
|
||
|
"pre-commit": "lint-staged"
|
||
|
}
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.js": [
|
||
|
"eslint",
|
||
|
"git add"
|
||
|
],
|
||
|
"*.fes": [
|
||
|
"eslint",
|
||
|
"git add"
|
||
|
],
|
||
|
"*.vue": [
|
||
|
"eslint",
|
||
|
"git add"
|
||
|
]
|
||
|
},
|
||
|
"keywords": [
|
||
|
"管理端",
|
||
|
"fes",
|
||
|
"fast",
|
||
|
"easy",
|
||
|
"strong"
|
||
|
],
|
||
|
"files": [
|
||
|
".eslintrc.js",
|
||
|
".gitignore",
|
||
|
"fes.config.js",
|
||
|
"mock.js",
|
||
|
"package.json",
|
||
|
"README.md",
|
||
|
"/src"
|
||
|
],
|
||
|
"author": "harrywan fanniehuang qlin",
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"@webank/eslint-config-webank": "^0.1.6",
|
||
|
"csp-html-webpack-plugin": "^4.0.0",
|
||
|
"husky": "^3.0.9",
|
||
|
"lint-staged": "^9.4.2"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"vue": "^2.6.10",
|
||
|
"@webank/fes-core": "^0.1.0",
|
||
|
"@webank/fes-ui": "^0.1.0"
|
||
|
},
|
||
|
"peerDependencies": {}
|
||
|
}
|