2019-01-15 13:21:24 +01:00
|
|
|
{
|
|
|
|
|
"name": "dancefinder-app",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"engines": {
|
2024-02-02 14:46:42 +01:00
|
|
|
"node": ">=20"
|
2019-01-15 13:21:24 +01:00
|
|
|
},
|
|
|
|
|
"author": "Joakim Olsson <joakim@unbound.se>",
|
|
|
|
|
"private": true,
|
2022-08-03 18:40:05 +02:00
|
|
|
"scripts": {
|
2024-02-05 16:48:02 +01:00
|
|
|
"build": "nuxt build",
|
|
|
|
|
"dev": "nuxt dev",
|
|
|
|
|
"generate": "nuxt generate",
|
|
|
|
|
"preview": "nuxt preview",
|
|
|
|
|
"postinstall": "nuxt prepare",
|
2024-05-28 16:57:02 +00:00
|
|
|
"lint:js": "eslint .",
|
2022-08-03 18:40:05 +02:00
|
|
|
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
|
2024-02-02 14:46:42 +01:00
|
|
|
"lint": "yarn lint:js && yarn lint:style",
|
2024-05-28 16:57:02 +00:00
|
|
|
"lintfix": "eslint --fix . && yarn lint:style --fix",
|
2024-02-02 16:38:51 +01:00
|
|
|
"codegen": "graphql-codegen && eslint --ext \".ts\" --ignore-path .gitignore graphql/generated/operations.ts --fix"
|
2022-08-03 18:40:05 +02:00
|
|
|
},
|
2019-01-15 13:21:24 +01:00
|
|
|
"devDependencies": {
|
2024-11-03 16:42:01 +00:00
|
|
|
"@commitlint/cli": "19.5.0",
|
|
|
|
|
"@commitlint/config-conventional": "19.5.0",
|
|
|
|
|
"@graphql-codegen/cli": "5.0.3",
|
|
|
|
|
"@graphql-codegen/fragment-matcher": "5.0.2",
|
|
|
|
|
"@graphql-codegen/typescript": "4.1.1",
|
|
|
|
|
"@graphql-codegen/typescript-operations": "4.3.1",
|
|
|
|
|
"@graphql-codegen/typescript-vue-apollo": "4.1.1",
|
|
|
|
|
"@nuxt/devtools": "1.6.0",
|
|
|
|
|
"@nuxt/eslint": "0.6.1",
|
|
|
|
|
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
|
|
|
|
"@nuxtjs/eslint-module": "4.1.0",
|
|
|
|
|
"@nuxtjs/i18n": "9.0.0",
|
|
|
|
|
"@pinia-plugin-persistedstate/nuxt": "1.2.1",
|
|
|
|
|
"@vue/test-utils": "2.4.6",
|
|
|
|
|
"esbuild": "0.24.0",
|
|
|
|
|
"eslint": "9.14.0",
|
|
|
|
|
"eslint-plugin-nuxt": "4.0.0",
|
|
|
|
|
"eslint-plugin-vue": "9.30.0",
|
|
|
|
|
"nuxt": "3.13.2",
|
|
|
|
|
"postcss-html": "1.7.0",
|
|
|
|
|
"sass": "1.80.6",
|
|
|
|
|
"stylelint": "16.10.0",
|
|
|
|
|
"stylelint-config-recommended-vue": "1.5.0",
|
|
|
|
|
"stylelint-config-standard": "36.0.1",
|
|
|
|
|
"typescript": "5.6.3",
|
2024-10-29 15:00:43 +00:00
|
|
|
"typescript-eslint": "8.12.2",
|
2024-11-03 16:42:01 +00:00
|
|
|
"vite-plugin-vuetify": "2.0.4",
|
|
|
|
|
"vue": "3.5.12",
|
|
|
|
|
"vue-router": "4.4.5",
|
|
|
|
|
"vuetify": "3.7.3"
|
2019-07-04 01:01:13 +00:00
|
|
|
},
|
2024-02-05 16:48:02 +01:00
|
|
|
"dependencies": {
|
2024-11-03 18:00:28 +00:00
|
|
|
"@apollo/client": "3.11.8",
|
2024-11-03 16:42:01 +00:00
|
|
|
"@auth0/auth0-vue": "2.3.3",
|
|
|
|
|
"@mdi/font": "7.4.47",
|
|
|
|
|
"@pinia/nuxt": "0.6.1",
|
|
|
|
|
"@sentry/nuxt": "8.36.0",
|
|
|
|
|
"@vue/apollo-composable": "4.2.1",
|
|
|
|
|
"apollo-link-sentry": "4.0.0",
|
|
|
|
|
"date-fns": "4.1.0",
|
|
|
|
|
"graphql": "16.9.0",
|
2024-11-03 18:00:28 +00:00
|
|
|
"graphql-tag": "2.12.6",
|
2024-11-03 21:09:24 +00:00
|
|
|
"pinia": "2.2.6",
|
2024-11-03 16:42:01 +00:00
|
|
|
"subscriptions-transport-ws": "0.11.0"
|
2024-02-05 16:48:02 +01:00
|
|
|
}
|
2019-01-15 13:21:24 +01:00
|
|
|
}
|