Files
dancefinder-app/package.json
T

85 lines
2.7 KiB
JSON

{
"name": "dancefinder-app",
"version": "1.0.0",
"engines": {
"node": ">=16"
},
"author": "Joakim Olsson <joakim@unbound.se>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html,vue}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:style # ignore prettier for now # && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix",
"prepare": "husky install",
"test": "jest",
"codegen": "graphql-codegen"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@auth0/auth0-spa-js": "^1.22.2",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-codegen/typescript-vue-apollo": "^3.3.2",
"@nuxtjs/composition-api": "^0.33.1",
"@nuxtjs/i18n": "^7.2.3",
"@nuxtjs/moment": "^1.1.0",
"@nuxtjs/sentry": "^5.1.7",
"@nuxtjs/vuetify": "^1.12.3",
"@snyk/protect": "^1.984.0",
"@vue/apollo-composable": "^4.0.0-alpha.19",
"@vueuse/core": "^9.1.0",
"@vueuse/nuxt": "^9.1.0",
"core-js": "3",
"date-fns": "^2.29.1",
"graphql": "^15.8.0",
"graphql-tag": "^2.12.6",
"moment": "^2.29.4",
"node-sass": "^7.0.1",
"nuxt": "^2.15.8",
"sass-loader": "^10.1.1",
"vue": "2.7.8",
"vue-demi": "^0.13.6",
"vue-numeral-filter": "^2.2.0",
"vue-server-renderer": "2.7.8",
"vue-template-compiler": "2.7.8",
"vuetify": "^2.6.8",
"vuex": "3.6.2"
},
"devDependencies": {
"@babel/runtime-corejs3": "^7.18.9",
"@graphql-codegen/cli": "^2.11.5",
"@graphql-codegen/fragment-matcher": "^3.3.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/stylelint-module": "^4.1.0",
"babel-eslint": "^10.0.3",
"cli-engine": "^4.7.6",
"cypress": "^10.4.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.1",
"postcss-html": "^1.5.0",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"wait-on": "^6.0.1"
},
"snyk": true
}