package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "alugap",
  3. "version": "0.1.0",
  4. "description": "A skeleton for future projects",
  5. "productName": "Quasar App",
  6. "author": "Denis <denis.gnl@gmail.com>",
  7. "type": "module",
  8. "private": true,
  9. "scripts": {
  10. "lint": "eslint --ext .js,.vue ./ && prettier --check \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
  11. "lint:fix": "eslint --ext .js,.vue ./ --fix && prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
  12. "format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
  13. "test": "echo \"No test specified\" && exit 0",
  14. "dev": "quasar dev",
  15. "build": "quasar build",
  16. "deploy:staging": "APP_ENV=staging quasar build && aws --profile michel-softpar --region sa-east-1 s3 sync ./dist/spa s3://alugap-owner-office-test --delete",
  17. "deploy:prod": "APP_ENV=production quasar build && aws --profile softpar --region us-east-2 s3 sync ./dist/spa s3://kizzo-frontend-prod-790117923086-sa-east-1-an/owner.kizzo.com.br/ --delete"
  18. },
  19. "dependencies": {
  20. "@quasar/extras": "^1.16.17",
  21. "axios": "^1.8.4",
  22. "chart.js": "^4.4.8",
  23. "date-fns": "^4.1.0",
  24. "pinia": "^3.0.1",
  25. "quasar": "^2.18.1",
  26. "socket.io-client": "^4.8.1",
  27. "vue": "^3.5",
  28. "vue-chartjs": "^5.3.2",
  29. "vue-currency-input": "^3.2.1",
  30. "vue-i18n": "^9.14.5",
  31. "vue-router": "^4.5.0"
  32. },
  33. "devDependencies": {
  34. "@intlify/eslint-plugin-vue-i18n": "^3.2.0",
  35. "@intlify/unplugin-vue-i18n": "^11.0.7",
  36. "@intlify/vue-i18n-loader": "^4.2.0",
  37. "@quasar/app-vite": "^2.2.0",
  38. "autoprefixer": "^10.4.21",
  39. "eslint": "^8.57.1",
  40. "eslint-config-prettier": "^9.1.0",
  41. "eslint-plugin-vue": "^9.32.0",
  42. "postcss": "^8.5.3",
  43. "prettier": "^3.5.3",
  44. "vite-plugin-checker": "^0.9.1"
  45. },
  46. "engines": {
  47. "node": "^24 || ^22 || ^20 || ^18",
  48. "npm": ">= 6.13.4",
  49. "yarn": ">= 1.21.1"
  50. }
  51. }