### _Why are the changes needed?_ This is a pr about init frontend framework using vue3. ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #3250 from tongwl/KYUUBI-3248. Closes #3250 2c0d7744 [William Tong] add licenses for files 4ab298fb [William Tong] transfer element-plus auto import to full import 4a9478c2 [William Tong] code change from as commented a1aaba03 [William Tong] Init frontend framework Authored-by: William Tong <weitong@cisco.com> Signed-off-by: Cheng Pan <chengpan@apache.org>
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "kyuubi-ui",
|
|
"private": true,
|
|
"version": "1.7.0-SNAPSHOT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "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",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@element-plus/icons-vue": "^2.0.9",
|
|
"axios": "^0.27.2",
|
|
"element-plus": "^2.2.12",
|
|
"pinia": "^2.0.18",
|
|
"pinia-plugin-persistedstate": "^2.1.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",
|
|
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
"@typescript-eslint/parser": "^5.33.0",
|
|
"@vitejs/plugin-vue": "^3.0.0",
|
|
"@vitest/coverage-c8": "^0.22.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": "^3.0.0",
|
|
"vitest": "^0.22.0",
|
|
"vue-tsc": "^0.38.4"
|
|
}
|
|
}
|