vue-pure-admin2/package.json

93 lines
2.6 KiB
JSON
Raw Normal View History

2020-11-16 14:10:17 +08:00
{
2021-04-22 17:31:50 +08:00
"name": "vue-pure-admin",
"version": "2.0.0",
2021-03-01 15:26:05 +08:00
"private": true,
2020-11-16 14:10:17 +08:00
"scripts": {
2021-04-22 17:31:50 +08:00
"dev": "cross-env --max_old_space_size=4096 vite",
"serve": "cross-env --max_old_space_size=4096 vite",
"build": "cross-env vite build",
"preview": "vite preview",
2021-07-05 17:39:00 +08:00
"preview:build": "npm run build && vite preview",
2021-07-06 01:04:03 +08:00
"lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src",
"lint-staged": "lint-staged"
2021-03-01 15:26:05 +08:00
},
2021-06-09 13:11:01 +08:00
"husky": {
"hooks": {
2021-07-05 17:39:00 +08:00
"commit-msg": "node scripts/verify-commit.js",
2021-07-06 01:04:03 +08:00
"pre-commit": "npm run lint-staged"
2021-06-09 13:11:01 +08:00
}
},
2021-03-01 15:26:05 +08:00
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
2021-05-21 17:20:28 +08:00
"@logicflow/core": "^0.4.6",
"@logicflow/extension": "^0.4.6",
2021-06-15 16:55:15 +08:00
"@vueuse/core": "^5.0.3",
2021-05-03 11:50:19 +08:00
"await-to-js": "^3.0.0",
2021-03-01 15:26:05 +08:00
"axios": "^0.21.1",
2021-04-11 14:53:15 +08:00
"cropperjs": "^1.5.11",
2021-06-09 13:11:01 +08:00
"dayjs": "^1.10.5",
2021-03-01 15:26:05 +08:00
"dotenv": "^8.2.0",
2021-04-28 00:05:54 +08:00
"echarts": "^5.1.1",
2021-06-28 16:00:45 +08:00
"element-plus": "^1.0.2-beta.53",
2021-04-02 14:52:50 +08:00
"font-awesome": "^4.7.0",
2021-04-25 11:58:38 +08:00
"lodash-es": "^4.17.21",
2021-03-01 15:26:05 +08:00
"mitt": "^2.1.0",
"mockjs": "^1.1.0",
2021-03-01 15:26:05 +08:00
"nprogress": "^0.2.0",
"path": "^0.12.7",
"path-to-regexp": "^6.2.0",
2021-06-15 16:55:15 +08:00
"pinia": "^2.0.0-beta.2",
2021-03-01 15:26:05 +08:00
"resize-observer-polyfill": "^1.5.1",
"responsive-storage": "^1.0.4",
2021-05-07 22:28:38 +08:00
"v-contextmenu": "^3.0.0",
2021-06-28 16:00:45 +08:00
"vue": "^3.1.2",
2021-04-20 14:33:07 +08:00
"vue-i18n": "^9.1.6",
2021-04-15 23:10:28 +08:00
"vue-json-pretty": "^2.0.2",
2021-06-22 09:58:55 +08:00
"vue-router": "^4.0.9",
2021-04-03 15:04:28 +08:00
"vue-types": "^3.0.2",
2021-06-15 16:55:15 +08:00
"vuedraggable": "^4.0.3",
2021-06-22 09:58:55 +08:00
"vxe-table": "^4.0.21",
2021-04-04 17:52:30 +08:00
"wangeditor": "^4.0.3",
2021-03-31 18:01:12 +08:00
"xe-ajax": "^4.0.5",
2021-05-20 14:16:20 +08:00
"xe-utils": "^3.2.1",
2021-06-15 16:55:15 +08:00
"xgplayer": "^2.22.1"
2020-11-16 14:10:17 +08:00
},
"devDependencies": {
"@types/mockjs": "^1.0.3",
2021-03-01 15:26:05 +08:00
"@types/node": "^14.14.14",
"@types/nprogress": "^0.2.0",
2021-07-05 17:39:00 +08:00
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
2021-06-28 16:00:45 +08:00
"@vitejs/plugin-vue": "^1.2.4",
"@vitejs/plugin-vue-jsx": "^1.1.6",
"@vue/compiler-sfc": "^3.1.2",
2021-07-05 17:39:00 +08:00
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
2021-03-01 15:26:05 +08:00
"autoprefixer": "^10.2.4",
"babel-plugin-transform-remove-console": "^6.9.4",
2021-06-09 13:11:01 +08:00
"chalk": "^2.4.2",
2021-04-22 17:31:50 +08:00
"cross-env": "^7.0.3",
2021-07-05 17:39:00 +08:00
"eslint": "^7.30.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.12.1",
2021-06-09 13:11:01 +08:00
"husky": "^6.0.0",
2021-07-05 17:39:00 +08:00
"lint-staged": "^11.0.0",
2021-03-01 15:26:05 +08:00
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
2021-07-05 17:39:00 +08:00
"prettier": "^2.3.2",
2021-03-01 15:26:05 +08:00
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
2021-04-09 10:53:48 +08:00
"typescript": "^4.2.4",
2021-07-22 11:33:45 +08:00
"vite": "^2.4.3",
2021-06-22 09:58:55 +08:00
"vite-plugin-mock": "^2.8.0",
2021-07-05 17:39:00 +08:00
"vite-plugin-style-import": "^1.0.1",
"vue-eslint-parser": "^7.7.2"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"npm run lint",
"git add"
]
2020-11-16 14:10:17 +08:00
}
2021-03-01 15:06:11 +08:00
}