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": {
|
2022-08-16 06:55:09 +02:00
|
|
|
"dev": "nuxi dev",
|
|
|
|
|
"build": "nuxi generate",
|
|
|
|
|
"start": "nuxi preview",
|
2022-08-03 18:40:05 +02:00
|
|
|
"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": {
|
2024-02-02 04:38:31 +00:00
|
|
|
"@apollo/client": "^3.9.2",
|
2023-12-12 04:39:00 +00:00
|
|
|
"@auth0/auth0-spa-js": "^2.1.3",
|
2023-06-20 04:38:34 +00:00
|
|
|
"@graphql-codegen/typescript": "^4.0.1",
|
2023-06-20 05:51:44 +00:00
|
|
|
"@graphql-codegen/typescript-operations": "^4.0.1",
|
2023-10-25 04:38:48 +00:00
|
|
|
"@graphql-codegen/typescript-vue-apollo": "^4.1.0",
|
2023-01-10 04:38:10 +00:00
|
|
|
"@nuxtjs/i18n": "^7.3.1",
|
2023-11-28 04:38:30 +00:00
|
|
|
"@nuxtjs/sentry": "^8.0.6",
|
2021-12-13 04:51:10 +00:00
|
|
|
"@nuxtjs/vuetify": "^1.12.3",
|
2023-10-17 04:39:46 +00:00
|
|
|
"@pinia/nuxt": "^0.5.1",
|
2024-01-31 04:39:50 +00:00
|
|
|
"@snyk/protect": "^1.1276.0",
|
2024-01-25 04:39:34 +00:00
|
|
|
"@vue/apollo-composable": "^4.0.1",
|
2024-01-14 04:39:38 +00:00
|
|
|
"@vueuse/core": "^10.7.2",
|
2020-01-21 15:51:51 +01:00
|
|
|
"core-js": "3",
|
2024-01-23 04:40:39 +00:00
|
|
|
"date-fns": "^3.3.1",
|
2023-09-20 04:40:24 +00:00
|
|
|
"graphql": "^16.8.1",
|
2021-11-08 05:24:09 +00:00
|
|
|
"graphql-tag": "^2.12.6",
|
2023-05-21 04:39:13 +00:00
|
|
|
"node-sass": "^9.0.0",
|
2022-08-16 06:55:09 +02:00
|
|
|
"nuxt-edge": "latest",
|
2023-10-14 04:39:42 +00:00
|
|
|
"pinia": "^2.1.7",
|
2023-12-17 04:39:15 +00:00
|
|
|
"pinia-plugin-persistedstate": "^3.2.1",
|
2022-08-03 18:40:05 +02:00
|
|
|
"sass-loader": "^10.1.1",
|
2023-12-25 04:40:20 +00:00
|
|
|
"vue": "2.7.16",
|
2024-02-02 04:40:31 +00:00
|
|
|
"vue-demi": "^0.14.7",
|
2023-12-25 04:39:54 +00:00
|
|
|
"vue-server-renderer": "2.7.16",
|
2023-12-25 04:40:20 +00:00
|
|
|
"vue-template-compiler": "2.7.16",
|
2023-08-10 04:40:16 +00:00
|
|
|
"vuetify": "^2.7.1"
|
2019-01-15 13:21:24 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-01-26 04:41:21 +00:00
|
|
|
"@babel/runtime-corejs3": "^7.23.9",
|
2023-07-26 04:41:30 +00:00
|
|
|
"@graphql-codegen/cli": "^5.0.0",
|
2023-05-26 04:42:27 +00:00
|
|
|
"@graphql-codegen/fragment-matcher": "^5.0.0",
|
2022-08-16 06:55:09 +02:00
|
|
|
"@nuxt/bridge": "npm:@nuxt/bridge-edge",
|
2024-01-13 04:42:09 +00:00
|
|
|
"@nuxt/types": "^2.17.3",
|
2023-08-30 04:42:34 +00:00
|
|
|
"@nuxtjs/eslint-config-typescript": "^12.1.0",
|
2023-05-19 08:22:37 +00:00
|
|
|
"@nuxtjs/eslint-module": "^4.1.0",
|
2023-05-19 08:32:46 +00:00
|
|
|
"@nuxtjs/stylelint-module": "^5.1.0",
|
2023-07-11 18:48:41 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
2023-07-11 04:42:20 +00:00
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2020-01-25 14:59:14 +01:00
|
|
|
"babel-eslint": "^10.0.3",
|
|
|
|
|
"cli-engine": "^4.7.6",
|
2024-01-31 04:43:25 +00:00
|
|
|
"cypress": "^13.6.4",
|
2023-12-16 04:42:35 +00:00
|
|
|
"eslint": "^8.56.0",
|
2021-11-23 04:52:13 +00:00
|
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
2023-12-03 04:42:31 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2021-11-09 19:20:29 +00:00
|
|
|
"eslint-loader": "^4.0.2",
|
2023-12-15 04:42:59 +00:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2022-09-01 04:42:00 +00:00
|
|
|
"eslint-plugin-nuxt": "^4.0.0",
|
2024-01-10 04:46:28 +00:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-02-01 04:42:47 +00:00
|
|
|
"eslint-plugin-vue": "^9.21.1",
|
2024-02-02 04:43:13 +00:00
|
|
|
"husky": "^9.0.10",
|
2024-01-12 04:42:11 +00:00
|
|
|
"postcss-html": "^1.6.0",
|
2024-01-18 04:43:05 +00:00
|
|
|
"prettier": "^3.2.4",
|
2022-12-30 04:43:04 +00:00
|
|
|
"stylelint": "^14.16.1",
|
2023-02-11 04:41:31 +00:00
|
|
|
"stylelint-config-prettier": "^9.0.5",
|
2023-07-11 04:43:46 +00:00
|
|
|
"stylelint-config-recommended-vue": "^1.5.0",
|
2022-10-20 04:42:00 +00:00
|
|
|
"stylelint-config-standard": "^29.0.0",
|
2023-12-07 04:42:52 +00:00
|
|
|
"typescript": "^5.3.3",
|
2023-11-15 04:43:12 +00:00
|
|
|
"wait-on": "^7.2.0"
|
2019-07-04 01:01:13 +00:00
|
|
|
},
|
2023-10-24 07:20:17 +02:00
|
|
|
"resolutions": {
|
|
|
|
|
"eslint-webpack-plugin": "^2.0.0"
|
|
|
|
|
},
|
2019-07-04 01:01:13 +00:00
|
|
|
"snyk": true
|
2019-01-15 13:21:24 +01:00
|
|
|
}
|