Files
dancefinder-app/package.json
T

70 lines
2.2 KiB
JSON
Raw Normal View History

2019-01-15 13:21:24 +01:00
{
"name": "dancefinder-app",
"version": "1.0.0",
"author": "Joakim Olsson <joakim@unbound.se>",
"private": true,
"scripts": {
2024-02-05 16:48:02 +01:00
"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 --ext \".ts\" --ignore-path .gitignore graphql/generated/operations.ts --fix"
},
2019-01-15 13:21:24 +01:00
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@graphql-codegen/cli": "6.0.1",
"@graphql-codegen/fragment-matcher": "6.0.0",
"@graphql-codegen/typescript": "5.0.2",
"@graphql-codegen/typescript-operations": "5.0.2",
"@graphql-codegen/typescript-vue-apollo": "4.1.2",
"@nuxt/devtools": "2.6.5",
"@nuxt/eslint": "1.9.0",
2024-11-03 16:42:01 +00:00
"@nuxtjs/eslint-module": "4.1.0",
"@nuxtjs/i18n": "10.1.1",
"@stylistic/eslint-plugin": "5.5.0",
2024-11-03 16:42:01 +00:00
"@vue/test-utils": "2.4.6",
"esbuild": "0.25.11",
"eslint": "9.38.0",
2024-11-03 16:42:01 +00:00
"eslint-plugin-nuxt": "4.0.0",
2025-06-13 13:59:40 +00:00
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vue": "10.5.1",
"nuxt": "4.2.0",
"postcss-html": "1.8.0",
"sass": "1.93.2",
"stylelint": "16.25.0",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-standard": "39.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2",
"vite-plugin-vuetify": "2.1.2",
"vue": "3.5.22",
"vue-eslint-parser": "10.2.0",
"vue-router": "4.6.3",
"vuetify": "3.10.7"
},
2024-02-05 16:48:02 +01:00
"dependencies": {
"@apollo/client": "3.14.0",
"@auth0/auth0-vue": "2.4.0",
"@grafana/faro-web-sdk": "1.19.0",
"@grafana/faro-web-tracing": "1.19.0",
2024-11-03 16:42:01 +00:00
"@mdi/font": "7.4.47",
"@pinia/nuxt": "0.11.2",
"@vue/apollo-composable": "4.2.2",
2024-11-03 16:42:01 +00:00
"date-fns": "4.1.0",
"graphql": "16.11.0",
2024-11-03 18:00:28 +00:00
"graphql-tag": "2.12.6",
"pinia": "3.0.3",
"pinia-plugin-persistedstate": "4.5.0",
2024-11-03 16:42:01 +00:00
"subscriptions-transport-ws": "0.11.0"
},
"engines": {
"node": "24"
}
2019-01-15 13:21:24 +01:00
}