Files
dancefinder-app/package.json
T

67 lines
2.2 KiB
JSON

{
"name": "dancefinder-app",
"version": "1.0.0",
"engines": {
"node": ">=20"
},
"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 --ext \".ts,.js,.cjs,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"lintfix": "yarn lint:js --fix && yarn lint:style --fix",
"codegen": "graphql-codegen && eslint --ext \".ts\" --ignore-path .gitignore graphql/generated/operations.ts --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-vue-apollo": "^4.1.0",
"@nuxt/devtools": "^1.0.8",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/i18n": "^8.1.1",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@typescript-eslint/parser": "^7.0.2",
"@vue/test-utils": "^2.4.4",
"esbuild": "^0.21.0",
"eslint": "^8.56.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.22.0",
"nuxt": "^3.10.3",
"postcss-html": "^1.6.0",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.3.3",
"vite-plugin-vuetify": "^2.0.1",
"vue": "^3.4.19",
"vue-router": "^4.3.0",
"vuetify": "^3.5.5"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@auth0/auth0-vue": "^2.3.3",
"@mdi/font": "^7.4.47",
"@pinia/nuxt": "^0.5.1",
"@sentry/browser": "^7.102.1",
"@vue/apollo-composable": "^4.0.1",
"apollo-link-sentry": "^3.3.0",
"date-fns": "^3.3.1",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"pinia": "^2.1.7",
"subscriptions-transport-ws": "^0.11.0"
}
}