Files
dancefinder-app/package.json
T

83 lines
2.7 KiB
JSON
Raw Normal View History

2019-01-15 13:21:24 +01:00
{
"name": "dancefinder-app",
"version": "1.0.0",
"engines": {
2021-11-19 20:20:04 +01:00
"node": ">=16"
2019-01-15 13:21:24 +01:00
},
"author": "Joakim Olsson <joakim@unbound.se>",
"private": true,
"scripts": {
2022-08-16 06:55:09 +02:00
"dev": "nuxi dev",
"build": "nuxi generate",
"start": "nuxi preview",
"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"
},
2019-01-15 13:21:24 +01:00
"dependencies": {
"@apollo/client": "^3.7.15",
"@auth0/auth0-spa-js": "^2.0.8",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@graphql-codegen/typescript-vue-apollo": "^3.3.7",
"@nuxtjs/i18n": "^7.3.1",
"@nuxtjs/sentry": "^7.3.0",
"@nuxtjs/vuetify": "^1.12.3",
"@snyk/protect": "^1.1182.0",
"@vue/apollo-composable": "^4.0.0-beta.7",
"@vueuse/core": "^10.2.0",
"@vueuse/nuxt": "^10.1.2",
"core-js": "3",
"date-fns": "^2.30.0",
"graphql": "^15.8.0",
"graphql-tag": "^2.12.6",
"node-sass": "^9.0.0",
2022-08-16 06:55:09 +02:00
"nuxt-edge": "latest",
"sass-loader": "^10.1.1",
"vue": "2.7.14",
"vue-demi": "^0.14.5",
"vue-server-renderer": "2.7.14",
"vue-template-compiler": "2.7.14",
"vuetify": "^2.6.15",
"vuex": "3.6.2"
2019-01-15 13:21:24 +01:00
},
"devDependencies": {
"@babel/runtime-corejs3": "^7.22.5",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/fragment-matcher": "^5.0.0",
2022-08-16 06:55:09 +02:00
"@nuxt/bridge": "npm:@nuxt/bridge-edge",
"@nuxt/types": "^2.17.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/stylelint-module": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
2020-01-25 14:59:14 +01:00
"babel-eslint": "^10.0.3",
"cli-engine": "^4.7.6",
"cypress": "^12.14.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.15.0",
"husky": "^8.0.3",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"typescript": "^5.1.3",
"wait-on": "^7.0.1"
},
"snyk": true
2019-01-15 13:21:24 +01:00
}