Files
schemas-app/package.json
T
renovate 69e964b930
schemas-app / build (push) Successful in 1m37s
schemas-app / deploy-prod (push) Successful in 1m15s
chore(deps): update dependency eslint-plugin-simple-import-sort to v14 (#293)
This PR contains the following updates:

| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) | [`13.0.0` → `14.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-simple-import-sort/13.0.0/14.0.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-simple-import-sort/14.0.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-simple-import-sort/13.0.0/14.0.0?slim=true) |

---

### Release Notes

<details>
<summary>lydell/eslint-plugin-simple-import-sort (eslint-plugin-simple-import-sort)</summary>

### [`v14.0.0`](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/HEAD/CHANGELOG.md#Version-1400-2026-07-16)

[Compare Source](https://github.com/lydell/eslint-plugin-simple-import-sort/compare/v13.0.0...v14.0.0)

ES2022 allows string literals as module export names ("arbitrary module namespace names"):

```js
export { yukuTs as "yuku-ts" };
import { "a-b" as c } from "a";
```

This release adds support for such quotes names. Previously, those were sorted oddly, and the autofix could suggest changes that wasn’t valid syntax.

This is only a breaking change if you use string literals as module export names, and only in the form of that you need to autofix your files.

Thanks to Kamronbek\_Juraev ([@&#8203;KAMRONBEK](https://github.com/KAMRONBEK)) for fixing this!

</details>

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, 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 [Mend Renovate](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTcuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI1Ny4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->Reviewed-on: #293

Co-authored-by: Renovate Bot <renovate@unbound.se>
2026-07-20 08:10:25 +00: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.8.0",
"@vue/apollo-composable": "4.2.2",
"graphql": "16.14.2",
"graphql-ws": "6.1.0",
"nuxt": "4.4.8",
"vue": "3.5.40",
"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.2.1",
"@commitlint/config-conventional": "21.2.0",
"@graphql-codegen/cli": "7.2.0",
"@graphql-codegen/typed-document-node": "7.1.0",
"@graphql-codegen/typescript": "6.1.0",
"@graphql-codegen/typescript-operations": "6.1.0",
"@graphql-codegen/typescript-vue-apollo": "5.0.1",
"@nuxt/devtools": "3.2.4",
"@nuxt/eslint": "1.16.0",
"@nuxtjs/stylelint-module": "5.2.1",
"@stylistic/eslint-plugin": "5.10.0",
"@vitejs/plugin-vue": "6.0.8",
"@vitest/coverage-v8": "4.1.10",
"@vue/test-utils": "2.4.11",
"eslint": "10.7.0",
"eslint-plugin-simple-import-sort": "14.0.0",
"eslint-plugin-vue": "10.9.2",
"jsdom": "29.1.1",
"postcss-html": "1.8.1",
"stylelint": "17.14.0",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-standard": "40.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vitest": "4.1.10",
"vue-eslint-parser": "10.4.1"
},
"overrides": {
"@vue/server-renderer": "$vue"
}
}