### What changes were proposed in this pull request? Introduce Celeborn Web UI module and support baseline implementation of Celeborn Web UI. <img width="1675" alt="image" src="https://github.com/apache/incubator-celeborn/assets/15062456/0ff1ff59-7aa6-4233-a875-cf8b2742df5c"> ### Why are the changes needed? Celeborn Web is a dashboard including: - Display and manage the status of Celeborn Master. - Display and manage the status of Celeborn Worker. - Display and manage the status of Celeborn tenants and Applications. - Static configuration display and dynamic configuration update (to be supported by the community for centralized configuration management). - Support display and update of dynamic configuration of tenant and cluster dimensions. - Support authentication. The Celeborn Web UI is required for dashboard to provide frontend of dashboard. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Local test. Closes #2234 from labbomb/dev. Lead-authored-by: labbomb <739955946@qq.com> Co-authored-by: Nicholas Jiang <programgeek@163.com> Signed-off-by: Shuang <lvshuang.xjs@alibaba-inc.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "ui",
|
|
"version": "0.5.0-SNAPSHOT",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build --force",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
"format": "prettier --write src/"
|
|
},
|
|
"dependencies": {
|
|
"pinia": "^2.1.7",
|
|
"vue": "^3.3.11",
|
|
"vue-router": "^4.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
"@tsconfig/node18": "^18.2.2",
|
|
"@types/node": "^18.19.3",
|
|
"@vitejs/plugin-vue": "^4.5.2",
|
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
"@vue/tsconfig": "^0.5.0",
|
|
"eslint": "^8.49.0",
|
|
"eslint-plugin-vue": "^9.17.0",
|
|
"naive-ui": "^2.37.3",
|
|
"npm-run-all2": "^6.1.1",
|
|
"prettier": "^3.0.3",
|
|
"sass": "^1.69.7",
|
|
"typescript": "~5.3.0",
|
|
"unplugin-auto-import": "^0.17.3",
|
|
"unplugin-vue-components": "^0.26.0",
|
|
"vite": "^5.0.10",
|
|
"vue-tsc": "^1.8.25"
|
|
}
|
|
}
|