Files
JeecgBoot/jeecgboot-vue3/package.json

189 lines
6.4 KiB
JSON
Raw Normal View History

{
"name": "jeecgboot-vue3",
2025-11-26 11:25:35 +08:00
"version": "3.9.0",
"author": {
"name": "北京国炬信息技术有限公司",
"email": "jeecgos@163.com",
"url": "https://www.jeecg.com"
},
"scripts": {
"pinstall": "pnpm install",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"dev": "vite",
【合并v3.8.2最新版代码】 Squashed commit of the following: commit f30a8c658a90020ec020fc702c680b2ee8562b70 Author: JEECG <445654970@qq.com> Date: Thu Jul 31 11:35:16 2025 +0800 数据库缺少openapi微服务网关配置 commit e84d7726d2bbe60bacf759375c15aa74888a816c Author: JEECG <445654970@qq.com> Date: Thu Jul 31 10:20:09 2025 +0800 后台接口地址修改 commit 0f398026982aefe55a0113be688fa1339a8161ac Author: JEECG <445654970@qq.com> Date: Thu Jul 31 09:56:24 2025 +0800 docker自动化部署命令 commit a014a3ed0e81900e879bcce7bae7afcf68e15227 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 21:55:16 2025 +0800 v3.8.2 优化一键docker启动前后端 commit 5720d1a01ecdf003cbc7a29aedba4ca1bd88a96c Author: JEECG <445654970@qq.com> Date: Wed Jul 30 19:26:38 2025 +0800 升级版本号到3.8.2 commit 5eed6ac6d2145a50f6e0ea650fc3a3c2de1aee0a Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:49:29 2025 +0800 升级版本号到3.8.2 commit 0cfa1e223ae0907d0d25849484390dcfadd717c9 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:28:10 2025 +0800 v3.8.2 系统通知改造支持分类 commit 219869f4c01b848d31ab1a1d41f9613ae8762f5b Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:25:58 2025 +0800 v3.8.2 版本前端代码 commit e6edde963a4c65762d3ffd0b6f3257e138e54964 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:25:46 2025 +0800 v3.8.2 版本后端代码 commit c44b66128e5e89636be67a484875eef393824504 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:23:09 2025 +0800 XXL-JOB(2.4.0 及以上)已被移除,分片参数获取方式变更。 commit 9356b0474191a8ee038b9653c4051db25fb20922 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 10:57:52 2025 +0800 升级online到3.8.2-beta commit d0a094f9a311e6d58b873681d483849ed848fa0b Author: JEECG <445654970@qq.com> Date: Wed Jul 30 10:57:31 2025 +0800 升级mybatis-plus到3.5.12、升级jsqlparser到4.9 commit 73eb62573798907d775f499994764469bbbc4f45 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 09:51:34 2025 +0800 升级jimureport到v2.1.1 commit 74880705b8f0baf0478277604f15ae61e1b1a842 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 09:18:46 2025 +0800 升级online到3.8.2-beta # Conflicts: # jeecg-boot/jeecg-boot-base-core/pom.xml # jeecg-boot/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger3Config.java # jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java # jeecg-boot/jeecg-server-cloud/jeecg-visual/jeecg-cloud-sentinel/pom.xml # jeecg-boot/pom.xml
2025-07-31 14:23:45 +08:00
"build": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=8192 vite build && esno ./build/script/postBuild.ts && esno ./build/script/copyChat.ts",
"build:docker": "cross-env NODE_ENV=docker NODE_OPTIONS=--max-old-space-size=8192 vite build --mode docker && esno ./build/script/postBuild.ts && esno ./build/script/copyChat.ts",
"build:dockercloud": "cross-env NODE_ENV=dockercloud NODE_OPTIONS=--max-old-space-size=8192 vite build --mode dockercloud && esno ./build/script/postBuild.ts && esno ./build/script/copyChat.ts",
"build:report": "pnpm clean:cache && cross-env REPORT=true npm run build",
"preview": "npm run build && vite preview",
"reinstall": "rimraf pnpm-lock.yaml && rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && npm run install",
"clean:lib": "rimraf node_modules",
"gen:icon": "esno ./build/generate/icon/index.ts",
"batch:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"upgrade:log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"husky:install": "husky install"
},
"dependencies": {
"@jeecg/online": "3.9.0-beta2",
"@jeecg/aiflow":"3.9.0-beta2",
2025-04-07 23:23:52 +08:00
"@logicflow/core": "^2.0.10",
"@logicflow/extension": "^2.0.14",
"@logicflow/vue-node-registry": "^1.0.12",
"@iconify/iconify": "^3.1.1",
2025-11-26 11:25:35 +08:00
"@ant-design/colors": "^7.2.1",
"@ant-design/icons-vue": "^7.0.1",
2025-11-26 11:25:35 +08:00
"@vue/shared": "^3.5.22",
2025-01-06 19:40:57 +08:00
"@vueuse/core": "^10.11.1",
"@tinymce/tinymce-vue": "4.0.7",
"@zxcvbn-ts/core": "^3.0.4",
2025-01-06 19:40:57 +08:00
"ant-design-vue": "^4.2.6",
2025-11-26 11:25:35 +08:00
"axios": "^1.12.2",
"china-area-data": "^5.0.1",
2025-01-06 19:40:57 +08:00
"@vant/area-data": "^1.5.2",
"clipboard": "^2.0.11",
2025-11-26 11:25:35 +08:00
"codemirror": "^5.65.20",
"cron-parser": "^4.9.0",
2025-01-06 19:40:57 +08:00
"cropperjs": "^1.6.2",
"crypto-js": "^4.2.0",
2025-11-26 11:25:35 +08:00
"dayjs": "^1.11.18",
"dom-align": "^1.12.4",
2025-01-06 19:40:57 +08:00
"echarts": "^5.6.0",
2025-11-26 11:25:35 +08:00
"emoji-mart-vue-fast": "^15.0.5",
"enquire.js": "^2.1.6",
"intro.js": "^7.2.0",
"lodash-es": "^4.17.21",
"lodash.get": "^4.4.2",
2025-01-06 19:40:57 +08:00
"markdown-it": "^14.1.0",
"markdown-it-link-attributes": "^4.0.1",
"event-source-polyfill": "^1.0.31",
2025-01-06 19:40:57 +08:00
"highlight.js": "^11.11.1",
"@traptitech/markdown-it-katex": "^3.6.0",
"md5": "^2.3.0",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
2025-01-06 19:40:57 +08:00
"path-to-regexp": "^6.3.0",
"pinia": "2.1.7",
"print-js": "^1.6.0",
2025-11-26 11:25:35 +08:00
"pinyin-pro": "^3.27.0",
"qs": "^6.14.0",
"qrcode": "^1.5.4",
"resize-observer-polyfill": "^1.5.1",
"showdown": "^2.1.0",
2025-01-06 19:40:57 +08:00
"sortablejs": "^1.15.6",
2025-11-26 11:25:35 +08:00
"swagger-ui-dist": "^5.29.3",
"tinymce": "6.6.2",
2025-11-26 11:25:35 +08:00
"vditor": "^3.11.2",
"vue": "^3.5.22",
2025-01-06 19:40:57 +08:00
"vue-cropper": "^0.6.5",
"vue-cropperjs": "^5.0.0",
2025-11-26 11:25:35 +08:00
"vue-i18n": "^9.14.5",
"vue-infinite-scroll": "^2.0.2",
"vue-print-nb-jeecg": "^1.0.12",
2025-11-26 11:25:35 +08:00
"vue-router": "^4.5.1",
2025-01-06 19:40:57 +08:00
"vue-types": "^5.1.3",
"vuedraggable": "^4.1.0",
2025-05-25 18:09:19 +08:00
"vxe-table": "4.13.31",
"vxe-pc-ui": "4.6.12",
【合并v3.8.2最新版代码】 Squashed commit of the following: commit f30a8c658a90020ec020fc702c680b2ee8562b70 Author: JEECG <445654970@qq.com> Date: Thu Jul 31 11:35:16 2025 +0800 数据库缺少openapi微服务网关配置 commit e84d7726d2bbe60bacf759375c15aa74888a816c Author: JEECG <445654970@qq.com> Date: Thu Jul 31 10:20:09 2025 +0800 后台接口地址修改 commit 0f398026982aefe55a0113be688fa1339a8161ac Author: JEECG <445654970@qq.com> Date: Thu Jul 31 09:56:24 2025 +0800 docker自动化部署命令 commit a014a3ed0e81900e879bcce7bae7afcf68e15227 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 21:55:16 2025 +0800 v3.8.2 优化一键docker启动前后端 commit 5720d1a01ecdf003cbc7a29aedba4ca1bd88a96c Author: JEECG <445654970@qq.com> Date: Wed Jul 30 19:26:38 2025 +0800 升级版本号到3.8.2 commit 5eed6ac6d2145a50f6e0ea650fc3a3c2de1aee0a Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:49:29 2025 +0800 升级版本号到3.8.2 commit 0cfa1e223ae0907d0d25849484390dcfadd717c9 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:28:10 2025 +0800 v3.8.2 系统通知改造支持分类 commit 219869f4c01b848d31ab1a1d41f9613ae8762f5b Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:25:58 2025 +0800 v3.8.2 版本前端代码 commit e6edde963a4c65762d3ffd0b6f3257e138e54964 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:25:46 2025 +0800 v3.8.2 版本后端代码 commit c44b66128e5e89636be67a484875eef393824504 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 18:23:09 2025 +0800 XXL-JOB(2.4.0 及以上)已被移除,分片参数获取方式变更。 commit 9356b0474191a8ee038b9653c4051db25fb20922 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 10:57:52 2025 +0800 升级online到3.8.2-beta commit d0a094f9a311e6d58b873681d483849ed848fa0b Author: JEECG <445654970@qq.com> Date: Wed Jul 30 10:57:31 2025 +0800 升级mybatis-plus到3.5.12、升级jsqlparser到4.9 commit 73eb62573798907d775f499994764469bbbc4f45 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 09:51:34 2025 +0800 升级jimureport到v2.1.1 commit 74880705b8f0baf0478277604f15ae61e1b1a842 Author: JEECG <445654970@qq.com> Date: Wed Jul 30 09:18:46 2025 +0800 升级online到3.8.2-beta # Conflicts: # jeecg-boot/jeecg-boot-base-core/pom.xml # jeecg-boot/jeecg-boot-base-core/src/main/java/org/jeecg/config/Swagger3Config.java # jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/java/org/jeecg/JeecgSystemApplication.java # jeecg-boot/jeecg-server-cloud/jeecg-visual/jeecg-cloud-sentinel/pom.xml # jeecg-boot/pom.xml
2025-07-31 14:23:45 +08:00
"vxe-table-plugin-antd": "4.0.8",
"xe-utils": "3.5.26",
2025-01-06 19:40:57 +08:00
"xss": "^1.0.15"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
2025-01-06 19:40:57 +08:00
"@commitlint/config-conventional": "^18.6.3",
2025-11-26 11:25:35 +08:00
"@iconify/json": "^2.2.394",
"@purge-icons/generated": "^0.10.0",
2025-11-26 11:25:35 +08:00
"@types/codemirror": "^5.60.16",
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
2025-11-26 11:25:35 +08:00
"@types/inquirer": "^9.0.9",
"@types/intro.js": "^5.1.5",
2025-01-06 19:40:57 +08:00
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/mockjs": "^1.0.10",
2025-11-26 11:25:35 +08:00
"@types/node": "^20.19.20",
"@types/nprogress": "^0.2.3",
"@types/qrcode": "^1.5.5",
2025-11-26 11:25:35 +08:00
"@types/qs": "^6.14.0",
"@types/showdown": "^2.0.6",
"@types/sortablejs": "^1.15.8",
2025-01-06 19:40:57 +08:00
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
2025-11-26 11:25:35 +08:00
"@vitejs/plugin-vue": "5.2.4",
"@vitejs/plugin-vue-jsx": "4.1.1",
2025-11-26 11:25:35 +08:00
"@vue/compiler-sfc": "^3.5.22",
2025-01-06 19:40:57 +08:00
"@vue/test-utils": "^2.4.6",
2025-11-26 11:25:35 +08:00
"autoprefixer": "^10.4.21",
2025-01-06 19:40:57 +08:00
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
2025-11-26 11:25:35 +08:00
"cz-git": "^1.12.0",
"czg": "^1.12.0",
"dotenv": "^16.6.1",
2025-01-06 19:40:57 +08:00
"eslint": "^8.57.1",
2025-11-26 11:25:35 +08:00
"eslint-config-prettier": "^9.1.2",
"eslint-define-config": "^2.1.0",
"eslint-plugin-jest": "^27.9.0",
2025-11-26 11:25:35 +08:00
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^9.33.0",
2025-01-06 19:40:57 +08:00
"esno": "^4.8.0",
2025-11-26 11:25:35 +08:00
"fs-extra": "^11.3.2",
"http-server": "^14.1.1",
"husky": "^8.0.3",
2025-11-26 11:25:35 +08:00
"inquirer": "^9.3.8",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
2025-11-26 11:25:35 +08:00
"less": "^4.4.2",
"lint-staged": "15.2.2",
"npm-run-all": "^4.1.5",
2025-01-06 19:40:57 +08:00
"picocolors": "^1.1.1",
2025-11-26 11:25:35 +08:00
"postcss": "^8.5.6",
"postcss-html": "^1.8.0",
"postcss-less": "^6.0.0",
2025-11-26 11:25:35 +08:00
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
2025-01-06 19:40:57 +08:00
"rimraf": "^5.0.10",
2025-11-26 11:25:35 +08:00
"rollup": "4.52.4",
"rollup-plugin-visualizer": "5.14.0",
2025-11-26 11:25:35 +08:00
"stylelint": "^16.25.0",
"stylelint-config-prettier": "^9.0.5",
2025-01-06 19:40:57 +08:00
"stylelint-config-recommended": "^14.0.1",
2025-11-26 11:25:35 +08:00
"stylelint-config-recommended-vue": "^1.6.1",
2025-01-06 19:40:57 +08:00
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
2025-11-26 11:25:35 +08:00
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
2025-11-26 11:25:35 +08:00
"typescript": "^5.9.3",
"vite": "^6.3.6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
2025-11-26 11:25:35 +08:00
"vite-plugin-mkcert": "^1.17.9",
2025-01-06 19:40:57 +08:00
"vite-plugin-mock": "^2.9.8",
"vite-plugin-optimize-persist": "^0.1.2",
"vite-plugin-package-config": "^0.1.1",
"vite-plugin-purge-icons": "^0.10.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-pwa": "^1.1.0",
"workbox-window": "^7.3.0",
2024-12-09 15:10:46 +08:00
"vite-plugin-qiankun": "^1.0.15",
"@rys-fe/vite-plugin-theme": "^0.8.6",
"vite-plugin-vue-setup-extend-plus": "^0.1.0",
2025-11-26 11:25:35 +08:00
"unocss": "^66.5.2",
2025-01-06 19:40:57 +08:00
"vue-eslint-parser": "^9.4.3",
2024-12-09 15:10:46 +08:00
"vue-tsc": "^1.8.27",
2025-11-26 11:25:35 +08:00
"dingtalk-jsapi": "^3.2.0",
2024-12-09 15:10:46 +08:00
"big.js": "^6.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeecgboot/JeecgBoot.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jeecgboot/JeecgBoot/issues"
},
"homepage": "https://www.jeecg.com",
"engines": {
"node": "^18 || >=20"
}
}