644d81fd2c
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [stylelint](https://stylelint.io) ([source](https://github.com/stylelint/stylelint)) | [`17.4.0` → `17.5.0`](https://renovatebot.com/diffs/npm/stylelint/17.4.0/17.5.0) |  |  | --- ### Release Notes <details> <summary>stylelint/stylelint (stylelint)</summary> ### [`v17.5.0`](https://github.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#1750---2026-03-19) [Compare Source](https://github.com/stylelint/stylelint/compare/17.4.0...17.5.0) It deprecates two rule options, adds 1 rule option and fixes 7 bugs. We've also released [`2.1.0`](https://github.com/stylelint/vscode-stylelint/releases/tag/2.1.0) of [our VS Code extension](https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint), which adds 8 new requested features, and our [first release](https://www.npmjs.com/package/@​stylelint/language-server) of the Stylelint Language Server. - Deprecated: `*syntax` options from `declaration-property-value-no-unknown` ([#​9102](https://github.com/stylelint/stylelint/pull/9102)) ([@​ragini-pandey](https://github.com/ragini-pandey)). - Added: `ignoreMediaFeatureNameValues: {}` to `media-feature-name-value-no-unknown` ([#​8976](https://github.com/stylelint/stylelint/pull/8976)) ([@​kovsu](https://github.com/kovsu)). - Fixed: `node_modules` not ignored when using `codeFilename` in Node.js API ([#​9130](https://github.com/stylelint/stylelint/pull/9130)) ([@​adalinesimonian](https://github.com/adalinesimonian)). - Fixed: `Error TS7016` for imported `css-tree` types ([#​9133](https://github.com/stylelint/stylelint/pull/9133)) ([@​ragini-pandey](https://github.com/ragini-pandey)). - Fixed: `declaration-property-value-keyword-no-deprecated` false positives for function arguments ([#​9116](https://github.com/stylelint/stylelint/pull/9116)) ([@​ragini-pandey](https://github.com/ragini-pandey)). - Fixed: `declaration-property-value-no-unknown` false positives for `calc-size()` containing `size` keyword ([#​9105](https://github.com/stylelint/stylelint/pull/9105)) ([@​hriztam](https://github.com/hriztam)). - Fixed: `no-descending-specificity` & `no-duplicate-selectors` false negatives for equivalent compound selectors ([#​8977](https://github.com/stylelint/stylelint/pull/8977)) ([@​kovsu](https://github.com/kovsu)). - Fixed: `no-invalid-position-declaration` false positives for `@mixin` and `@scope` ([#​9120](https://github.com/stylelint/stylelint/pull/9120)) ([@​ragini-pandey](https://github.com/ragini-pandey)). - Fixed: `property-no-unknown` false negatives for `types` ([#​9117](https://github.com/stylelint/stylelint/pull/9117)) ([@​Mouvedia](https://github.com/Mouvedia)). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My43Ni4yIiwidXBkYXRlZEluVmVyIjoiNDMuNzYuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #2836 Co-authored-by: Renovate Bot <renovate@unbound.se> Co-committed-by: Renovate Bot <renovate@unbound.se>
68 lines
2.1 KiB
JSON
68 lines
2.1 KiB
JSON
{
|
|
"name": "dancefinder-app",
|
|
"version": "1.0.0",
|
|
"author": "Joakim Olsson <joakim@unbound.se>",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "nuxt build",
|
|
"dev": "nuxt dev",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"postinstall": "nuxt prepare",
|
|
"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",
|
|
"codegen": "graphql-codegen && eslint graphql/generated/operations.ts --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "20.5.0",
|
|
"@commitlint/config-conventional": "20.5.0",
|
|
"@graphql-codegen/cli": "6.2.1",
|
|
"@graphql-codegen/fragment-matcher": "6.0.0",
|
|
"@graphql-codegen/typescript": "5.0.9",
|
|
"@graphql-codegen/typescript-operations": "5.0.9",
|
|
"@graphql-codegen/typescript-vue-apollo": "5.0.0",
|
|
"@nuxt/devtools": "3.2.4",
|
|
"@nuxt/eslint": "1.15.2",
|
|
"@nuxtjs/i18n": "10.2.3",
|
|
"@stylistic/eslint-plugin": "5.10.0",
|
|
"@vue/test-utils": "2.4.6",
|
|
"esbuild": "0.27.4",
|
|
"eslint": "10.0.3",
|
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
|
"eslint-plugin-vue": "10.8.0",
|
|
"nuxt": "4.4.2",
|
|
"postcss-html": "1.8.1",
|
|
"sass": "1.98.0",
|
|
"stylelint": "17.5.0",
|
|
"stylelint-config-recommended-vue": "1.6.1",
|
|
"stylelint-config-standard": "40.0.0",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.57.1",
|
|
"vite-plugin-vuetify": "2.1.3",
|
|
"vue": "3.5.30",
|
|
"vue-eslint-parser": "10.4.0",
|
|
"vue-router": "4.6.4",
|
|
"vuetify": "3.12.3"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/client": "3.14.1",
|
|
"@auth0/auth0-vue": "2.5.0",
|
|
"@grafana/faro-web-sdk": "2.3.0",
|
|
"@grafana/faro-web-tracing": "2.3.0",
|
|
"@mdi/font": "7.4.47",
|
|
"@pinia/nuxt": "0.11.3",
|
|
"@vue/apollo-composable": "4.2.2",
|
|
"date-fns": "4.1.0",
|
|
"graphql": "16.13.1",
|
|
"graphql-tag": "2.12.6",
|
|
"pinia": "3.0.4",
|
|
"pinia-plugin-persistedstate": "4.7.1",
|
|
"subscriptions-transport-ws": "0.11.0"
|
|
},
|
|
"engines": {
|
|
"node": "24"
|
|
}
|
|
}
|