package.json 2.5 KB

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