2025-11-22 16:42:35 +01:00
|
|
|
{
|
|
|
|
|
"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": {
|
2026-03-12 22:11:06 +00:00
|
|
|
"@apollo/client": "3.14.1",
|
2026-05-11 12:12:03 +00:00
|
|
|
"@auth0/auth0-vue": "2.7.0",
|
2025-11-22 16:55:00 +00:00
|
|
|
"@vue/apollo-composable": "4.2.2",
|
2026-05-09 13:50:21 +00:00
|
|
|
"graphql": "16.14.0",
|
2026-03-26 20:12:27 +00:00
|
|
|
"graphql-ws": "6.0.8",
|
2026-05-21 10:39:44 +00:00
|
|
|
"nuxt": "4.4.6",
|
2026-05-15 09:36:14 +00:00
|
|
|
"vue": "3.5.34",
|
2026-01-28 23:11:15 +00:00
|
|
|
"vuetify-nuxt-module": "0.19.5"
|
2025-11-22 16:42:35 +01:00
|
|
|
},
|
|
|
|
|
"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": {
|
2026-05-15 16:10:03 +00:00
|
|
|
"@commitlint/cli": "21.0.1",
|
|
|
|
|
"@commitlint/config-conventional": "21.0.1",
|
2026-05-03 18:37:12 +00:00
|
|
|
"@graphql-codegen/cli": "7.0.0",
|
|
|
|
|
"@graphql-codegen/typed-document-node": "7.0.0",
|
2026-05-09 15:12:03 +00:00
|
|
|
"@graphql-codegen/typescript": "6.0.1",
|
2026-05-12 10:12:05 +00:00
|
|
|
"@graphql-codegen/typescript-operations": "6.0.2",
|
2026-04-22 08:32:02 +00:00
|
|
|
"@graphql-codegen/typescript-vue-apollo": "5.0.1",
|
2026-03-17 02:51:21 +00:00
|
|
|
"@nuxt/devtools": "3.2.4",
|
2026-02-24 10:08:51 +00:00
|
|
|
"@nuxt/eslint": "1.15.2",
|
2025-11-22 16:55:00 +00:00
|
|
|
"@nuxtjs/stylelint-module": "5.2.1",
|
2026-03-06 04:16:40 +00:00
|
|
|
"@stylistic/eslint-plugin": "5.10.0",
|
2026-05-18 06:12:57 +00:00
|
|
|
"@vitejs/plugin-vue": "6.0.7",
|
2026-05-23 09:13:49 +00:00
|
|
|
"@vitest/coverage-v8": "4.1.7",
|
2026-05-03 12:12:48 +00:00
|
|
|
"@vue/test-utils": "2.4.10",
|
2026-05-18 15:14:53 +00:00
|
|
|
"eslint": "10.4.0",
|
2026-04-09 20:09:34 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "13.0.0",
|
2026-05-08 14:12:13 +00:00
|
|
|
"eslint-plugin-vue": "10.9.1",
|
2026-05-03 09:12:46 +00:00
|
|
|
"jsdom": "29.1.1",
|
2026-01-13 15:14:57 +00:00
|
|
|
"postcss-html": "1.8.1",
|
2026-05-17 10:12:25 +00:00
|
|
|
"stylelint": "17.11.1",
|
2025-11-22 16:55:00 +00:00
|
|
|
"stylelint-config-recommended-vue": "1.6.1",
|
2026-01-18 19:10:51 +00:00
|
|
|
"stylelint-config-standard": "40.0.0",
|
2026-04-20 01:16:36 +00:00
|
|
|
"typescript": "6.0.3",
|
2026-05-21 18:12:42 +00:00
|
|
|
"typescript-eslint": "8.59.4",
|
2026-05-23 09:13:49 +00:00
|
|
|
"vitest": "4.1.7",
|
2026-02-14 02:11:01 +00:00
|
|
|
"vue-eslint-parser": "10.4.0"
|
2026-05-15 09:36:14 +00:00
|
|
|
},
|
|
|
|
|
"overrides": {
|
|
|
|
|
"@vue/server-renderer": "$vue"
|
2025-11-22 16:42:35 +01:00
|
|
|
}
|
|
|
|
|
}
|