package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "website",
  3. "version": "0.3.0",
  4. "private": true,
  5. "type": "module",
  6. "engines": {
  7. "node": "18.19.0"
  8. },
  9. "scripts": {
  10. "postinstall": "node ./env/setupEnv.mjs",
  11. "dev": "nuxt dev",
  12. "generate": "nuxt generate",
  13. "dev:local": "yarn dev --dotenv .env.local",
  14. "dev:prod": "yarn dev --dotenv .env.prod",
  15. "dev:ci": "yarn dev --dotenv .env.ci",
  16. "build": "nuxt build",
  17. "build:local": "yarn build --dotenv .env.local",
  18. "build:prod": "yarn build --dotenv .env.prod",
  19. "deploy": "git pull && yarn install && yarn generate",
  20. "lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
  21. "lint": "yarn lint:js",
  22. "test": "jest"
  23. },
  24. "dependencies": {
  25. "@fortawesome/fontawesome-free": "^6.5.1",
  26. "@fortawesome/free-brands-svg-icons": "^6.5.1",
  27. "@fortawesome/free-regular-svg-icons": "^6.5.1",
  28. "@fortawesome/free-solid-svg-icons": "^6.5.1",
  29. "@hcaptcha/vue3-hcaptcha": "^1.3.0",
  30. "@nuxtjs/date-fns": "^1.5.0",
  31. "@nuxtjs/i18n": "^8.1.1",
  32. "@pinia-orm/nuxt": "^1.7.0",
  33. "@pinia/nuxt": "^0.5.1",
  34. "@splidejs/vue-splide": "^0.6.12",
  35. "@vue-leaflet/vue-leaflet": "^0.10.1",
  36. "@vuelidate/core": "^2.0.3",
  37. "@vuelidate/validators": "^2.0.4",
  38. "axios": "^1.6.7",
  39. "core-js": "^3.35.1",
  40. "date-fns": "^3.3.1",
  41. "leaflet": "^1.9.3",
  42. "libphonenumber-js": "^1.10.55",
  43. "nuxt": "^3.10.2",
  44. "nuxt-lodash": "^2.5.3",
  45. "nuxt3-leaflet": "^1.0.12",
  46. "ofetch": "^1.3.3",
  47. "pinia": "^2.1.7",
  48. "pinia-orm": "^1.7.2",
  49. "sass": "^1.70.0",
  50. "typeface-barlow": "^1.1.13",
  51. "uuid": "^9.0.1",
  52. "vite-plugin-vuetify": "^2.0.1",
  53. "vue3-carousel": "^0.3.1",
  54. "vuetify": "^3.5.3"
  55. },
  56. "devDependencies": {
  57. "@nuxt/devtools": "^1.0.8",
  58. "@nuxt/eslint-config": "^0.2.0",
  59. "@nuxtjs/eslint-config": "^12.0.0",
  60. "@nuxtjs/eslint-config-typescript": "^12.1.0",
  61. "@nuxtjs/eslint-module": "^4.1.0",
  62. "@nuxtjs/fontawesome": "^1.1.2",
  63. "@types/jest": "^29.4.0",
  64. "@types/leaflet": "^1.9.8",
  65. "@types/lodash": "^4.14.202",
  66. "@types/uuid": "^9.0.7",
  67. "@typescript-eslint/eslint-plugin": "^7.0.1",
  68. "@typescript-eslint/parser": "^7.0.1",
  69. "@vitejs/plugin-vue": "^5.0.4",
  70. "@vitest/coverage-c8": "^0.33.0",
  71. "@vue/eslint-config-standard": "^8.0.1",
  72. "eslint": "^8.56.0",
  73. "eslint-config-prettier": "^9.1.0",
  74. "eslint-plugin-nuxt": "^4.0.0",
  75. "eslint-plugin-prettier": "^5.1.3",
  76. "eslint-plugin-vue": "^9.21.1",
  77. "jsdom": "^24.0.0",
  78. "prettier": "3.2.5",
  79. "sass-loader": "^14.1.0",
  80. "typescript": "^5.3.3"
  81. }
  82. }