package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@hoppscotch/web",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build",
  9. "preview": "vite preview",
  10. "lint": "eslint src --ext .ts,.js,.vue --ignore-path .gitignore .",
  11. "lint:ts": "vue-tsc --noEmit",
  12. "lintfix": "eslint --fix src --ext .ts,.js,.vue --ignore-path .gitignore .",
  13. "prod-lint": "cross-env HOPP_LINT_FOR_PROD=true pnpm run lint",
  14. "generate": "pnpm run build",
  15. "do-dev": "pnpm run dev",
  16. "do-build-prod": "pnpm run build",
  17. "do-lint": "pnpm run prod-lint",
  18. "do-typecheck": "pnpm run lint",
  19. "do-lintfix": "pnpm run lintfix"
  20. },
  21. "dependencies": {
  22. "@hoppscotch/common": "workspace:^",
  23. "buffer": "^6.0.3",
  24. "firebase": "^9.8.4",
  25. "process": "^0.11.10",
  26. "rxjs": "^7.5.5",
  27. "stream-browserify": "^3.0.0",
  28. "util": "^0.12.4",
  29. "vue": "^3.2.41",
  30. "workbox-window": "^6.5.4"
  31. },
  32. "devDependencies": {
  33. "@intlify/vite-plugin-vue-i18n": "^6.0.1",
  34. "@rushstack/eslint-patch": "^1.1.4",
  35. "@typescript-eslint/eslint-plugin": "^5.19.0",
  36. "@typescript-eslint/parser": "^5.19.0",
  37. "@vitejs/plugin-legacy": "^2.3.0",
  38. "@vitejs/plugin-vue": "^3.2.0",
  39. "@vue/eslint-config-typescript": "^11.0.1",
  40. "cross-env": "^7.0.3",
  41. "eslint": "^8.28.0",
  42. "eslint-plugin-prettier": "^4.2.1",
  43. "eslint-plugin-vue": "^9.5.1",
  44. "typescript": "^4.6.4",
  45. "unplugin-icons": "^0.14.9",
  46. "unplugin-vue-components": "^0.21.0",
  47. "vite": "^3.2.3",
  48. "vite-plugin-fonts": "^0.6.0",
  49. "vite-plugin-html-config": "^1.0.10",
  50. "vite-plugin-inspect": "^0.7.4",
  51. "vite-plugin-pages": "^0.26.0",
  52. "vite-plugin-pages-sitemap": "^1.4.0",
  53. "vite-plugin-pwa": "^0.13.1",
  54. "vite-plugin-static-copy": "^0.12.0",
  55. "vite-plugin-vue-layouts": "^0.7.0",
  56. "vite-plugin-windicss": "^1.8.8",
  57. "vue-tsc": "^1.0.9",
  58. "windicss": "^3.5.6"
  59. }
  60. }