chore(deps): bump
This commit is contained in:
@@ -21,7 +21,7 @@
|
|||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"husky": "^7.0.4",
|
"husky": "^7.0.4",
|
||||||
"lint-staged": "^12.3.4"
|
"lint-staged": "^12.3.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "^16.2.1",
|
"@commitlint/cli": "^16.2.1",
|
||||||
|
|||||||
@@ -18,15 +18,15 @@
|
|||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@codemirror/highlight": "^0.19.7",
|
"@codemirror/highlight": "^0.19.7",
|
||||||
"@codemirror/language": "^0.19.7",
|
"@codemirror/language": "^0.19.8",
|
||||||
"@lezer/lr": "^0.15.8"
|
"@lezer/lr": "^0.15.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@lezer/generator": "^0.15.4",
|
"@lezer/generator": "^0.15.4",
|
||||||
"mocha": "^9.2.1",
|
"mocha": "^9.2.1",
|
||||||
"rollup": "^2.68.0",
|
"rollup": "^2.69.2",
|
||||||
"rollup-plugin-dts": "^4.1.0",
|
"rollup-plugin-dts": "^4.2.0",
|
||||||
"rollup-plugin-ts": "^2.0.5",
|
"rollup-plugin-ts": "^2.0.5",
|
||||||
"typescript": "^4.5.5"
|
"typescript": "^4.6.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ import { closeBrackets, closeBracketsKeymap } from "@codemirror/closebrackets"
|
|||||||
import {
|
import {
|
||||||
searchKeymap,
|
searchKeymap,
|
||||||
highlightSelectionMatches,
|
highlightSelectionMatches,
|
||||||
searchConfig,
|
search,
|
||||||
} from "@codemirror/search"
|
} from "@codemirror/search"
|
||||||
import { autocompletion, completionKeymap } from "@codemirror/autocomplete"
|
import { autocompletion, completionKeymap } from "@codemirror/autocomplete"
|
||||||
import { commentKeymap } from "@codemirror/comment"
|
import { commentKeymap } from "@codemirror/comment"
|
||||||
@@ -36,7 +36,7 @@ export const baseTheme = EditorView.theme({
|
|||||||
flex: "1",
|
flex: "1",
|
||||||
},
|
},
|
||||||
".cm-content": {
|
".cm-content": {
|
||||||
caretColor: "var(--secondary-light-color)",
|
caretColor: "var(--secondary-dark-color)",
|
||||||
fontFamily: "var(--font-mono)",
|
fontFamily: "var(--font-mono)",
|
||||||
backgroundColor: "var(--primary-color)",
|
backgroundColor: "var(--primary-color)",
|
||||||
},
|
},
|
||||||
@@ -160,7 +160,6 @@ export const inputTheme = EditorView.theme({
|
|||||||
fontFamily: "var(--font-sans)",
|
fontFamily: "var(--font-sans)",
|
||||||
color: "var(--secondary-dark-color)",
|
color: "var(--secondary-dark-color)",
|
||||||
backgroundColor: "transparent",
|
backgroundColor: "transparent",
|
||||||
borderRadius: "0.25rem",
|
|
||||||
},
|
},
|
||||||
".cm-cursor": {
|
".cm-cursor": {
|
||||||
borderColor: "var(--secondary-color)",
|
borderColor: "var(--secondary-color)",
|
||||||
@@ -365,9 +364,7 @@ export const basicSetup: Extension = [
|
|||||||
rectangularSelection(),
|
rectangularSelection(),
|
||||||
highlightActiveLine(),
|
highlightActiveLine(),
|
||||||
highlightSelectionMatches(),
|
highlightSelectionMatches(),
|
||||||
searchConfig({
|
search(),
|
||||||
top: true,
|
|
||||||
}),
|
|
||||||
keymap.of([
|
keymap.of([
|
||||||
...closeBracketsKeymap,
|
...closeBracketsKeymap,
|
||||||
...defaultKeymap,
|
...defaultKeymap,
|
||||||
|
|||||||
@@ -44,17 +44,17 @@
|
|||||||
"@codemirror/history": "^0.19.2",
|
"@codemirror/history": "^0.19.2",
|
||||||
"@codemirror/lang-javascript": "^0.19.7",
|
"@codemirror/lang-javascript": "^0.19.7",
|
||||||
"@codemirror/lang-json": "^0.19.2",
|
"@codemirror/lang-json": "^0.19.2",
|
||||||
"@codemirror/language": "^0.19.7",
|
"@codemirror/language": "^0.19.8",
|
||||||
"@codemirror/legacy-modes": "^0.19.0",
|
"@codemirror/legacy-modes": "^0.19.1",
|
||||||
"@codemirror/lint": "^0.19.5",
|
"@codemirror/lint": "^0.19.6",
|
||||||
"@codemirror/matchbrackets": "^0.19.4",
|
"@codemirror/matchbrackets": "^0.19.4",
|
||||||
"@codemirror/rectangular-selection": "^0.19.1",
|
"@codemirror/rectangular-selection": "^0.19.1",
|
||||||
"@codemirror/search": "^0.19.8",
|
"@codemirror/search": "^0.19.9",
|
||||||
"@codemirror/state": "^0.19.9",
|
"@codemirror/state": "^0.19.9",
|
||||||
"@codemirror/stream-parser": "^0.19.6",
|
"@codemirror/stream-parser": "^0.19.7",
|
||||||
"@codemirror/text": "^0.19.6",
|
"@codemirror/text": "^0.19.6",
|
||||||
"@codemirror/tooltip": "^0.19.16",
|
"@codemirror/tooltip": "^0.19.16",
|
||||||
"@codemirror/view": "^0.19.45",
|
"@codemirror/view": "^0.19.46",
|
||||||
"@hoppscotch/codemirror-lang-graphql": "workspace:^0.1.0",
|
"@hoppscotch/codemirror-lang-graphql": "workspace:^0.1.0",
|
||||||
"@hoppscotch/data": "workspace:^0.4.0",
|
"@hoppscotch/data": "workspace:^0.4.0",
|
||||||
"@hoppscotch/js-sandbox": "workspace:^2.0.0",
|
"@hoppscotch/js-sandbox": "workspace:^2.0.0",
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
"axios": "^0.26.0",
|
"axios": "^0.26.0",
|
||||||
"core-js": "^3.21.1",
|
"core-js": "^3.21.1",
|
||||||
"esprima": "^4.0.1",
|
"esprima": "^4.0.1",
|
||||||
"firebase": "^9.6.7",
|
"firebase": "^9.6.8",
|
||||||
"fp-ts": "^2.11.8",
|
"fp-ts": "^2.11.8",
|
||||||
"fuse.js": "^6.5.3",
|
"fuse.js": "^6.5.3",
|
||||||
"graphql": "^15.5.0",
|
"graphql": "^15.5.0",
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
"graphql-language-service-parser": "^1.10.4",
|
"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": "^2.5.1",
|
||||||
"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",
|
"json-loader": "^0.5.7",
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
"vue-tippy": "^4.13.0",
|
"vue-tippy": "^4.13.0",
|
||||||
"vuejs-auto-complete": "^0.9.0",
|
"vuejs-auto-complete": "^0.9.0",
|
||||||
"wonka": "^4.0.15",
|
"wonka": "^4.0.15",
|
||||||
"yargs-parser": "^21.0.0"
|
"yargs-parser": "^21.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.17.5",
|
"@babel/core": "^7.17.5",
|
||||||
@@ -135,7 +135,7 @@
|
|||||||
"@nuxtjs/stylelint-module": "^4.1.0",
|
"@nuxtjs/stylelint-module": "^4.1.0",
|
||||||
"@nuxtjs/svg": "^0.4.0",
|
"@nuxtjs/svg": "^0.4.0",
|
||||||
"@relmify/jest-fp-ts": "^1.1.1",
|
"@relmify/jest-fp-ts": "^1.1.1",
|
||||||
"@sentry/browser": "^6.18.0",
|
"@sentry/browser": "^6.18.1",
|
||||||
"@testing-library/jest-dom": "^5.16.2",
|
"@testing-library/jest-dom": "^5.16.2",
|
||||||
"@types/codemirror": "^5.60.5",
|
"@types/codemirror": "^5.60.5",
|
||||||
"@types/cookie": "^0.4.1",
|
"@types/cookie": "^0.4.1",
|
||||||
@@ -150,19 +150,19 @@
|
|||||||
"@vue/composition-api": "^1.4.9",
|
"@vue/composition-api": "^1.4.9",
|
||||||
"@vue/runtime-dom": "^3.2.31",
|
"@vue/runtime-dom": "^3.2.31",
|
||||||
"@vue/test-utils": "^1.3.0",
|
"@vue/test-utils": "^1.3.0",
|
||||||
"@vueuse/core": "^7.7.0",
|
"@vueuse/core": "^7.7.1",
|
||||||
"babel-core": "^7.0.0-bridge.0",
|
"babel-core": "^7.0.0-bridge.0",
|
||||||
"babel-jest": "^27.5.1",
|
"babel-jest": "^27.5.1",
|
||||||
"babel-loader": "^8.2.3",
|
"babel-loader": "^8.2.3",
|
||||||
"eslint": "^8.10.0",
|
"eslint": "^8.10.0",
|
||||||
"eslint-config-prettier": "^8.4.0",
|
"eslint-config-prettier": "^8.5.0",
|
||||||
"eslint-plugin-nuxt": "^3.1.0",
|
"eslint-plugin-nuxt": "^3.1.0",
|
||||||
"eslint-plugin-prettier": "^4.0.0",
|
"eslint-plugin-prettier": "^4.0.0",
|
||||||
"eslint-plugin-vue": "^8.5.0",
|
"eslint-plugin-vue": "^8.5.0",
|
||||||
"jest": "^27.5.1",
|
"jest": "^27.5.1",
|
||||||
"jest-serializer-vue": "^2.0.2",
|
"jest-serializer-vue": "^2.0.2",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
"nuxt-windicss": "^2.2.7",
|
"nuxt-windicss": "^2.2.8",
|
||||||
"postcss-html": "^1.3.0",
|
"postcss-html": "^1.3.0",
|
||||||
"prettier": "^2.5.1",
|
"prettier": "^2.5.1",
|
||||||
"raw-loader": "^4.0.2",
|
"raw-loader": "^4.0.2",
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
"stylelint-config-standard": "^25.0.0",
|
"stylelint-config-standard": "^25.0.0",
|
||||||
"stylelint-config-standard-scss": "^3.0.0",
|
"stylelint-config-standard-scss": "^3.0.0",
|
||||||
"ts-jest": "^27.1.3",
|
"ts-jest": "^27.1.3",
|
||||||
"typescript": "^4.5.5",
|
"typescript": "^4.6.2",
|
||||||
"vue-jest": "^3.0.7",
|
"vue-jest": "^3.0.7",
|
||||||
"vue-template-babel-compiler": "^1.1.3",
|
"vue-template-babel-compiler": "^1.1.3",
|
||||||
"worker-loader": "^3.0.8"
|
"worker-loader": "^3.0.8"
|
||||||
|
|||||||
@@ -44,15 +44,15 @@
|
|||||||
"@types/jest": "^27.4.1",
|
"@types/jest": "^27.4.1",
|
||||||
"@types/lodash": "^4.14.179",
|
"@types/lodash": "^4.14.179",
|
||||||
"@types/node": "^17.0.21",
|
"@types/node": "^17.0.21",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
||||||
"@typescript-eslint/parser": "^5.12.1",
|
"@typescript-eslint/parser": "^5.13.0",
|
||||||
"eslint": "^8.10.0",
|
"eslint": "^8.10.0",
|
||||||
"eslint-config-prettier": "^8.4.0",
|
"eslint-config-prettier": "^8.5.0",
|
||||||
"eslint-plugin-prettier": "^4.0.0",
|
"eslint-plugin-prettier": "^4.0.0",
|
||||||
"io-ts": "^2.2.16",
|
"io-ts": "^2.2.16",
|
||||||
"jest": "^27.5.1",
|
"jest": "^27.5.1",
|
||||||
"prettier": "^2.5.1",
|
"prettier": "^2.5.1",
|
||||||
"ts-jest": "^27.1.3",
|
"ts-jest": "^27.1.3",
|
||||||
"typescript": "^4.5.5"
|
"typescript": "^4.6.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1006
pnpm-lock.yaml
generated
1006
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user