sdy

update dependencies

...@@ -3104,6 +3104,29 @@ ...@@ -3104,6 +3104,29 @@
3104 "tslib": "^1.10.0" 3104 "tslib": "^1.10.0"
3105 } 3105 }
3106 }, 3106 },
3107 + "passport": {
3108 + "version": "0.4.1",
3109 + "resolved": "https://registry.npmjs.org/passport/-/passport-0.4.1.tgz",
3110 + "integrity": "sha512-IxXgZZs8d7uFSt3eqNjM9NQ3g3uQCW5avD8mRNoXV99Yig50vjuaez6dQK2qC0kVWPRTujxY0dWgGfT09adjYg==",
3111 + "requires": {
3112 + "passport-strategy": "1.x.x",
3113 + "pause": "0.0.1"
3114 + }
3115 + },
3116 + "passport-jwt": {
3117 + "version": "4.0.0",
3118 + "resolved": "https://registry.npmjs.org/passport-jwt/-/passport-jwt-4.0.0.tgz",
3119 + "integrity": "sha512-BwC0n2GP/1hMVjR4QpnvqA61TxenUMlmfNjYNgK0ZAs0HK4SOQkHcSv4L328blNTLtHq7DbmvyNJiH+bn6C5Mg==",
3120 + "requires": {
3121 + "jsonwebtoken": "^8.2.0",
3122 + "passport-strategy": "^1.0.0"
3123 + }
3124 + },
3125 + "passport-strategy": {
3126 + "version": "1.0.0",
3127 + "resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz",
3128 + "integrity": "sha1-tVOaqPwiWj0a0XlHbd8ja0QPUuQ="
3129 + },
3107 "path-exists": { 3130 "path-exists": {
3108 "version": "3.0.0", 3131 "version": "3.0.0",
3109 "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 3132 "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
...@@ -3138,6 +3161,11 @@ ...@@ -3138,6 +3161,11 @@
3138 "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3161 "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
3139 "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" 3162 "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
3140 }, 3163 },
3164 + "pause": {
3165 + "version": "0.0.1",
3166 + "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz",
3167 + "integrity": "sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10="
3168 + },
3141 "picomatch": { 3169 "picomatch": {
3142 "version": "2.2.2", 3170 "version": "2.2.2",
3143 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 3171 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
......
...@@ -22,6 +22,8 @@ ...@@ -22,6 +22,8 @@
22 "graphql-yoga": "^1.18.3", 22 "graphql-yoga": "^1.18.3",
23 "jsonwebtoken": "^8.5.1", 23 "jsonwebtoken": "^8.5.1",
24 "merge-graphql-schemas": "^1.7.7", 24 "merge-graphql-schemas": "^1.7.7",
25 + "passport": "^0.4.1",
26 + "passport-jwt": "^4.0.0",
25 "twilio": "^3.42.2" 27 "twilio": "^3.42.2"
26 }, 28 },
27 "devDependencies": { 29 "devDependencies": {
......