package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "@hoppscotch/selfhost-web",
  3. "private": true,
  4. "version": "2023.12.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.0.15",
  27. "@fontsource-variable/material-symbols-rounded": "^5.0.16",
  28. "@fontsource-variable/roboto-mono": "^5.0.16",
  29. "@hoppscotch/common": "workspace:^",
  30. "@hoppscotch/data": "workspace:^",
  31. "@hoppscotch/ui": "^0.1.0",
  32. "@import-meta-env/unplugin": "^0.4.10",
  33. "axios": "^1.6.2",
  34. "buffer": "^6.0.3",
  35. "fp-ts": "^2.16.1",
  36. "process": "^0.11.10",
  37. "rxjs": "^7.8.1",
  38. "stream-browserify": "^3.0.0",
  39. "util": "^0.12.5",
  40. "vue": "^3.3.8",
  41. "workbox-window": "^7.0.0",
  42. "zod": "^3.22.4"
  43. },
  44. "devDependencies": {
  45. "@graphql-codegen/add": "^5.0.0",
  46. "@graphql-codegen/cli": "^5.0.0",
  47. "@graphql-codegen/typed-document-node": "^5.0.1",
  48. "@graphql-codegen/typescript": "^4.0.1",
  49. "@graphql-codegen/typescript-operations": "^4.0.1",
  50. "@graphql-codegen/typescript-urql-graphcache": "^3.0.0",
  51. "@graphql-codegen/urql-introspection": "^3.0.0",
  52. "@graphql-typed-document-node/core": "^3.2.0",
  53. "@intlify/vite-plugin-vue-i18n": "^7.0.0",
  54. "@rushstack/eslint-patch": "^1.6.0",
  55. "@typescript-eslint/eslint-plugin": "^6.12.0",
  56. "@typescript-eslint/parser": "^6.12.0",
  57. "@vitejs/plugin-legacy": "^4.1.1",
  58. "@vitejs/plugin-vue": "^4.5.0",
  59. "@vue/eslint-config-typescript": "^12.0.0",
  60. "autoprefixer": "^10.4.14",
  61. "cross-env": "^7.0.3",
  62. "eslint": "^8.54.0",
  63. "eslint-plugin-prettier": "^5.0.1",
  64. "eslint-plugin-vue": "^9.18.1",
  65. "npm-run-all": "^4.1.5",
  66. "postcss": "^8.4.23",
  67. "prettier-plugin-tailwindcss": "^0.5.7",
  68. "tailwindcss": "^3.3.2",
  69. "typescript": "^5.3.2",
  70. "unplugin-fonts": "^1.1.1",
  71. "unplugin-icons": "^0.17.4",
  72. "unplugin-vue-components": "^0.25.2",
  73. "vite": "^4.5.0",
  74. "vite-plugin-fonts": "^0.7.0",
  75. "vite-plugin-html-config": "^1.0.11",
  76. "vite-plugin-inspect": "^0.7.42",
  77. "vite-plugin-pages": "^0.31.0",
  78. "vite-plugin-pages-sitemap": "^1.6.1",
  79. "vite-plugin-pwa": "^0.17.0",
  80. "vite-plugin-static-copy": "^0.17.1",
  81. "vite-plugin-vue-layouts": "^0.8.0",
  82. "vue-tsc": "^1.8.22"
  83. }
  84. }