chore: update dependencies
This commit is contained in:
parent
bcfdee1d73
commit
78d5ae776c
40
package.json
40
package.json
|
|
@ -24,18 +24,18 @@
|
|||
"@codemirror/view": "6.6.0",
|
||||
"@emoji-mart/data": "1.0.8",
|
||||
"@emoji-mart/react": "1.0.1",
|
||||
"@floating-ui/react-dom-interactions": "0.12.0",
|
||||
"@floating-ui/react-dom-interactions": "0.13.0",
|
||||
"@headlessui/react": "1.7.4",
|
||||
"@heroicons/react": "2.0.13",
|
||||
"@iconify-json/akar-icons": "1.1.10",
|
||||
"@iconify-json/tabler": "1.1.48",
|
||||
"@iconify-json/tabler": "1.1.50",
|
||||
"@monaco-editor/react": "4.4.6",
|
||||
"@rainbow-me/rainbowkit": "0.8.0",
|
||||
"@tanstack/react-query": "4.18.0",
|
||||
"@tanstack/react-query-devtools": "4.18.0",
|
||||
"@tanstack/react-query-persist-client": "4.18.0",
|
||||
"@uiw/codemirror-extensions-events": "4.15.1",
|
||||
"@uiw/react-codemirror": "4.15.1",
|
||||
"@tanstack/react-query": "4.19.1",
|
||||
"@tanstack/react-query-devtools": "4.19.1",
|
||||
"@tanstack/react-query-persist-client": "4.19.1",
|
||||
"@uiw/codemirror-extensions-events": "4.17.1",
|
||||
"@uiw/react-codemirror": "4.17.1",
|
||||
"@urql/core": "3.0.5",
|
||||
"axios": "1.2.0",
|
||||
"clsx": "1.2.1",
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
"mdast-util-to-string": "3.1.0",
|
||||
"mdast-util-toc": "6.1.0",
|
||||
"nanoid": "4.0.0",
|
||||
"next": "13.0.5",
|
||||
"next": "13.0.6",
|
||||
"nextjs-progressbar": "0.0.16",
|
||||
"nodejieba": "2.6.0",
|
||||
"pinyin": "3.0.0-alpha.5",
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
"unist-util-visit": "4.1.1",
|
||||
"use-onclickoutside": "0.4.1",
|
||||
"uuid": "9.0.0",
|
||||
"wagmi": "0.8.7",
|
||||
"wagmi": "0.8.10",
|
||||
"zustand": "4.1.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
@ -98,36 +98,36 @@
|
|||
"@iconify-json/carbon": "1.1.11",
|
||||
"@iconify-json/fluent": "1.1.17",
|
||||
"@iconify-json/mdi": "1.1.36",
|
||||
"@next/bundle-analyzer": "13.0.5",
|
||||
"@next/bundle-analyzer": "13.0.6",
|
||||
"@playwright/test": "1.28.1",
|
||||
"@types/cookie": "0.5.1",
|
||||
"@types/hast": "2.3.4",
|
||||
"@types/js-yaml": "4.0.5",
|
||||
"@types/mjml": "4.7.0",
|
||||
"@types/node": "18.11.9",
|
||||
"@types/node": "18.11.10",
|
||||
"@types/prismjs": "1.26.0",
|
||||
"@types/react": "18.0.25",
|
||||
"@types/react": "18.0.26",
|
||||
"@types/react-dom": "18.0.9",
|
||||
"@types/react-infinite-scroller": "1.2.3",
|
||||
"@types/react-scroll": "1.8.5",
|
||||
"@types/sortablejs": "1.15.0",
|
||||
"@types/ua-parser-js": "0.7.36",
|
||||
"@types/uuid": "9.0.0",
|
||||
"@unocss/cli": "0.47.2",
|
||||
"@unocss/preset-icons": "0.47.2",
|
||||
"@unocss/cli": "0.47.5",
|
||||
"@unocss/preset-icons": "0.47.5",
|
||||
"autoprefixer": "10.4.13",
|
||||
"cross-spawn": "7.0.3",
|
||||
"esbuild": "0.15.16",
|
||||
"esbuild": "0.15.18",
|
||||
"esbuild-register": "3.4.1",
|
||||
"eslint": "8.28.0",
|
||||
"eslint-config-next": "13.0.5",
|
||||
"eslint": "8.29.0",
|
||||
"eslint-config-next": "13.0.6",
|
||||
"husky": "8.0.2",
|
||||
"lint-staged": "13.0.4",
|
||||
"postcss-import": "15.0.0",
|
||||
"lint-staged": "13.1.0",
|
||||
"postcss-import": "15.0.1",
|
||||
"prettier": "2.8.0",
|
||||
"tailwindcss": "3.2.4",
|
||||
"typescript": "4.9.3",
|
||||
"unocss": "0.47.2",
|
||||
"unocss": "0.47.5",
|
||||
"vitest": "0.25.3"
|
||||
},
|
||||
"engines": {
|
||||
|
|
|
|||
868
pnpm-lock.yaml
868
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
|
@ -85,11 +85,13 @@ const queryClient = new QueryClient({
|
|||
const persister = createIDBPersister()
|
||||
|
||||
try {
|
||||
navigator.serviceWorker?.getRegistrations?.().then((registrations) => {
|
||||
registrations?.forEach((registration) => {
|
||||
registration.unregister()
|
||||
if (typeof window !== "undefined") {
|
||||
navigator.serviceWorker?.getRegistrations?.().then((registrations) => {
|
||||
registrations?.forEach((registration) => {
|
||||
registration.unregister()
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
} catch (error) {
|
||||
console.warn(error)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue