Skip to content

Commit

Permalink
chore(deps): adding deps in backendcommon and recoil
Browse files Browse the repository at this point in the history
  • Loading branch information
shawakash committed Mar 21, 2024
1 parent 63e5c71 commit 736f855
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 4 deletions.
12 changes: 10 additions & 2 deletions backend/backend-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@
"dependencies": {
"dotenv": "^16.3.1",
"@paybox/common": "*",
"@paybox/zeus": "*"
"@paybox/zeus": "*",
"bcryptjs": "^2.4.3",
"redis": "^4.6.12",
"uuid": "^9.0.1",
"express": "^4.18.2",
"crypto": "^1.0.1",
"jose": "^5.2.0"
},
"devDependencies": {}
"devDependencies": {
"@types/express": "^4.17.21"
}
}
2 changes: 1 addition & 1 deletion backend/backend-common/src/auth/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
dbResStatus,
responseStatus,
} from "@paybox/common";
import { getPassword, queryValid } from "@paybox/backend-common";
import { getPassword, queryValid } from "../db/client";
import { RedisBase } from "../redis";


Expand Down
5 changes: 4 additions & 1 deletion packages/recoil/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
"react": "^18.2.0",
"recoil": "^0.7.7"
},
"gitHead": "3bd6c7180a38ad8e8b5557751301ffaba6b2a5da"
"gitHead": "3bd6c7180a38ad8e8b5557751301ffaba6b2a5da",
"devDependencies": {
"@types/react": "^18.2.67"
}
}
30 changes: 30 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5854,6 +5854,27 @@
rpc-websockets "^7.5.1"
superstruct "^0.14.2"

"@solana/web3.js@^1.77.3":
version "1.91.1"
resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.91.1.tgz#d49d2f982b52070be3b987fd8d892fcbddd064b5"
integrity sha512-cPgjZXm688oM9cULvJ8u2VH6Qp5rvptE1N1VODVxn2mAbpZsWrvWNPjmASkMYT/HzyrtqFkPvFdSHg8Xjt7aQA==
dependencies:
"@babel/runtime" "^7.23.4"
"@noble/curves" "^1.2.0"
"@noble/hashes" "^1.3.3"
"@solana/buffer-layout" "^4.0.1"
agentkeepalive "^4.5.0"
bigint-buffer "^1.1.5"
bn.js "^5.2.1"
borsh "^0.7.0"
bs58 "^4.0.1"
buffer "6.0.3"
fast-stable-stringify "^1.0.0"
jayson "^4.1.0"
node-fetch "^2.7.0"
rpc-websockets "^7.5.1"
superstruct "^0.14.2"

"@solflare-wallet/metamask-sdk@^1.0.2":
version "1.0.3"
resolved "https://registry.npmjs.org/@solflare-wallet/metamask-sdk/-/metamask-sdk-1.0.3.tgz"
Expand Down Expand Up @@ -7036,6 +7057,15 @@
"@types/scheduler" "*"
csstype "^3.0.2"

"@types/react@^18.2.67":
version "18.2.67"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.67.tgz#96b7af0b5e79c756f4bdd981de2ca28472c858e5"
integrity sha512-vkIE2vTIMHQ/xL0rgmuoECBCkZFZeHr49HeWSc24AptMbNRo7pwSBvj73rlJJs9fGKj0koS+V7kQB1jHS0uCgw==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"

"@types/redis@^4.0.11":
version "4.0.11"
resolved "https://registry.npmjs.org/@types/redis/-/redis-4.0.11.tgz"
Expand Down

0 comments on commit 736f855

Please sign in to comment.