celeborn/web/package.json
labbomb 0285021392 [CELEBORN-1303] Introduce API request module for dashboard frontend
### What changes were proposed in this pull request?

- Adds api request module.
- Adds license about `varlet/axle`.
- Adss pagination function.

### Why are the changes needed?

API request module is required to request the backend interface for dashboard frontend.

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

No.

Closes #2353 from labbomb/CELEBORN-1303.

Authored-by: labbomb <labbomb@163.com>
Signed-off-by: SteNicholas <programgeek@163.com>
2024-03-05 12:39:21 +08:00

43 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",
"@varlet/axle": "^0.6.0",
"@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"
}
}