Skip to content

Commit

Permalink
Merge pull request #159 from manuGil/api-v2
Browse files Browse the repository at this point in the history
Fix issue with missing Package.json
  • Loading branch information
manuGil authored Apr 3, 2024
2 parents b8044a0 + 30eca7b commit c08f7e3
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ sdist/
vue/
node_modules/
package-lock.json
package.json
var/
wheels/
pip-wheel-metadata/
Expand Down
52 changes: 52 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit c08f7e3

Please sign in to comment.