add missing deps

This commit is contained in:
Fernando López Guevara 2024-04-10 12:35:22 -03:00
parent 855692c1b4
commit 69048932dd
3 changed files with 5 additions and 2 deletions

View File

@ -24,9 +24,11 @@
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/shared-utils": "^2.0.4",
"@chakra-ui/styled-system": "^2.9.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@codemirror/autocomplete": "^6.12.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.10.1",
"@codemirror/view": "^6.26.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@getalby/bitcoin-connect": "^3.2.1",
@ -34,6 +36,7 @@
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^1.7.0",
"@scure/base": "^1.1.6",
"@uiw/codemirror-theme-github": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"@webscopeio/react-textarea-autocomplete": "^4.9.2",

View File

@ -1,6 +1,6 @@
import dayjs from "dayjs";
import debug, { Debugger } from "debug";
import _throttle from "lodash/throttle";
import _throttle from "lodash.throttle";
import { kinds } from "nostr-tools";
import NostrSubscription from "../classes/nostr-subscription";

View File

@ -1,4 +1,4 @@
import _throttle from "lodash/throttle";
import _throttle from "lodash.throttle";
import NostrRequest from "../classes/nostr-request";
import Subject from "../classes/subject";