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,
|
2022-08-03 18:40:05 +02:00
|
|
|
"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"
|
|
|
|
|
},
|
2019-01-15 13:21:24 +01:00
|
|
|
"dependencies": {
|
2022-06-23 04:37:38 +00:00
|
|
|
"@apollo/client": "^3.6.9",
|
2022-07-20 04:40:39 +00:00
|
|
|
"@auth0/auth0-spa-js": "^1.22.2",
|
2022-08-09 09:42:41 +00:00
|
|
|
"@graphql-codegen/typescript": "^2.7.3",
|
2022-08-09 09:59:54 +00:00
|
|
|
"@graphql-codegen/typescript-operations": "^2.5.3",
|
2022-08-09 10:19:11 +00:00
|
|
|
"@graphql-codegen/typescript-vue-apollo": "^3.3.3",
|
2022-08-04 04:38:20 +00:00
|
|
|
"@nuxtjs/composition-api": "^0.33.1",
|
2022-08-02 04:37:56 +00:00
|
|
|
"@nuxtjs/i18n": "^7.2.3",
|
2019-02-04 08:56:55 +01:00
|
|
|
"@nuxtjs/moment": "^1.1.0",
|
2022-02-03 04:39:09 +00:00
|
|
|
"@nuxtjs/sentry": "^5.1.7",
|
2021-12-13 04:51:10 +00:00
|
|
|
"@nuxtjs/vuetify": "^1.12.3",
|
2022-08-05 04:38:36 +00:00
|
|
|
"@snyk/protect": "^1.984.0",
|
2022-07-18 14:39:46 +00:00
|
|
|
"@vue/apollo-composable": "^4.0.0-alpha.19",
|
2022-08-05 04:39:14 +00:00
|
|
|
"@vueuse/core": "^9.1.0",
|
2022-08-05 13:05:35 +00:00
|
|
|
"@vueuse/nuxt": "^9.1.0",
|
2020-01-21 15:51:51 +01:00
|
|
|
"core-js": "3",
|
2022-08-03 18:40:05 +02:00
|
|
|
"date-fns": "^2.29.1",
|
2022-07-05 23:05:08 +02:00
|
|
|
"graphql": "^15.8.0",
|
2021-11-08 05:24:09 +00:00
|
|
|
"graphql-tag": "^2.12.6",
|
2022-07-07 04:38:29 +00:00
|
|
|
"moment": "^2.29.4",
|
2021-12-28 04:40:27 +00:00
|
|
|
"node-sass": "^7.0.1",
|
2021-11-09 22:22:27 +00:00
|
|
|
"nuxt": "^2.15.8",
|
2022-08-03 18:40:05 +02:00
|
|
|
"sass-loader": "^10.1.1",
|
|
|
|
|
"vue": "2.7.8",
|
|
|
|
|
"vue-demi": "^0.13.6",
|
2021-11-16 04:57:34 +00:00
|
|
|
"vue-numeral-filter": "^2.2.0",
|
2022-08-03 18:40:05 +02:00
|
|
|
"vue-server-renderer": "2.7.8",
|
|
|
|
|
"vue-template-compiler": "2.7.8",
|
|
|
|
|
"vuetify": "^2.6.8",
|
|
|
|
|
"vuex": "3.6.2"
|
2019-01-15 13:21:24 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-07-18 14:42:51 +00:00
|
|
|
"@babel/runtime-corejs3": "^7.18.9",
|
2022-08-09 04:42:14 +00:00
|
|
|
"@graphql-codegen/cli": "^2.11.5",
|
2022-07-10 09:50:38 +00:00
|
|
|
"@graphql-codegen/fragment-matcher": "^3.3.0",
|
2022-08-03 18:40:05 +02:00
|
|
|
"@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",
|
2020-01-25 14:59:14 +01:00
|
|
|
"babel-eslint": "^10.0.3",
|
|
|
|
|
"cli-engine": "^4.7.6",
|
2022-08-03 04:41:01 +00:00
|
|
|
"cypress": "^10.4.0",
|
2022-08-01 04:40:56 +00:00
|
|
|
"eslint": "^8.21.0",
|
2021-11-23 04:52:13 +00:00
|
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
2022-03-03 04:40:14 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-11-09 19:20:29 +00:00
|
|
|
"eslint-loader": "^4.0.2",
|
2022-04-06 04:41:36 +00:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2022-08-03 18:40:05 +02:00
|
|
|
"eslint-plugin-nuxt": "^3.2.0",
|
2022-07-01 04:48:17 +00:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-07-26 04:48:44 +00:00
|
|
|
"eslint-plugin-vue": "^9.3.0",
|
2022-08-03 18:40:05 +02:00
|
|
|
"husky": "^8.0.1",
|
|
|
|
|
"postcss-html": "^1.5.0",
|
2022-06-17 04:47:05 +00:00
|
|
|
"prettier": "^2.7.1",
|
2022-08-03 18:40:05 +02:00
|
|
|
"stylelint": "^14.9.1",
|
|
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
|
|
|
|
"stylelint-config-recommended-vue": "^1.4.0",
|
|
|
|
|
"stylelint-config-standard": "^26.0.0",
|
2022-02-12 04:41:33 +00:00
|
|
|
"wait-on": "^6.0.1"
|
2019-07-04 01:01:13 +00:00
|
|
|
},
|
|
|
|
|
"snyk": true
|
2019-01-15 13:21:24 +01:00
|
|
|
}
|