mirror of
https://github.com/vatesfr/xen-orchestra.git
synced 2026-09-10 22:14:48 -05:00
* feat(xo-server): serve doc locally * the doc is already distributed from the mono repo * add a build phase to the global yanr build that build a doc with the right prefix * add a http mount doc => embed build * doc(backups): add a space calculator * estimate the space needed for backups * compute the duration protected by immutability
83 lines
2.9 KiB
JSON
83 lines
2.9 KiB
JSON
{
|
|
"name": "xen-orchestra",
|
|
"version": "0.0.0",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.29.0",
|
|
"@babel/eslint-parser": "^7.29.0",
|
|
"@babel/register": "^7.29.0",
|
|
"@commitlint/cli": "^19.4.1",
|
|
"@commitlint/config-conventional": "^19.4.1",
|
|
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
|
|
"@limegrass/eslint-plugin-import-alias": "^1.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
"@typescript-eslint/parser": "^7.12.0",
|
|
"@vates/async-each": "^1.0.0",
|
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
"benchmark": "^2.1.4",
|
|
"eslint": "^8.7.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-config-standard-jsx": "^11.0.0-1",
|
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
"eslint-import-resolver-custom-alias": "^1.3.2",
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-n": "^16.0.0",
|
|
"eslint-plugin-promise": "^6.0.0",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"eslint-plugin-vue": "^9.19.2",
|
|
"exec-promise": "^0.7.0",
|
|
"getopts": "^2.3.0",
|
|
"globby": "^13.1.1",
|
|
"handlebars": "^4.7.6",
|
|
"husky": "^8.0.2",
|
|
"lint-staged": "^15.0.2",
|
|
"lodash": "^4.18.0",
|
|
"pinia": "^3.0.1",
|
|
"prettier": "^3.0.1",
|
|
"promise-toolbox": "^0.21.0",
|
|
"semver": "^7.3.6",
|
|
"sorted-object": "^2.0.1",
|
|
"turbo": "^2.0.3",
|
|
"vite": "^8.0.0",
|
|
"vue-eslint-parser": "^9.4.3",
|
|
"vue-router": "5.0.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=14",
|
|
"yarn": "^1.7.0"
|
|
},
|
|
"lint-staged": {
|
|
"*": [
|
|
"scripts/run-changed-pkgs.js test",
|
|
"prettier --ignore-unknown --write"
|
|
],
|
|
"*.{{{,c,m}j,t}s{,x},vue}": [
|
|
"eslint"
|
|
],
|
|
".USAGE.md": "scripts/usage-to-readme.js --git-add",
|
|
"./CHANGELOG.unreleased.md": "sh -c 'scripts/gen-deps-list.js --check-order' --"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "TURBO_TELEMETRY_DISABLED=1 turbo run build --filter xo-server --filter xo-server-'*' --filter xo-web --filter @xen-orchestra/web --filter @xen-orchestra/backup-archive && yarn build:doc",
|
|
"build:doc": "yarn --cwd docs install && yarn --cwd docs build:xo-server",
|
|
"build:xo-lite": "turbo run build --filter @xen-orchestra/lite",
|
|
"clean": "scripts/run-script.js --parallel clean",
|
|
"dev": "scripts/run-script.js --parallel --concurrency 0 --verbose dev",
|
|
"prepare": "husky install",
|
|
"prettify": "prettier --ignore-unknown --write .",
|
|
"test": "npm run test-lint && npm run test-unit",
|
|
"test-integration": "scripts/run-script.js --parallel test-integration",
|
|
"test-lint": "eslint --ignore-path .gitignore --ignore-pattern packages/xo-web .",
|
|
"test-unit": "scripts/run-script.js --bail test"
|
|
},
|
|
"workspaces": [
|
|
"@*/*",
|
|
"packages/*"
|
|
],
|
|
"packageManager": "yarn@1.22.22"
|
|
}
|