Files
schemas-app/package.json
T
argoyle 4af45a9da9
schemas-app / build (pull_request) Failing after 1m51s
schemas-app / deploy-prod (pull_request) Has been skipped
fix(deps): pin @vue/server-renderer to vue via overrides
Renovate's vue-monorepo group only bumps direct deps. @vue/server-renderer
is pulled transitively via @vue/test-utils and has an exact-pin peer on vue,
so vue minor bumps fail ERESOLVE and the artifact lockfile update fails.

Using npm overrides with $vue keeps @vue/server-renderer in lockstep with
vue automatically. Lockfile regenerated inside node:24-bookworm-slim so the
Linux-side optional-dep graph (@emnapi/core, @emnapi/runtime, etc.) is
preserved for the CI build.
2026-05-15 11:25:40 +02:00

68 lines
2.1 KiB
JSON

{
"name": "schemas-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"codegen": "graphql-codegen --config codegen.yml",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint:js": "eslint .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"lintfix": "eslint --fix . && npm run lint:style --fix"
},
"dependencies": {
"@apollo/client": "3.14.1",
"@auth0/auth0-vue": "2.7.0",
"@vue/apollo-composable": "4.2.2",
"graphql": "16.14.0",
"graphql-ws": "6.0.8",
"nuxt": "4.4.5",
"vue": "3.5.34",
"vuetify-nuxt-module": "0.19.5"
},
"version": "1.0.0",
"description": "Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "21.0.0",
"@commitlint/config-conventional": "21.0.0",
"@graphql-codegen/cli": "7.0.0",
"@graphql-codegen/typed-document-node": "7.0.0",
"@graphql-codegen/typescript": "6.0.1",
"@graphql-codegen/typescript-operations": "6.0.2",
"@graphql-codegen/typescript-vue-apollo": "5.0.1",
"@nuxt/devtools": "3.2.4",
"@nuxt/eslint": "1.15.2",
"@nuxtjs/stylelint-module": "5.2.1",
"@stylistic/eslint-plugin": "5.10.0",
"@vitejs/plugin-vue": "6.0.6",
"@vitest/coverage-v8": "4.1.6",
"@vue/test-utils": "2.4.10",
"eslint": "10.3.0",
"eslint-plugin-simple-import-sort": "13.0.0",
"eslint-plugin-vue": "10.9.1",
"jsdom": "29.1.1",
"postcss-html": "1.8.1",
"stylelint": "17.11.0",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-standard": "40.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.3",
"vitest": "4.1.6",
"vue-eslint-parser": "10.4.0"
},
"overrides": {
"@vue/server-renderer": "$vue"
}
}