gradido/admin/package.json
2025-05-23 20:36:03 +02:00

103 lines
3.3 KiB
JSON

{
"name": "admin",
"description": "Administration Interface for Gradido",
"main": "index.js",
"author": "Gradido Academy - https://www.gradido.net",
"version": "2.6.0",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "vite preview",
"postbuild": "uname | grep -q Linux && find build -type f -regex '.*\\.\\(html\\|js\\|css\\|svg\\|json\\)' -exec gzip -9 -k {} + || echo 'Skip precompress on non-Linux'",
"lint": "eslint --max-warnings=0 --ext .js,.vue,.json .",
"lint:fix": "eslint --max-warnings=0 --ext .js,.vue,.json . --fix",
"stylelint": "stylelint --max-warnings=0 '**/*.{scss,vue}'",
"stylelint:fix": "stylelint --max-warnings=0 '**/*.{scss,vue}' --fix",
"test": "cross-env TZ=UTC vitest run",
"test:coverage": "cross-env TZ=UTC vitest run --coverage",
"test:debug": "cross-env TZ=UTC node --inspect-brk ./node_modules/vitest/vitest.mjs",
"test:watch": "cross-env TZ=UTC vitest",
"locales": "scripts/sort.sh",
"locales:fix": "scripts/sort.sh --fix"
},
"dependencies": {
"@iconify/json": "^2.2.228",
"@popperjs/core": "^2.11.8",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/apollo-composable": "^4.0.2",
"@vue/apollo-option": "^4.0.0",
"@vue/compat": "3.5.13",
"apollo-boost": "^0.4.9",
"bootstrap": "^5.3.3",
"bootstrap-vue-next": "0.26.8",
"date-fns": "^2.29.3",
"graphql": "^15.10.1",
"graphql-tag": "^2.12.6",
"identity-obj-proxy": "^3.0.0",
"portal-vue": "3.0.0",
"qrcanvas-vue": "3.0.0",
"regenerator-runtime": "^0.13.9",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.4.14",
"vite-plugin-commonjs": "^0.10.1",
"vue": "3.5.13",
"vue-apollo": "3.1.2",
"vue-i18n": "9.13.1",
"vue-router": "4.4.0",
"vue3-datepicker": "^0.4.0",
"vuex": "4.1.0",
"vuex-persistedstate": "4.1.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@apollo/client": "^3.10.8",
"@intlify/eslint-plugin-vue-i18n": "^1.4.0",
"@vitest/coverage-v8": "^2.0.5",
"@vue/compiler-sfc": "^3.4.32",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/test-utils": "^2.4.6",
"config-schema": "*",
"cross-env": "^7.0.3",
"dotenv-webpack": "^7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "8.7.1",
"joi": "^17.13.3",
"jsdom": "^25.0.0",
"lightningcss": "^1.30.1",
"mock-apollo-client": "^1.2.1",
"postcss-html": "^1.8.0",
"prettier": "^3.5.3",
"sass": "^1.77.8",
"stylelint": "^16.19.1",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-config-standard-scss": "^14.0.0",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-graphql-loader": "^4.0.4",
"vitest": "^2.0.5",
"vitest-canvas-mock": "^0.3.3",
"webpack": "^5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
},
"engines": {
"node": ">=18"
}
}