cpnode-front/package.json

73 lines
2.2 KiB
JSON
Raw Normal View History

2021-12-26 09:14:46 +00:00
{
"name": "@daotl/fes-starter",
2021-12-26 09:14:46 +00:00
"version": "2.0.0",
"description": "A fes.js + TypeScript starter template",
2021-12-26 09:14:46 +00:00
"scripts": {
"build": "fes build",
2021-12-27 07:26:40 +00:00
"prod": "cross-env FES_ENV=prod fes build",
"analyze": "cross-env ANALYZE=1 fes build",
2021-12-26 09:14:46 +00:00
"dev": "fes dev",
"test:unit": "fes test:unit",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix",
2021-12-27 07:26:40 +00:00
"eslint": "eslint src/**/*.{js,ts,tsx,vue}",
"eslint:fix": "eslint src/**/*.{js,ts,tsx,vue} --fix",
"stylelint": "stylelint src/**/*.{css,scss,vue,tsx}",
2021-12-27 08:14:28 +00:00
"stylelint:fix": "stylelint src/**/*.{css,scss,vue,tsx} --fix",
"prepare": "husky install"
2021-12-26 09:14:46 +00:00
},
"prettier": "@daotl/prettier-config",
2021-12-26 09:14:46 +00:00
"keywords": [
"管理端",
"fes",
"fast",
"easy",
"strong"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daotl/fes-starter.git"
2021-12-26 09:14:46 +00:00
},
"author": "Nex Zhu <hitnexup@gmail.com>",
2021-12-26 09:14:46 +00:00
"license": "MIT",
"bugs": {
"url": "https://github.com/daotl/fes-starter/issues"
2021-12-26 09:14:46 +00:00
},
"homepage": "https://github.com/daotl/fes-starter#readme",
2021-12-26 09:14:46 +00:00
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@daotl/eslint-config-vue": "0.2.3",
"@daotl/prettier-config": "^0.1.2",
"@daotl/tsconfig": "^0.0.4",
2021-12-27 07:26:40 +00:00
"@fesjs/plugin-sass": "^2.0.0",
2021-12-27 11:07:17 +00:00
"@fesjs/plugin-windicss": "^2.0.4",
"@iconify-json/mdi": "^1.0.12",
2021-12-27 07:26:40 +00:00
"@vue/compiler-sfc": "^3.2.26",
"cross-env": "^7.0.3",
2021-12-27 09:37:41 +00:00
"eslint-webpack-plugin": "^3.1.1",
2021-12-27 08:14:28 +00:00
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
2021-12-27 07:26:40 +00:00
"postcss-html": "^1.3.0",
"stylelint": "^14.2.0",
"stylelint-config-property-sort-order-smacss": "^8.0.0",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-recommended-vue": "^1.1.0",
2021-12-27 09:23:55 +00:00
"stylelint-webpack-plugin": "^3.1.0",
2021-12-27 11:07:17 +00:00
"typescript": "^4.5.4",
2021-12-27 11:23:47 +00:00
"unplugin-auto-import": "^0.5.5",
"unplugin-icons": "^0.13.0",
2021-12-27 11:23:47 +00:00
"unplugin-vue-components": "^0.17.11"
2021-12-26 09:14:46 +00:00
},
"dependencies": {
"@fesjs/fes": "^2.0.11",
"@fesjs/plugin-access": "^2.0.2",
"@fesjs/plugin-enums": "^2.0.2",
"@fesjs/plugin-layout": "^2.0.9",
"@fesjs/plugin-model": "^2.0.3",
2021-12-27 11:37:31 +00:00
"element-plus": "^1.2.0-beta.6",
2021-12-26 09:14:46 +00:00
"vue": "^3.2.6"
}
2021-12-26 09:14:46 +00:00
}