package.json (hoppscotch-2.2.1) | : | package.json (hoppscotch-3.0.0) | ||
---|---|---|---|---|
{ | { | |||
"name": "hoppscotch-app", | "name": "hoppscotch-app", | |||
"version": "2.2.1", | ||||
"description": "Open source API development ecosystem", | ||||
"author": "Hoppscotch (support@hoppscotch.io)", | ||||
"private": true, | "private": true, | |||
"engines": { | "version": "3.0.0", | |||
"node": ">=14", | ||||
"pnpm": ">=3" | ||||
}, | ||||
"scripts": { | "scripts": { | |||
"dev": "pnpx npm-run-all -p -l dev:*", | "dev": "pnpm exec npm-run-all -p -l dev:*", | |||
"dev:nuxt": "nuxt", | "dev:vite": "vite", | |||
"dev:gql-codegen": "graphql-codegen --config gql-codegen.yml --watch", | "dev:gql-codegen": "graphql-codegen --config gql-codegen.yml --watch", | |||
"build": "vue-tsc --noEmit && nuxt build", | "build": "node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js bu | |||
ild", | ||||
"lint": "eslint src --ext .ts,.js,.vue --ignore-path .gitignore .", | ||||
"prod-lint": "HOPP_LINT_FOR_PROD=true pnpm run lint", | ||||
"lintfix": "eslint --fix src --ext .ts,.js,.vue --ignore-path .gitignore .", | ||||
"generate": "pnpm run build", | ||||
"preview": "vite preview", | ||||
"gql-codegen": "graphql-codegen --config gql-codegen.yml", | ||||
"postinstall": "pnpm run gql-codegen", | "postinstall": "pnpm run gql-codegen", | |||
"start": "nuxt start", | ||||
"generate": "nuxt generate --modern", | ||||
"analyze": "npx nuxt build -a", | ||||
"lint:script": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .", | ||||
"lint:style": "stylelint **/*.{css,scss} --ignore-path .gitignore", | ||||
"lint": "pnpm run lint:script && pnpm run lint:style", | ||||
"lintfix:script": "eslint --fix --ext .ts,.js,.vue --ignore-path .gitignore | ||||
.", | ||||
"lintfix:style": "stylelint --fix **/*.{css,scss} --ignore-path .gitignore", | ||||
"lintfix": "pnpm run lintfix:script && pnpm run lintfix:style", | ||||
"test": "jest", | ||||
"do-dev": "pnpm run dev", | "do-dev": "pnpm run dev", | |||
"do-build-prod": "pnpm run generate", | "do-build-prod": "pnpm run build", | |||
"do-prod-start": "pnpm run start", | "do-lint": "pnpm run prod-lint", | |||
"do-lint": "pnpm run lint", | "do-typecheck": "pnpm run lint", | |||
"do-lintfix": "pnpm run lintfix", | "do-lintfix": "pnpm run lintfix" | |||
"do-test": "pnpm run test", | ||||
"gql-codegen": "graphql-codegen --config gql-codegen.yml" | ||||
}, | }, | |||
"dependencies": { | "dependencies": { | |||
"@apidevtools/swagger-parser": "^10.0.3", | "@apidevtools/swagger-parser": "^10.1.0", | |||
"@apollo/client": "^3.5.7", | "@codemirror/autocomplete": "^6.0.3", | |||
"@codemirror/autocomplete": "^0.19.0", | "@codemirror/commands": "^6.0.1", | |||
"@codemirror/closebrackets": "^0.19.0", | "@codemirror/lang-javascript": "^6.0.1", | |||
"@codemirror/commands": "^0.19.0", | "@codemirror/lang-json": "^6.0.0", | |||
"@codemirror/comment": "^0.19.0", | "@codemirror/lang-xml": "^6.0.0", | |||
"@codemirror/fold": "^0.19.0", | "@codemirror/language": "^6.2.0", | |||
"@codemirror/gutter": "^0.19.0", | "@codemirror/legacy-modes": "^6.1.0", | |||
"@codemirror/highlight": "^0.19.0", | "@codemirror/lint": "^6.0.0", | |||
"@codemirror/history": "^0.19.0", | "@codemirror/search": "^6.0.0", | |||
"@codemirror/lang-javascript": "^0.19.0", | "@codemirror/state": "^6.1.0", | |||
"@codemirror/lang-json": "^0.19.0", | "@codemirror/view": "^6.0.2", | |||
"@codemirror/language": "^0.19.0", | "@hoppscotch/codemirror-lang-graphql": "workspace:^0.2.0", | |||
"@codemirror/legacy-modes": "^0.19.0", | "@hoppscotch/data": "workspace:^0.4.2", | |||
"@codemirror/lint": "^0.19.0", | "@hoppscotch/js-sandbox": "workspace:^2.1.0", | |||
"@codemirror/matchbrackets": "^0.19.0", | "@hoppscotch/vue-toasted": "^0.1.0", | |||
"@codemirror/rectangular-selection": "^0.19.0", | "@lezer/highlight": "^1.0.0", | |||
"@codemirror/search": "^0.19.0", | "@sentry/tracing": "^7.13.0", | |||
"@codemirror/state": "^0.19.0", | "@sentry/vue": "^7.13.0", | |||
"@codemirror/stream-parser": "^0.19.0", | "@urql/core": "^2.5.0", | |||
"@codemirror/text": "^0.19.0", | "@urql/devtools": "^2.0.3", | |||
"@codemirror/tooltip": "^0.19.0", | ||||
"@codemirror/view": "^0.19.0", | ||||
"@hoppscotch/codemirror-lang-graphql": "workspace:^0.1.0", | ||||
"@hoppscotch/data": "workspace:^0.3.0", | ||||
"@hoppscotch/js-sandbox": "workspace:^1.0.0", | ||||
"@nuxtjs/axios": "^5.13.6", | ||||
"@nuxtjs/composition-api": "^0.31.0", | ||||
"@nuxtjs/gtm": "^2.4.0", | ||||
"@nuxtjs/i18n": "^7.2.0", | ||||
"@nuxtjs/robots": "^2.5.0", | ||||
"@nuxtjs/sentry": "^5.1.6", | ||||
"@nuxtjs/sitemap": "^2.4.0", | ||||
"@nuxtjs/toast": "^3.3.1", | ||||
"@urql/core": "^2.3.6", | ||||
"@urql/exchange-auth": "^0.1.7", | "@urql/exchange-auth": "^0.1.7", | |||
"@urql/exchange-graphcache": "^4.3.6", | "@urql/exchange-graphcache": "^4.4.3", | |||
"acorn": "^8.7.0", | "@vueuse/core": "^8.7.5", | |||
"@vueuse/head": "^0.7.9", | ||||
"acorn-walk": "^8.2.0", | "acorn-walk": "^8.2.0", | |||
"axios": "^0.25.0", | "axios": "^0.21.4", | |||
"core-js": "^3.20.3", | "buffer": "^6.0.3", | |||
"esprima": "^4.0.1", | "esprima": "^4.0.1", | |||
"firebase": "^9.6.4", | "events": "^3.3.0", | |||
"fp-ts": "^2.11.8", | "firebase": "^9.8.4", | |||
"fuse.js": "^6.5.3", | "fp-ts": "^2.12.1", | |||
"fuse.js": "^6.6.2", | ||||
"globalthis": "^1.0.3", | ||||
"graphql": "^15.5.0", | "graphql": "^15.5.0", | |||
"graphql-language-service-interface": "^2.9.1", | "graphql-language-service-interface": "^2.9.1", | |||
"graphql-language-service-parser": "^1.10.4", | ||||
"graphql-tag": "^2.12.6", | "graphql-tag": "^2.12.6", | |||
"httpsnippet": "^2.0.0", | "httpsnippet": "^2.0.0", | |||
"insomnia-importers": "^2.4.1", | "insomnia-importers": "^3.3.0", | |||
"io-ts": "^2.2.16", | "io-ts": "^2.2.16", | |||
"js-yaml": "^4.1.0", | "js-yaml": "^4.1.0", | |||
"json-loader": "^0.5.7", | "jsonpath-plus": "^7.0.0", | |||
"lodash": "^4.17.21", | "lodash-es": "^4.17.21", | |||
"mustache": "^4.2.0", | "lossless-json": "^1.0.5", | |||
"node-interval-tree": "^1.3.3", | "nprogress": "^0.2.0", | |||
"nuxt": "^2.15.8", | ||||
"openapi-types": "^10.0.0", | ||||
"paho-mqtt": "^1.1.0", | "paho-mqtt": "^1.1.0", | |||
"postman-collection": "^4.1.1", | "path": "^0.12.7", | |||
"postman-collection": "^4.1.4", | ||||
"process": "^0.11.10", | ||||
"qs": "^6.10.3", | "qs": "^6.10.3", | |||
"rxjs": "^7.5.2", | "rxjs": "^7.5.5", | |||
"socket.io-client-v2": "npm:socket.io-client@^2.4.0", | "socket.io-client-v2": "npm:socket.io-client@^2.4.0", | |||
"socket.io-client-v3": "npm:socket.io-client@^3.1.3", | "socket.io-client-v3": "npm:socket.io-client@^3.1.3", | |||
"socket.io-client-v4": "npm:socket.io-client@^4.4.1", | "socket.io-client-v4": "npm:socket.io-client@^4.4.1", | |||
"socketio-wildcard": "^2.0.0", | "socketio-wildcard": "^2.0.0", | |||
"splitpanes": "^2.3.8", | "splitpanes": "^3.1.1", | |||
"stream-browserify": "^3.0.0", | ||||
"subscriptions-transport-ws": "^0.11.0", | "subscriptions-transport-ws": "^0.11.0", | |||
"tern": "^0.24.3", | "tern": "^0.24.3", | |||
"timeago.js": "^4.0.2", | "timers": "^0.1.1", | |||
"uuid": "8.3.2", | "tippy.js": "^6.3.7", | |||
"vue-apollo": "^3.1.0", | "url": "^0.11.0", | |||
"vue-functional-data-merge": "^3.1.0", | "util": "^0.12.4", | |||
"vue-github-button": "^1.3.0", | "uuid": "^8.3.2", | |||
"vue-textarea-autosize": "^1.1.1", | "vue": "^3.2.25", | |||
"vue-tippy": "^4.13.0", | "vue-github-button": "^3.0.3", | |||
"vuejs-auto-complete": "^0.9.0", | "vue-i18n": "^9.2.2", | |||
"vue-pdf-embed": "^1.1.4", | ||||
"vue-router": "^4.0.16", | ||||
"vue-tippy": "6.0.0-alpha.58", | ||||
"vuedraggable": "^4.1.0", | ||||
"wonka": "^4.0.15", | "wonka": "^4.0.15", | |||
"yargs-parser": "^21.0.0" | "workbox-window": "^6.5.4", | |||
"yargs-parser": "^21.1.1" | ||||
}, | }, | |||
"devDependencies": { | "devDependencies": { | |||
"@babel/core": "^7.16.12", | "@esbuild-plugins/node-globals-polyfill": "^0.1.1", | |||
"@babel/preset-env": "^7.16.11", | "@esbuild-plugins/node-modules-polyfill": "^0.1.4", | |||
"@graphql-codegen/add": "^3.1.1", | "@graphql-codegen/add": "^3.2.0", | |||
"@graphql-codegen/cli": "2.4.0", | "@graphql-codegen/cli": "^2.8.0", | |||
"@graphql-codegen/typed-document-node": "^2.2.2", | "@graphql-codegen/typed-document-node": "^2.3.1", | |||
"@graphql-codegen/typescript": "2.4.2", | "@graphql-codegen/typescript": "^2.7.1", | |||
"@graphql-codegen/typescript-operations": "^2.2.2", | "@graphql-codegen/typescript-operations": "^2.5.1", | |||
"@graphql-codegen/typescript-urql-graphcache": "^2.2.3", | "@graphql-codegen/typescript-urql-graphcache": "^2.3.1", | |||
"@graphql-codegen/urql-introspection": "^2.1.1", | "@graphql-codegen/urql-introspection": "^2.2.0", | |||
"@graphql-typed-document-node/core": "^3.1.1", | "@graphql-typed-document-node/core": "^3.1.1", | |||
"@nuxt/types": "^2.15.8", | "@iconify-json/lucide": "^1.1.40", | |||
"@nuxt/typescript-build": "^2.1.0", | "@intlify/vite-plugin-vue-i18n": "^6.0.1", | |||
"@nuxtjs/color-mode": "^2.1.1", | "@rushstack/eslint-patch": "^1.1.4", | |||
"@nuxtjs/dotenv": "^1.4.1", | "@types/js-yaml": "^4.0.5", | |||
"@nuxtjs/eslint-config-typescript": "^8.0.0", | "@types/lodash-es": "^4.17.6", | |||
"@nuxtjs/eslint-module": "^3.0.2", | "@types/lossless-json": "^1.0.1", | |||
"@nuxtjs/google-analytics": "^2.4.0", | "@types/nprogress": "^0.2.0", | |||
"@nuxtjs/google-fonts": "^1.3.0", | "@types/paho-mqtt": "^1.0.6", | |||
"@nuxtjs/pwa": "^3.3.5", | ||||
"@nuxtjs/stylelint-module": "^4.1.0", | ||||
"@nuxtjs/svg": "^0.3.0", | ||||
"@relmify/jest-fp-ts": "^1.1.1", | ||||
"@sentry/browser": "^6.16.1", | ||||
"@testing-library/jest-dom": "^5.16.1", | ||||
"@types/codemirror": "^5.60.5", | ||||
"@types/cookie": "^0.4.1", | ||||
"@types/esprima": "^4.0.3", | ||||
"@types/har-format": "^1.2.8", | ||||
"@types/httpsnippet": "^1.23.1", | ||||
"@types/lodash": "^4.14.178", | ||||
"@types/postman-collection": "^3.5.7", | "@types/postman-collection": "^3.5.7", | |||
"@types/splitpanes": "^2.2.1", | "@types/splitpanes": "^2.2.1", | |||
"@types/uuid": "^8.3.4", | "@types/yargs-parser": "^21.0.0", | |||
"@urql/devtools": "^2.0.3", | "@typescript-eslint/eslint-plugin": "^5.19.0", | |||
"@vue/composition-api": "^1.4.4", | "@typescript-eslint/parser": "^5.19.0", | |||
"@vue/runtime-dom": "^3.2.29", | "@vitejs/plugin-vue": "^3.1.0", | |||
"@vue/test-utils": "^1.3.0", | "@vue/compiler-sfc": "^3.2.39", | |||
"babel-core": "^7.0.0-bridge.0", | "@vue/eslint-config-typescript": "^11.0.1", | |||
"babel-jest": "^27.4.6", | "@vue/runtime-core": "^3.2.39", | |||
"babel-loader": "^8.2.3", | "eslint": "^8.13.0", | |||
"eslint": "^8.7.0", | ||||
"eslint-config-prettier": "^8.3.0", | ||||
"eslint-plugin-nuxt": "^3.1.0", | ||||
"eslint-plugin-prettier": "^4.0.0", | "eslint-plugin-prettier": "^4.0.0", | |||
"eslint-plugin-vue": "^8.3.0", | "eslint-plugin-vue": "^9.4.0", | |||
"jest": "^27.4.7", | ||||
"jest-serializer-vue": "^2.0.2", | ||||
"npm-run-all": "^4.1.5", | "npm-run-all": "^4.1.5", | |||
"nuxt-windicss": "^2.2.2", | "openapi-types": "^12.0.0", | |||
"prettier": "^2.5.1", | "rollup-plugin-polyfill-node": "^0.10.1", | |||
"raw-loader": "^4.0.2", | "sass": "^1.53.0", | |||
"sass": "^1.49.0", | "typescript": "^4.5.4", | |||
"sass-loader": "^10.2.0", | "unplugin-icons": "^0.14.9", | |||
"stylelint": "^14.3.0", | "unplugin-vue-components": "^0.21.0", | |||
"stylelint-config-prettier": "^9.0.3", | "vite": "^3.1.0", | |||
"stylelint-config-standard": "^24.0.0", | "vite-plugin-checker": "^0.5.1", | |||
"stylelint-config-standard-scss": "^3.0.0", | "vite-plugin-fonts": "^0.6.0", | |||
"ts-jest": "^27.1.3", | "vite-plugin-html-config": "^1.0.9", | |||
"typescript": "^4.5.5", | "vite-plugin-inspect": "^0.6.1", | |||
"vue-jest": "^3.0.7", | "vite-plugin-pages": "^0.25.0", | |||
"vue-template-babel-compiler": "^1.1.2", | "vite-plugin-pages-sitemap": "^1.3.0", | |||
"worker-loader": "^3.0.8" | "vite-plugin-pwa": "^0.12.2", | |||
"vite-plugin-vue-layouts": "^0.7.0", | ||||
"vite-plugin-windicss": "^1.8.8", | ||||
"vue-tsc": "^0.38.2", | ||||
"windicss": "^3.5.6" | ||||
} | } | |||
} | } | |||
End of changes. 23 change blocks. | ||||
146 lines changed or deleted | 115 lines changed or added |