package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "private": true,
  3. "version": "2.3.0",
  4. "type": "module",
  5. "engines": {
  6. "node": ">=18.0.0"
  7. },
  8. "scripts": {
  9. "dev": "rm -rf /tmp/nitro && nuxt dev",
  10. "dev:local": "yarn dev --dotenv .env.docker",
  11. "dev:prod": "yarn dev --dotenv .env.prod",
  12. "build": "nuxt build",
  13. "build:local": "yarn build --dotenv .env.docker",
  14. "build:prod": "yarn build --dotenv .env.prod",
  15. "prepare": "nuxt prepare",
  16. "start": "nuxt start --hostname '127.0.0.1' --port 3003",
  17. "lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
  18. "lint-fix": "eslint --fix --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
  19. "test": "vitest run --coverage"
  20. },
  21. "devDependencies": {
  22. "@nuxt/test-utils": "^3.0.0",
  23. "@nuxt/test-utils-edge": "^3.0.1-rc.0-27810184.d991a55",
  24. "@nuxtjs/eslint-config": "^11.0.0",
  25. "@nuxtjs/eslint-config-typescript": "^11.0.0",
  26. "@nuxtjs/eslint-module": "^3.1.0",
  27. "@types/cleave.js": "^1.4.7",
  28. "@types/event-source-polyfill": "^1.0.0",
  29. "@types/jest": "^29.2.3",
  30. "@types/lodash": "^4.14.189",
  31. "@types/uuid": "^8.3.4",
  32. "@typescript-eslint/eslint-plugin": "^5.43.0",
  33. "@typescript-eslint/parser": "^5.43.0",
  34. "@vitejs/plugin-vue": "^4.0.0",
  35. "@vitest/coverage-c8": "^0.27.2",
  36. "@vue/eslint-config-standard": "^8.0.1",
  37. "@vue/test-utils": "^2.2.7",
  38. "eslint": "^8.27.0",
  39. "eslint-config-prettier": "^8.5.0",
  40. "eslint-plugin-nuxt": "^4.0.0",
  41. "eslint-plugin-prettier": "^4.2.1",
  42. "eslint-plugin-vue": "^9.7.0",
  43. "jsdom": "^21.0.0",
  44. "nuxt": "^3.0.0",
  45. "prettier": "^2.7.1",
  46. "ts-jest": "^29.0.3",
  47. "typescript": "4.9.4",
  48. "vitest": "0.27.1",
  49. "vue-jest": "^3.0.7"
  50. },
  51. "dependencies": {
  52. "@casl/ability": "^6.3.3",
  53. "@casl/vue": "2.1.1",
  54. "@fortawesome/fontawesome-free": "^6.2.1",
  55. "@mdi/font": "^7.0.96",
  56. "@nuxt/image": "^0.7.1",
  57. "@nuxt/image-edge": "^1.0.0-27907872.f4dd19d",
  58. "@nuxtjs/i18n": "^8.0.0-beta.7",
  59. "@pinia-orm/nuxt": "^1.1.6",
  60. "@pinia/nuxt": "0.4.6",
  61. "@types/js-yaml": "^4.0.5",
  62. "@types/vue-the-mask": "^0.11.1",
  63. "cleave.js": "^1.6.0",
  64. "date-fns": "^2.29.3",
  65. "event-source-polyfill": "^1.0.31",
  66. "js-yaml": "^4.1.0",
  67. "libphonenumber-js": "1.10.18",
  68. "nuxt-lodash": "^2.4.1",
  69. "pinia": "^2.0.28",
  70. "pinia-orm": "1.4.0",
  71. "sass": "^1.57.1",
  72. "uuid": "^9.0.0",
  73. "vite-plugin-vuetify": "^1.0.1",
  74. "vue-tel-input-vuetify": "^1.5.3",
  75. "vue-the-mask": "^0.11.1",
  76. "vuetify": "3.1.1",
  77. "yaml-import": "^2.0.0"
  78. }
  79. }