From 30eca7b7b9e48c839439cfd142ebca0c5c6ca2af Mon Sep 17 00:00:00 2001 From: Manuel Garcia Date: Wed, 3 Apr 2024 11:15:15 +0200 Subject: [PATCH] fix issue with missing package.json from front end --- .gitignore | 1 - frontend/package.json | 52 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 frontend/package.json diff --git a/.gitignore b/.gitignore index 7fb391df..be6c789d 100644 --- a/.gitignore +++ b/.gitignore @@ -36,7 +36,6 @@ sdist/ vue/ node_modules/ package-lock.json -package.json var/ wheels/ pip-wheel-metadata/ diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 00000000..07dce357 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,52 @@ +{ + "private": true, + "type": "module", + "scripts": { + "build": "nuxt build", + "dev": "nuxt dev", + "start": "node .output/server/index.mjs", + "generate": "nuxt generate", + "preview": "nuxt preview", + "postinstall": "nuxt prepare", + "lint": "eslint .", + "lint:fix": "eslint . --fix" + }, + "devDependencies": { + "@kevinmarrec/nuxt-pwa": "^0.0.2", + "@nuxtjs/eslint-config-typescript": "^12.0.0", + "@nuxtjs/tailwindcss": "^6.4.1", + "@pinia/nuxt": "^0.5.1", + "autoprefixer": "^10.4.13", + "eslint": "^8.27.0", + "eslint-plugin-nuxt": "^4.0.0", + "nuxt": "npm:nuxt3@latest", + "postcss": "^8.4.21", + "sass": "^1.58.0", + "tailwindcss": "^3.2.7" + }, + "dependencies": { + "@mdi/font": "^7.1.96", + "@nuxt-alt/auth": "^2.1.9", + "@nuxt-alt/http": "^1.5.5", + "@vue-leaflet/vue-leaflet": "^0.8.4", + "@vueuse/nuxt": "^9.6.0", + "dayjs": "^1.11.6", + "leaflet": "^1.9.3", + "leaflet-draw": "^1.0.4", + "leaflet-draw-toolbar": "^0.3.0-alpha.1", + "leaflet-toolbar": "^0.4.0-alpha.2", + "nuxt-api-party": "^0.9.4", + "pinia": "^2.1.7", + "ramda": "^0.28.0", + "uuid": "^9.0.0", + "vee-validate": "^4.9.5", + "vite-plugin-vuetify": "^1.0.2", + "vue-toastification": "^2.0.0-rc.5", + "vuedraggable": "^4.1.0", + "vuetify": "^3.3.0", + "yup": "^0.32.11" + }, + "overrides": { + "vue": "latest" + } +}