# 🔍 Description ## Issue References 🔗 This pull request fixes # ## Describe Your Solution 🔧 Preparing v1.11.0-SNAPSHOT after branch-1.10 cut ```shell build/mvn versions:set -DgenerateBackupPoms=false -DnewVersion="1.11.0-SNAPSHOT" (cd kyuubi-server/web-ui && npm version "1.11.0-SNAPSHOT") ``` ## Types of changes 🔖 - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan 🧪 #### Behavior Without This Pull Request ⚰️ #### Behavior With This Pull Request 🎉 #### Related Unit Tests --- # Checklist 📝 - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6769 from bowenliang123/bump-1.11. Closes #6769 6db219d28 [Bowen Liang] get latest_branch by sorting version in branch name 465276204 [Bowen Liang] update package.json 81f2865e5 [Bowen Liang] bump Authored-by: Bowen Liang <liangbowen@gf.com.cn> Signed-off-by: Bowen Liang <liangbowen@gf.com.cn>
54 lines
1.6 KiB
JSON
54 lines
1.6 KiB
JSON
{
|
|
"name": "kyuubi-ui",
|
|
"private": true,
|
|
"version": "1.11.0-SNAPSHOT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vue-tsc --noEmit && vite --port 9090",
|
|
"build": "vue-tsc --noEmit && vite build --mode production",
|
|
"build-check": "npm run lint && npm run build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
|
|
"lint-fix": "eslint --fix --ext .ts,vue --ignore-path .gitignore .",
|
|
"prettier": "prettier --write \"src/**/*.{vue,ts,tsx}\"",
|
|
"test": "vitest --mode development",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@element-plus/icons-vue": "^2.0.9",
|
|
"axios": "^1.7.4",
|
|
"date-fns": "^2.29.3",
|
|
"element-plus": "^2.2.12",
|
|
"monaco-editor": "^0.44.0",
|
|
"pinia": "^2.0.18",
|
|
"pinia-plugin-persistedstate": "^2.1.1",
|
|
"sql-formatter": "^13.0.1",
|
|
"swagger-ui-dist": "^4.9.1",
|
|
"vue": "^3.2.37",
|
|
"vue-i18n": "^9.2.2",
|
|
"vue-router": "^4.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify-json/ep": "^1.1.6",
|
|
"@types/node": "^18.7.1",
|
|
"@types/swagger-ui-dist": "^3.30.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
"@typescript-eslint/parser": "^5.33.0",
|
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
"@vitest/coverage-v8": "^0.32.0",
|
|
"@vue/eslint-config-prettier": "^7.0.0",
|
|
"@vue/eslint-config-typescript": "^11.0.0",
|
|
"@vue/test-utils": "^2.0.2",
|
|
"eslint": "^8.21.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-vue": "^9.3.0",
|
|
"jsdom": "^20.0.0",
|
|
"prettier": "^2.7.1",
|
|
"sass": "^1.54.4",
|
|
"typescript": "^4.6.4",
|
|
"vite": "^4.5.5",
|
|
"vitest": "^0.32.0",
|
|
"vue-tsc": "^0.38.4"
|
|
}
|
|
}
|