加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 3.96 KB
一键复制 编辑 原始数据 按行查看 历史
Aster 提交于 2024-10-25 17:54 . feat: 新增自定义打印模板
{
"name": "aster-flowable",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode development",
"prod": "vite --mode production",
"ts:check": "vue-tsc --noEmit",
"build:prod": "vite build --mode production",
"build:dev": "npm run ts:check && vite build --mode development",
"build:test": "npm run ts:check && vite build --mode test",
"serve:pro": "vite preview --mode production",
"serve:dev": "vite preview --mode development",
"serve:test": "vite preview --mode test",
"npm:check": "npx npm-check-updates",
"clean": "npx rimraf node_modules",
"clean:cache": "npx rimraf node_modules/.cache",
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
"lint:format": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
"lint:style": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@codemirror/commands": "^6.5.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.26.3",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@fullcalendar/vue3": "^6.1.15",
"@vant/area-data": "^1.5.1",
"@vue-flow/background": "^1.3.0",
"@vue-flow/controls": "^1.1.2",
"@vue-flow/core": "^1.41.2",
"@vue-flow/minimap": "^1.5.0",
"@vue-flow/node-resizer": "^1.4.0",
"@vue-flow/node-toolbar": "^1.1.0",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"axios": "^1.6.8",
"browserslist": "^4.23.0",
"caniuse-lite": "^1.0.30001606",
"codemirror": "^6.0.1",
"core-js": "^3.36.1",
"driver.js": "^1.3.1",
"echarts": "^5.5.0",
"echarts-liquidfill": "^3.1.0",
"element-plus": "2.8.1",
"js-base64": "^3.7.7",
"jsencrypt": "^3.3.2",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"print-js": "^1.6.0",
"qs": "^6.12.0",
"screenfull": "^6.0.2",
"sortablejs": "^1.15.2",
"vue": "^3.4.21",
"vue-codemirror": "^6.1.1",
"vue-i18n": "^9.11.0",
"vue-router": "^4.3.0",
"vue3-print-nb": "^0.1.4",
"vuedraggable": "^4.1.0",
"vxe-table": "^4.5.21"
},
"devDependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@tinymce/tinymce-vue": "^5.0.1",
"@types/node": "^20.12.5",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitejs/plugin-legacy": "^5.3.2",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lunar-typescript": "^1.7.5",
"mockjs": "^1.1.0",
"prettier": "^3.2.5",
"sass": "1.74.1",
"tinymce": "^5.10.3",
"typescript": "^5.4.4",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.2.8",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-mock": "^3.0.1",
"vite-plugin-windicss": "^1.9.3",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.10",
"windicss": "^3.5.6"
},
"engines": {
"node": ">=16.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"git add"
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化