package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "@hoppscotch/selfhost-web",
  3. "private": true,
  4. "version": "2024.10.2",
  5. "type": "module",
  6. "scripts": {
  7. "dev:vite": "vite",
  8. "dev:gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml dotenv_config_path=\"../../.env\" --watch",
  9. "dev": "pnpm exec npm-run-all -p -l dev:*",
  10. "build": "node --max_old_space_size=4096 ./node_modules/vite/bin/vite.js build",
  11. "preview": "vite preview",
  12. "lint": "eslint src --ext .ts,.js,.vue --ignore-path .gitignore .",
  13. "lint:ts": "vue-tsc --noEmit",
  14. "lintfix": "eslint --fix src --ext .ts,.js,.vue --ignore-path .gitignore .",
  15. "prod-lint": "cross-env HOPP_LINT_FOR_PROD=true pnpm run lint",
  16. "generate": "pnpm run build",
  17. "do-dev": "pnpm run dev",
  18. "do-build-prod": "pnpm run build",
  19. "do-lint": "pnpm run prod-lint",
  20. "do-typecheck": "pnpm run lint",
  21. "do-lintfix": "pnpm run lintfix",
  22. "gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml dotenv_config_path=\"../../.env\"",
  23. "postinstall": "pnpm run gql-codegen"
  24. },
  25. "dependencies": {
  26. "@fontsource-variable/inter": "5.1.0",
  27. "@fontsource-variable/material-symbols-rounded": "5.1.2",
  28. "@fontsource-variable/roboto-mono": "5.1.0",
  29. "@hoppscotch/common": "workspace:^",
  30. "@hoppscotch/data": "workspace:^",
  31. "@hoppscotch/ui": "0.2.1",
  32. "@import-meta-env/unplugin": "0.6.0",
  33. "axios": "1.7.7",
  34. "buffer": "6.0.3",
  35. "fp-ts": "2.16.9",
  36. "process": "0.11.10",
  37. "rxjs": "7.8.1",
  38. "stream-browserify": "3.0.0",
  39. "util": "0.12.5",
  40. "verzod": "0.2.3",
  41. "vue": "3.5.12",
  42. "workbox-window": "7.1.0",
  43. "zod": "3.23.8"
  44. },
  45. "devDependencies": {
  46. "@graphql-codegen/add": "5.0.3",
  47. "@graphql-codegen/cli": "5.0.3",
  48. "@graphql-codegen/typed-document-node": "5.0.10",
  49. "@graphql-codegen/typescript": "4.1.0",
  50. "@graphql-codegen/typescript-operations": "4.3.0",
  51. "@graphql-codegen/typescript-urql-graphcache": "3.1.0",
  52. "@graphql-codegen/urql-introspection": "3.0.0",
  53. "@graphql-typed-document-node/core": "3.2.0",
  54. "@iconify-json/lucide": "1.2.8",
  55. "@intlify/vite-plugin-vue-i18n": "7.0.0",
  56. "@rushstack/eslint-patch": "1.10.4",
  57. "@typescript-eslint/eslint-plugin": "8.9.0",
  58. "@typescript-eslint/parser": "8.9.0",
  59. "@urql/exchange-graphcache": "6.5.1",
  60. "@vitejs/plugin-legacy": "5.4.2",
  61. "@vitejs/plugin-vue": "5.1.4",
  62. "@vue/eslint-config-typescript": "13.0.0",
  63. "autoprefixer": "10.4.20",
  64. "cross-env": "7.0.3",
  65. "eslint": "8.57.0",
  66. "eslint-plugin-prettier": "5.2.1",
  67. "eslint-plugin-vue": "9.29.0",
  68. "npm-run-all": "4.1.5",
  69. "postcss": "8.4.47",
  70. "prettier-plugin-tailwindcss": "0.6.8",
  71. "tailwindcss": "3.4.13",
  72. "typescript": "5.3.3",
  73. "unplugin-fonts": "1.1.1",
  74. "unplugin-icons": "0.19.3",
  75. "unplugin-vue-components": "0.27.4",
  76. "vite": "5.4.9",
  77. "vite-plugin-fonts": "0.7.0",
  78. "vite-plugin-html-config": "2.0.2",
  79. "vite-plugin-inspect": "0.8.7",
  80. "vite-plugin-pages": "0.32.3",
  81. "vite-plugin-pages-sitemap": "1.7.1",
  82. "vite-plugin-pwa": "0.20.5",
  83. "vite-plugin-static-copy": "2.0.0",
  84. "vite-plugin-vue-layouts": "0.11.0",
  85. "vue-tsc": "2.1.6"
  86. }
  87. }