package.json 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "@hoppscotch/selfhost-web",
  3. "private": true,
  4. "version": "2023.4.8",
  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.8",
  27. "@fontsource-variable/material-symbols-rounded": "^5.0.7",
  28. "@fontsource-variable/roboto-mono": "^5.0.9",
  29. "@hoppscotch/common": "workspace:^",
  30. "@hoppscotch/data": "workspace:^",
  31. "axios": "^1.4.0",
  32. "buffer": "^6.0.3",
  33. "fp-ts": "^2.16.1",
  34. "process": "^0.11.10",
  35. "rxjs": "^7.8.1",
  36. "stream-browserify": "^3.0.0",
  37. "util": "^0.12.5",
  38. "vue": "^3.3.4",
  39. "workbox-window": "^7.0.0"
  40. },
  41. "devDependencies": {
  42. "@graphql-codegen/add": "^5.0.0",
  43. "@graphql-codegen/cli": "^5.0.0",
  44. "@graphql-codegen/typed-document-node": "^5.0.1",
  45. "@graphql-codegen/typescript": "^4.0.1",
  46. "@graphql-codegen/typescript-operations": "^4.0.1",
  47. "@graphql-codegen/typescript-urql-graphcache": "^2.4.5",
  48. "@graphql-codegen/urql-introspection": "^2.2.1",
  49. "@graphql-typed-document-node/core": "^3.2.0",
  50. "@intlify/vite-plugin-vue-i18n": "^7.0.0",
  51. "@rushstack/eslint-patch": "^1.3.3",
  52. "@typescript-eslint/eslint-plugin": "^6.4.0",
  53. "@typescript-eslint/parser": "^6.4.0",
  54. "@vitejs/plugin-legacy": "^4.1.1",
  55. "@vitejs/plugin-vue": "^4.3.1",
  56. "@vue/eslint-config-typescript": "^11.0.3",
  57. "cross-env": "^7.0.3",
  58. "eslint": "^8.47.0",
  59. "eslint-plugin-prettier": "^5.0.0",
  60. "eslint-plugin-vue": "^9.17.0",
  61. "npm-run-all": "^4.1.5",
  62. "typescript": "^5.1.6",
  63. "unplugin-fonts": "^1.0.3",
  64. "unplugin-icons": "^0.16.5",
  65. "unplugin-vue-components": "^0.25.1",
  66. "vite": "^4.4.9",
  67. "vite-plugin-html-config": "^1.0.11",
  68. "vite-plugin-inspect": "^0.7.38",
  69. "vite-plugin-pages": "^0.31.0",
  70. "vite-plugin-pages-sitemap": "^1.6.1",
  71. "vite-plugin-pwa": "^0.16.4",
  72. "vite-plugin-static-copy": "^0.17.0",
  73. "vite-plugin-vue-layouts": "^0.8.0",
  74. "vite-plugin-windicss": "^1.9.1",
  75. "vitest": "^0.34.2",
  76. "vue-tsc": "^1.8.8",
  77. "windicss": "^3.5.6"
  78. }
  79. }