fes.js/packages/fes-template/package.json

64 lines
1.5 KiB
JSON
Raw Normal View History

2020-08-27 17:18:57 +08:00
{
"name": "@webank/fes-template",
2021-01-05 10:26:57 +08:00
"version": "2.0.0-alpha.1",
2020-08-27 17:18:57 +08:00
"description": "fes项目模版",
"scripts": {
"build": "fes build",
2020-12-25 10:23:31 +08:00
"prod": "FES_ENV=prod fes build",
2020-12-23 15:52:22 +08:00
"analyze": "ANALYZE=1 fes build",
2021-02-01 20:02:02 +08:00
"dev": "fes dev",
"test:unit": "fes test:unit"
2020-08-27 17:18:57 +08:00
},
"keywords": [
"管理端",
"fes",
"fast",
"easy",
"strong"
],
"files": [
".eslintrc.js",
".gitignore",
".fes.js",
".fes.prod.js",
2020-08-27 17:18:57 +08:00
"mock.js",
"package.json",
"README.md",
"tsconfig.json",
"/src",
"/config"
2020-08-27 17:18:57 +08:00
],
2020-09-07 12:33:10 +08:00
"repository": {
2021-01-04 20:32:44 +08:00
"type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-template"
2020-09-07 12:33:10 +08:00
},
2021-01-04 20:32:44 +08:00
"author": "harrywan",
2020-08-27 17:18:57 +08:00
"license": "MIT",
2021-01-04 20:32:44 +08:00
"bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues"
},
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"publishConfig": {
"access": "public"
},
2020-08-27 17:18:57 +08:00
"devDependencies": {
2021-02-08 19:21:30 +08:00
"@webank/eslint-config-webank": "0.2.10"
2020-08-27 17:18:57 +08:00
},
"dependencies": {
"@webank/fes": "^2.0.0-alpha.0",
"@webank/fes-plugin-access": "^2.0.0-alpha.0",
"@webank/fes-plugin-layout": "^2.0.0-alpha.0",
"@webank/fes-plugin-locale": "^2.0.0-alpha.0",
"@webank/fes-plugin-model": "^2.0.0-alpha.0",
2021-01-25 16:22:14 +08:00
"@webank/fes-plugin-enums": "^2.0.0-alpha.0",
2021-02-08 19:21:30 +08:00
"@webank/fes-plugin-jest": "^2.0.0-alpha.8",
"@webank/fes-plugin-vuex": "^2.0.0-alpha.8",
2021-02-22 15:04:04 +08:00
"@webank/fes-plugin-request": "^2.0.0-alpha.8",
2021-02-08 19:21:30 +08:00
"ant-design-vue": "2.0.0",
2021-02-02 18:05:05 +08:00
"vue": "3.0.5",
2021-02-22 15:04:04 +08:00
"vuex": "^4.0.0"
2021-01-07 16:31:38 +08:00
},
"private": true
2020-08-27 17:18:57 +08:00
}
2021-01-07 16:31:38 +08:00