Skip to content

Commit

Permalink
Update some minor dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
snoopdave committed Nov 4, 2023
1 parent e764ae2 commit 7314073
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 69 deletions.
10 changes: 5 additions & 5 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"name": "blogql-client",
"version": "1.0.0",
"description": "BlogQL web interface",
"main": "index.js",
"main": "src/index.js",
"author": {
"name": "Dave Johnson"
"name": "Dave Johnson",
"email": "[email protected]"
},
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "yarn build && webpack-dev-server --mode development",
"compile": "tsc --noEmit false",
Expand Down Expand Up @@ -72,7 +72,7 @@
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/uuid": "^9.0.3",
"@types/uuid": "^9.0.6",
"babel-loader": "^8.3.0",
"browserify-zlib": "^0.2.0",
"cross-fetch": "^3.1.5",
Expand All @@ -84,7 +84,7 @@
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.2",
"mini-css-extract-plugin": "^2.7.6",
"msw": "^0.49.2",
"msw-storybook-addon": "^1.8.0",
"storybook-addon-react-router-v6": "^0.3.4",
Expand Down
16 changes: 8 additions & 8 deletions client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4275,10 +4275,10 @@
resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz"
integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==

"@types/uuid@^9.0.3":
version "9.0.3"
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.3.tgz#6cdd939b4316b4f81625de9f06028d848c4a1533"
integrity sha512-taHQQH/3ZyI3zP8M/puluDEIEvtQHVYcC6y3N8ijFtAd28+Ey/G4sg1u2gB01S8MwybLOKAp9/yCMu/uR5l3Ug==
"@types/uuid@^9.0.6":
version "9.0.6"
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.6.tgz#c91ae743d8344a54b2b0c691195f5ff5265f6dfb"
integrity sha512-BT2Krtx4xaO6iwzwMFUYvWBWkV2pr37zD68Vmp1CDV196MzczBRxuEpD6Pr395HAgebC/co7hOphs53r8V7jew==

"@types/webpack-env@^1.16.0", "@types/webpack-env@^1.17.0":
version "1.18.0"
Expand Down Expand Up @@ -10971,10 +10971,10 @@ min-indent@^1.0.0:
resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==

mini-css-extract-plugin@^2.7.2:
version "2.7.2"
resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz"
integrity sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==
mini-css-extract-plugin@^2.7.6:
version "2.7.6"
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d"
integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==
dependencies:
schema-utils "^4.0.0"

Expand Down
29 changes: 16 additions & 13 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,51 @@
{
"name": "blogql-server2",
"version": "0.0.2",
"type": "module",
"description": "Simple GraphQL blog server, this time with Apollo 🚀",
"main": "./src/index.js",
"author": "[email protected]",
"author": {
"name": "Dave Johnson",
"email": "[email protected]"
},
"type": "module",
"license": "Apache-2.0",
"scripts": {
"start": "yarn build && node --experimental-modules src/index.js",
"build": "tsc --noEmit false",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --input-type module\" npx jest --detectOpenHandles",
"test": "yarn build && NODE_OPTIONS=\"--experimental-vm-modules --input-type module\" npx jest --detectOpenHandles",
"clean": "rm -rf src/*.js src/*/*.js",
"nuke": "rm -rf node_modules/*"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@apollo/server": "^4.9.4",
"@apollo/client": "^3.8.7",
"@apollo/server": "^4.9.5",
"@faker-js/faker": "^8.0.2",
"@types/cors": "^2.8.14",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/sqlite3": "^3.1.7",
"@types/sqlite3": "^3.1.10",
"apollo-client": "^2.6.10",
"apollo-datasource": "^3.3.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.2",
"google-auth-library": "^7.11.0",
"module-alias": "^2.2.2",
"module-alias": "^2.2.3",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.9.0",
"sequelize-typescript": "^2.1.1",
"sqlite3": "^5.1.4",
"sequelize-typescript": "^2.1.5",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"@types/relay-runtime": "^14.1.2",
"@types/uuid": "^8.3.4",
"@types/relay-runtime": "^14.1.15",
"@types/uuid": "^9.0.6",
"faker": "^6.6.6",
"graphql": "^16.8.1",
"jest": "^29.0.3",
Expand Down
86 changes: 43 additions & 43 deletions server/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
resolved "https://registry.yarnpkg.com/@apollo/cache-control-types/-/cache-control-types-1.0.3.tgz#5da62cf64c3b4419dabfef4536b57a40c8ff0b47"
integrity sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==

"@apollo/client@^3.8.5":
version "3.8.5"
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.8.5.tgz#becd2101d6049afd03dd796693fb5804346df42f"
integrity sha512-/ueWC3f1pFeH+tWbM1phz6pzUGGijyml6oQ+LKUcQzpXF6tVFPrb6oUIUQCbZpr6Xmv/dtNiFDohc39ra7Solg==
"@apollo/client@^3.8.7":
version "3.8.7"
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.8.7.tgz#090b1518f513503b9a6a690ee3eaec49529822e1"
integrity sha512-DnQtFkQrCyxHTSa9gR84YRLmU/al6HeXcLZazVe+VxKBmx/Hj4rV8xWtzfWYX5ijartsqDR7SJgV037MATEecA==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
"@wry/context" "^0.7.3"
Expand Down Expand Up @@ -62,10 +62,10 @@
"@apollo/utils.keyvaluecache" "^2.1.0"
"@apollo/utils.logger" "^2.0.0"

"@apollo/server@^4.9.4":
version "4.9.4"
resolved "https://registry.yarnpkg.com/@apollo/server/-/server-4.9.4.tgz#fde57e984beef1b2962354a492d3bca072c1067c"
integrity sha512-lopNDM3sZerTcYH/P85QX5HqSNV4HoVbtX3zOrf0ak7eplhPDiGVyF0jQWRbL64znG6KXW+nMuLDTyFTMQnvgA==
"@apollo/server@^4.9.5":
version "4.9.5"
resolved "https://registry.yarnpkg.com/@apollo/server/-/server-4.9.5.tgz#388b3e00bef370fbdb89dd22d5a56127afaf87ba"
integrity sha512-eDBfArYbZaTm1AGa82M1aL7lOscVhnZsH85+OWmHMIR98qntzEjNpWpQPYDTru63Qxs4kHcY29NUx/kMGZfGEA==
dependencies:
"@apollo/cache-control-types" "^1.0.3"
"@apollo/server-gateway-interface" "^1.1.1"
Expand Down Expand Up @@ -962,10 +962,10 @@
dependencies:
"@types/node" "*"

"@types/cors@^2.8.14":
version "2.8.14"
resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.14.tgz#94eeb1c95eda6a8ab54870a3bf88854512f43a92"
integrity sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==
"@types/cors@^2.8.15":
version "2.8.15"
resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.15.tgz#eb143aa2f8807ddd78e83cbff141bbedd91b60ee"
integrity sha512-n91JxbNLD8eQIuXDIChAN1tCKNWCEgpceU9b7ZMbFA+P+Q4yIeh80jizFLEvolRPc1ES0VdwFlGv+kJTSirogw==
dependencies:
"@types/node" "*"

Expand Down Expand Up @@ -996,9 +996,9 @@
"@types/send" "*"

"@types/express-session@^1.17.5":
version "1.17.5"
resolved "https://registry.yarnpkg.com/@types/express-session/-/express-session-1.17.5.tgz#13f48852b4aa60ff595835faeb4b4dda0ba0866e"
integrity sha512-l0DhkvNVfyUPEEis8fcwbd46VptfA/jmMwHfob2TfDMf3HyPLiB9mKD71LXhz5TMUobODXPD27zXSwtFQLHm+w==
version "1.17.9"
resolved "https://registry.yarnpkg.com/@types/express-session/-/express-session-1.17.9.tgz#2811b8c3f2e7efb5fd239e4cb0f26f58de8c0a62"
integrity sha512-yIqficLlTPdloeEPhOVenpOUWILkdaXHUWhTOqFGx9JoSuTgeatNjb97k8VvJehbTk0kUSUAHy5r27PXMga89Q==
dependencies:
"@types/express" "*"

Expand Down Expand Up @@ -1094,10 +1094,10 @@
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==

"@types/relay-runtime@^14.1.2":
version "14.1.2"
resolved "https://registry.yarnpkg.com/@types/relay-runtime/-/relay-runtime-14.1.2.tgz#252313e977f5b4d5a71d623fb8147c7815efbc9d"
integrity sha512-HeXlKlkGakGZtnViOk5lRn5ljjYqR+EvbJodt0hmwAp5YrWZ5kdXqzMWvAhlAUpGJtP7NkKwMMAsduy46S7UjA==
"@types/relay-runtime@^14.1.15":
version "14.1.15"
resolved "https://registry.yarnpkg.com/@types/relay-runtime/-/relay-runtime-14.1.15.tgz#af352bae3c0c3656bac59fbd3c9ca4dcabfcb8ac"
integrity sha512-ag5HMUtDG5kiR5Gje4he4+vQLZaYwg7UeboK1dcH30Qq5FyCZPthOPMPYsz4CeIwiDuvjY8IjGbd1vr3qqPPZw==

"@types/send@*":
version "0.17.2"
Expand All @@ -1115,10 +1115,10 @@
"@types/mime" "*"
"@types/node" "*"

"@types/sqlite3@^3.1.7":
version "3.1.8"
resolved "https://registry.yarnpkg.com/@types/sqlite3/-/sqlite3-3.1.8.tgz#e64310c5841fc01c1a8795d960d951e4cf940296"
integrity sha512-sQMt/qnyUWnqiTcJXm5ZfNPIBeJ/DVvJDwxw+0tAxPJvadzfiP1QhryO1JOR6t1yfb8NpzQb/Rud06mob5laIA==
"@types/sqlite3@^3.1.10":
version "3.1.10"
resolved "https://registry.yarnpkg.com/@types/sqlite3/-/sqlite3-3.1.10.tgz#dc9bd0bf4e523c094d9afe9d3b15a0c4cad6309c"
integrity sha512-1n4FdAvzRZA7hPnDKmkIZ7mWPR8bxdZTvGODgUK+bLgm7RfOUnBTFJNw48CRbYQYsL4e9LCa7qnxLVD4ikDQtw==
dependencies:
"@types/node" "*"

Expand All @@ -1127,10 +1127,10 @@
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==

"@types/uuid@^8.3.4":
version "8.3.4"
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc"
integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==
"@types/uuid@^9.0.6":
version "9.0.6"
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.6.tgz#c91ae743d8344a54b2b0c691195f5ff5265f6dfb"
integrity sha512-BT2Krtx4xaO6iwzwMFUYvWBWkV2pr37zD68Vmp1CDV196MzczBRxuEpD6Pr395HAgebC/co7hOphs53r8V7jew==

"@types/validator@^13.7.1":
version "13.7.6"
Expand Down Expand Up @@ -1887,10 +1887,10 @@ diff@^4.0.1:
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==

dotenv@^16.0.2:
version "16.0.2"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.2.tgz#0b0f8652c016a3858ef795024508cddc4bffc5bf"
integrity sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA==
dotenv@^16.3.1:
version "16.3.1"
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e"
integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==

dottie@^2.0.2:
version "2.0.2"
Expand Down Expand Up @@ -3259,10 +3259,10 @@ mkdirp@^1.0.3, mkdirp@^1.0.4:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==

module-alias@^2.2.2:
version "2.2.2"
resolved "https://registry.yarnpkg.com/module-alias/-/module-alias-2.2.2.tgz#151cdcecc24e25739ff0aa6e51e1c5716974c0e0"
integrity sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==
module-alias@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/module-alias/-/module-alias-2.2.3.tgz#ec2e85c68973bda6ab71ce7c93b763ec96053221"
integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==

moment-timezone@^0.5.34:
version "0.5.37"
Expand Down Expand Up @@ -3844,10 +3844,10 @@ sequelize-pool@^7.1.0:
resolved "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-7.1.0.tgz#210b391af4002762f823188fd6ecfc7413020768"
integrity sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==

sequelize-typescript@^2.1.1:
version "2.1.3"
resolved "https://registry.yarnpkg.com/sequelize-typescript/-/sequelize-typescript-2.1.3.tgz#94a8d0a4b5739fc917c8d8fa66e1acb5aadc1274"
integrity sha512-0mejGAaLywuCoOOLSXCQs2sMBNudU/QtWZkGY5VT2dfTHToXZi5bOxCa3/CukNNk7wJwXnLuIdeHdlqjvVoj1g==
sequelize-typescript@^2.1.5:
version "2.1.5"
resolved "https://registry.yarnpkg.com/sequelize-typescript/-/sequelize-typescript-2.1.5.tgz#f12d14607cc8abfd6172cd99f7d3255ec5c4d78e"
integrity sha512-x1CNODct8gJyfZPwEZBU5uVGNwgJI2Fda913ZxD5ZtCSRyTDPBTS/0uXciF+MlCpyqjpmoCAPtudQWzw579bzA==
dependencies:
glob "7.2.0"

Expand Down Expand Up @@ -3982,10 +3982,10 @@ sprintf-js@~1.0.2:
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==

sqlite3@^5.1.4:
version "5.1.4"
resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.1.4.tgz#35f83d368963168b324ad2f0fffce09f3b8723a7"
integrity sha512-i0UlWAzPlzX3B5XP2cYuhWQJsTtlMD6obOa1PgeEQ4DHEXUuyJkgv50I3isqZAP5oFc2T8OFvakmDh2W6I+YpA==
sqlite3@^5.1.6:
version "5.1.6"
resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.1.6.tgz#1d4fbc90fe4fbd51e952e0a90fd8f6c2b9098e97"
integrity sha512-olYkWoKFVNSSSQNvxVUfjiVbz3YtBwTJj+mfV5zpHmqW3sELx2Cf4QCdirMelhM5Zh+KDVaKgQHqCxrqiWHybw==
dependencies:
"@mapbox/node-pre-gyp" "^1.0.0"
node-addon-api "^4.2.0"
Expand Down

0 comments on commit 7314073

Please sign in to comment.