├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── auth.js ├── images ├── okta-app-settings.png └── okta-client-authentication.png ├── index.js ├── package-lock.json └── package.json /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint:recommended", 3 | "parserOptions": { 4 | "ecmaVersion": 2018 5 | }, 6 | "env": { 7 | "es6": true, 8 | "node": true 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2019 Okta, Inc. 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Example CRUD App with Node.js and GraphQL 2 | 3 | This is an example API, showing how to create a GraphQL endpoint in Node. The mutations are protected behind authentication provided by Okta. 4 | 5 | **Prerequisites**: [Node.js](https://nodejs.org/en/). 6 | 7 | ## Getting Started 8 | 9 | To install this example application, run the following commands: 10 | 11 | ```bash 12 | git clone git@github.com:oktadeveloper/okta-node-graphql-crud-example.git 13 | cd okta-express-graphql-example 14 | npm install 15 | ``` 16 | 17 | This will install a local copy of the project. You will need to set up some environment variables before the app will run properly. 18 | 19 | To integrate Okta's Identity Platform for user authentication, you'll first need to: 20 | 21 | * [Sign up for a free Okta Developer account](https://www.okta.com/developer/signup/) 22 | * You will get a URL similar to `https://dev-123456.oktapreview.com`. 23 | * Save this URL for later 24 | * You will also use this URL to login to your Okta account 25 | 26 | You will need to create an application in Okta: 27 | 28 | * Log in to your Okta account, then navigate to **Applications** and click the **Add Application** button 29 | * Select **Native** and click **Next** 30 | * Give your application a name (e.g. "Node GraphQL") 31 | * Check the box for **Resource Owner Password**, then click **Done** 32 | 33 | Your Okta application should have settings similar to the following: 34 | 35 | ![Okta Application Settings](images/okta-app-settings.png) 36 | 37 | After creating the application, click **Edit** in the **Client Credentials** section. Change the **Client authentication** to **Use Client Authentication**. This will generate a client secret. Save both the **Client ID** and **Client Secret** for later. 38 | 39 | ![Okta Client Authentication](images/okta-client-authentication.png) 40 | 41 | You will also need to create an API token in Okta: 42 | 43 | * Log in to your Okta account, then navigate to **API > Tokens** and click the **Create Token** button 44 | * Enter a name that will help you remember what this is used for (e.g. "Node GraphQL") 45 | * Save the provided **token value** for later 46 | * This will only be displayed once. If you lose it, you will need to create another API token 47 | 48 | Now create a file called `.env` in the project root and add the following variables, replacing the values with your own from the previous steps. 49 | 50 | **.env** 51 | ```bash 52 | OKTA_ORG_URL=https://{yourOktaOrgUrl} 53 | OKTA_CLIENT_ID={yourClientId} 54 | OKTA_CLIENT_SECRET={yourClientSecret} 55 | OKTA_TOKEN={yourOktaToken} 56 | ``` 57 | 58 | Now you can run the GraphQL server with the following command: 59 | 60 | ```bash 61 | npm start 62 | ``` 63 | 64 | ## Usage 65 | 66 | Once you're up and running, you can get a nice user interface with built-in documentation by going to . Queries shouldn't require authentication, but if you want to run a mutation you'll need to authenticate first. 67 | 68 | #### Authenticating 69 | 70 | In the playground, run the `login` mutation using your Okta credentials, which would look something like this: 71 | 72 | ```graphql 73 | mutation { 74 | login(username: "myusername@example.com", password: "hunter2") { 75 | token 76 | } 77 | } 78 | ``` 79 | 80 | If you provide the right username and password, you'll get an access token that will look something like `eyJraW...j5gsJQ`, only much longer. 81 | 82 | In the GraphQL Playground, click on `HTTP HEADERS`, then modify it to include an `authorization` header with your token. It should look like this: 83 | 84 | ```json 85 | { 86 | "authorization": "Bearer eyJraW...j5gsJQ" 87 | } 88 | ``` 89 | 90 | **Note**: Again, the real token will be much longer. Just copy and paste it from the mutation response. 91 | 92 | #### Example Queries 93 | 94 | Here are some examples to get you started. Feel free to play around with them and get creative. 95 | 96 | ##### Get all quotes 97 | 98 | ```graphql 99 | query { 100 | quotes { 101 | id 102 | phrase 103 | quotee 104 | } 105 | } 106 | ``` 107 | 108 | ##### Add a new quote 109 | 110 | ```graphql 111 | mutation { 112 | addQuote(phrase: "That is so shway!", quotee: "Nora West-Allen") { 113 | id 114 | } 115 | } 116 | ``` 117 | 118 | ##### Update a quote 119 | 120 | ```graphql 121 | mutation { 122 | editQuote(id: "4ef19b4b-0348-45a5-9a9f-6f68ca9a62e6", quotee: "XS") { 123 | id 124 | phrase 125 | quotee 126 | } 127 | } 128 | ``` 129 | 130 | ##### Delete a quote 131 | 132 | ```graphql 133 | mutation { 134 | deleteQuote(id: "4ef19b4b-0348-45a5-9a9f-6f68ca9a62e6") { 135 | ok 136 | } 137 | } 138 | ``` 139 | 140 | ## Links 141 | 142 | This example uses the [Okta Node SDK](https://github.com/okta/okta-sdk-nodejs) and the [Okta JWT Verifier](https://github.com/okta/okta-oidc-js/tree/master/packages/jwt-verifier). 143 | 144 | ## Help 145 | 146 | Please [raise an issue](https://github.com/oktadeveloper/okta-node-graphql-crud-example/issues) if you find a problem with the example application, or visit our [Okta Developer Forums](https://devforum.okta.com/). You can also email [developers@okta.com](mailto:developers@okta.com) if would like to create a support ticket. 147 | 148 | ## License 149 | 150 | Apache 2.0, see [LICENSE](LICENSE). 151 | -------------------------------------------------------------------------------- /auth.js: -------------------------------------------------------------------------------- 1 | const fetch = require('node-fetch'); 2 | const { AuthenticationError } = require('apollo-server'); 3 | const JWTVerifier = require('@okta/jwt-verifier'); 4 | const okta = require('@okta/okta-sdk-nodejs'); 5 | 6 | const basicAuth = Buffer.from( 7 | [ 8 | process.env.OKTA_CLIENT_ID, 9 | process.env.OKTA_CLIENT_SECRET, 10 | ].join(':') 11 | ).toString('base64'); 12 | 13 | const getToken = async ({ username, password }) => { 14 | 15 | const response = await fetch(`${process.env.OKTA_ORG_URL}/oauth2/default/v1/token`, { 16 | method: 'POST', 17 | headers: { 18 | authorization: `Basic ${basicAuth}`, 19 | 'accept': 'application/json', 20 | 'content-type': 'application/x-www-form-urlencoded', 21 | }, 22 | body: new URLSearchParams({ 23 | username, 24 | password, 25 | grant_type: 'password', 26 | scope: 'openid', 27 | }).toString(), 28 | }); 29 | 30 | const { error_description, access_token } = await response.json(); 31 | 32 | if (error_description) throw new AuthenticationError(error_description); 33 | 34 | return access_token; 35 | }; 36 | 37 | const verifier = new JWTVerifier({ 38 | issuer: `${process.env.OKTA_ORG_URL}/oauth2/default`, 39 | clientId: process.env.OKTA_CLIENT_ID, 40 | }); 41 | 42 | const getUserIdFromToken = async (token) => { 43 | if (!token) return; 44 | 45 | try { 46 | const jwt = await verifier.verifyAccessToken(token) 47 | return jwt.claims.sub; 48 | } catch (error) { 49 | // ignore 50 | } 51 | }; 52 | 53 | const client = new okta.Client({ 54 | orgUrl: process.env.OKTA_ORG_URL, 55 | token: process.env.OKTA_TOKEN, 56 | }); 57 | 58 | const getUser = async (userId) => { 59 | if (!userId) return; 60 | 61 | try { 62 | const user = await client.getUser(userId); 63 | return user.profile; 64 | } catch (error) { 65 | // ignore 66 | } 67 | }; 68 | 69 | module.exports = { getToken, getUserIdFromToken, getUser }; 70 | -------------------------------------------------------------------------------- /images/okta-app-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/okta-node-graphql-crud-example/8cb298945a3a5d8d449fed0c587dda6098a8a481/images/okta-app-settings.png -------------------------------------------------------------------------------- /images/okta-client-authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oktadev/okta-node-graphql-crud-example/8cb298945a3a5d8d449fed0c587dda6098a8a481/images/okta-client-authentication.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | require('dotenv').config(); 2 | 3 | const { ApolloServer, AuthenticationError, gql } = require('apollo-server'); 4 | const uuid = require('uuid/v4'); 5 | 6 | const { getToken, getUserIdFromToken, getUser } = require('./auth'); 7 | 8 | const typeDefs = gql` 9 | type Quote { 10 | id: ID! 11 | phrase: String! 12 | quotee: String 13 | } 14 | 15 | type Query { 16 | quotes: [Quote] 17 | } 18 | 19 | type Mutation { 20 | login(username: String!, password: String!): Authentication 21 | addQuote(phrase: String!, quotee: String): Quote 22 | editQuote(id: ID!, phrase: String, quotee: String): Quote 23 | deleteQuote(id: ID!): DeleteResponse 24 | } 25 | 26 | type Authentication { 27 | token: String! 28 | } 29 | 30 | type DeleteResponse { 31 | ok: Boolean! 32 | } 33 | `; 34 | 35 | const quotes = {}; 36 | const addQuote = quote => { 37 | const id = uuid(); 38 | return quotes[id] = { ...quote, id }; 39 | }; 40 | 41 | addQuote({ phrase: "I'm a leaf on the wind. Watch how I soar.", quotee: "Wash" }); 42 | addQuote({ phrase: "We're all stories in the end.", quotee: "The Doctor" }); 43 | addQuote({ phrase: "Woah!", quotee: "Neo" }); 44 | 45 | const resolvers = { 46 | Query: { 47 | quotes: () => Object.values(quotes), 48 | }, 49 | Mutation: { 50 | login: async (parent, { username, password }) => ({ 51 | token: await getToken({ username, password }), 52 | }), 53 | addQuote: async (parent, quote, context) => { 54 | if (!context.user) throw new AuthenticationError("You must be logged in to perform this action"); 55 | 56 | return addQuote(quote); 57 | }, 58 | editQuote: async (parent, { id, ...quote }, context) => { 59 | if (!context.user) throw new AuthenticationError("You must be logged in to perform this action"); 60 | 61 | if (!quotes[id]) { 62 | throw new Error("Quote doesn't exist"); 63 | } 64 | 65 | quotes[id] = { 66 | ...quotes[id], 67 | ...quote, 68 | }; 69 | 70 | return quotes[id]; 71 | }, 72 | deleteQuote: async (parent, { id }, context) => { 73 | if (!context.user) throw new AuthenticationError("You must be logged in to perform this action"); 74 | 75 | const ok = Boolean(quotes[id]); 76 | delete quotes[id]; 77 | 78 | return { ok }; 79 | }, 80 | }, 81 | }; 82 | 83 | const context = async ({ req }) => { 84 | const [, token] = (req.headers.authorization || '').split("Bearer "); 85 | 86 | return { 87 | user: await getUser(await getUserIdFromToken(token)), 88 | }; 89 | }; 90 | 91 | const server = new ApolloServer({ typeDefs, resolvers, context }); 92 | 93 | server.listen().then(({ url }) => { 94 | console.log(`🚀 Server ready at ${url}`); // eslint-disable-line no-console 95 | }); 96 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-graphql", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@apollographql/apollo-tools": { 8 | "version": "0.3.7", 9 | "resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.3.7.tgz", 10 | "integrity": "sha512-+ertvzAwzkYmuUtT8zH3Zi6jPdyxZwOgnYaZHY7iLnMVJDhQKWlkyjLMF8wyzlPiEdDImVUMm5lOIBZo7LkGlg==", 11 | "requires": { 12 | "apollo-env": "0.5.1" 13 | } 14 | }, 15 | "@apollographql/graphql-playground-html": { 16 | "version": "1.6.18", 17 | "resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.18.tgz", 18 | "integrity": "sha512-7HGC1hQ0Aj93z2kv8h4RBtYClkiccj+F2Juh1m74Pky7D9tJDsQ4eBlaNNn0jMxGAL6EuaGwBN46EA9JtBMRog==" 19 | }, 20 | "@babel/code-frame": { 21 | "version": "7.0.0", 22 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", 23 | "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", 24 | "dev": true, 25 | "requires": { 26 | "@babel/highlight": "^7.0.0" 27 | } 28 | }, 29 | "@babel/highlight": { 30 | "version": "7.0.0", 31 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", 32 | "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", 33 | "dev": true, 34 | "requires": { 35 | "chalk": "^2.0.0", 36 | "esutils": "^2.0.2", 37 | "js-tokens": "^4.0.0" 38 | } 39 | }, 40 | "@okta/configuration-validation": { 41 | "version": "0.1.1", 42 | "resolved": "https://registry.npmjs.org/@okta/configuration-validation/-/configuration-validation-0.1.1.tgz", 43 | "integrity": "sha512-nXULaL9l6W5eODVgXxvr0wmde3nE6JLSmGBpZ0axPsaLLx3wo/aY5mC1JwWtIF1kyrfzRHEHIPmdUZ+U5xq/CQ==" 44 | }, 45 | "@okta/jwt-verifier": { 46 | "version": "0.0.15", 47 | "resolved": "https://registry.npmjs.org/@okta/jwt-verifier/-/jwt-verifier-0.0.15.tgz", 48 | "integrity": "sha512-tSiEyaSilRJIIfChFHIYcPyFA2B6LxuIbpeSFZ8F67ztM8dvvxOvAYUQRAjbI+JB39v9yYWewjGHOK75o2b4xQ==", 49 | "requires": { 50 | "@okta/configuration-validation": "^0.1.1", 51 | "jwks-rsa": "1.4.0", 52 | "njwt": "^1.0.0" 53 | } 54 | }, 55 | "@okta/okta-sdk-nodejs": { 56 | "version": "2.0.0", 57 | "resolved": "https://registry.npmjs.org/@okta/okta-sdk-nodejs/-/okta-sdk-nodejs-2.0.0.tgz", 58 | "integrity": "sha512-von5mJ/pzT8CKjOtcZw4JPzpKTPv/Kyxd/HWgUnV3ubp9zatgwDc4vHHNeW0N8b1Q+UizSgDDCIhT22QqqjiJg==", 59 | "requires": { 60 | "@okta/openapi": "^0.13.0", 61 | "deep-copy": "^1.4.2", 62 | "flat": "^2.0.1", 63 | "isomorphic-fetch": "2.2.1", 64 | "js-yaml": "^3.13.0", 65 | "lodash": "^4.17.11", 66 | "parse-link-header": "1.0.0" 67 | } 68 | }, 69 | "@okta/openapi": { 70 | "version": "0.13.0", 71 | "resolved": "https://registry.npmjs.org/@okta/openapi/-/openapi-0.13.0.tgz", 72 | "integrity": "sha1-OaXIyCoAPmUq5B9P52aRGvoFOqg=", 73 | "requires": { 74 | "commander": "2.9.0", 75 | "fs-extra": "3.0.1", 76 | "handlebars": "4.0.8", 77 | "json-stable-stringify": "1.0.1" 78 | } 79 | }, 80 | "@protobufjs/aspromise": { 81 | "version": "1.1.2", 82 | "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", 83 | "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" 84 | }, 85 | "@protobufjs/base64": { 86 | "version": "1.1.2", 87 | "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", 88 | "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" 89 | }, 90 | "@protobufjs/codegen": { 91 | "version": "2.0.4", 92 | "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", 93 | "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" 94 | }, 95 | "@protobufjs/eventemitter": { 96 | "version": "1.1.0", 97 | "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", 98 | "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" 99 | }, 100 | "@protobufjs/fetch": { 101 | "version": "1.1.0", 102 | "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", 103 | "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", 104 | "requires": { 105 | "@protobufjs/aspromise": "^1.1.1", 106 | "@protobufjs/inquire": "^1.1.0" 107 | } 108 | }, 109 | "@protobufjs/float": { 110 | "version": "1.0.2", 111 | "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", 112 | "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" 113 | }, 114 | "@protobufjs/inquire": { 115 | "version": "1.1.0", 116 | "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", 117 | "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" 118 | }, 119 | "@protobufjs/path": { 120 | "version": "1.1.2", 121 | "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", 122 | "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" 123 | }, 124 | "@protobufjs/pool": { 125 | "version": "1.1.0", 126 | "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", 127 | "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" 128 | }, 129 | "@protobufjs/utf8": { 130 | "version": "1.1.0", 131 | "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", 132 | "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" 133 | }, 134 | "@types/accepts": { 135 | "version": "1.3.5", 136 | "resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz", 137 | "integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==", 138 | "requires": { 139 | "@types/node": "*" 140 | } 141 | }, 142 | "@types/body-parser": { 143 | "version": "1.17.0", 144 | "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.0.tgz", 145 | "integrity": "sha512-a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w==", 146 | "requires": { 147 | "@types/connect": "*", 148 | "@types/node": "*" 149 | } 150 | }, 151 | "@types/connect": { 152 | "version": "3.4.32", 153 | "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.32.tgz", 154 | "integrity": "sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg==", 155 | "requires": { 156 | "@types/node": "*" 157 | } 158 | }, 159 | "@types/cors": { 160 | "version": "2.8.5", 161 | "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.5.tgz", 162 | "integrity": "sha512-GmK8AKu8i+s+EChK/uZ5IbrXPcPaQKWaNSGevDT/7o3gFObwSUQwqb1jMqxuo+YPvj0ckGzINI+EO7EHcmJjKg==", 163 | "requires": { 164 | "@types/express": "*" 165 | } 166 | }, 167 | "@types/events": { 168 | "version": "3.0.0", 169 | "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", 170 | "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" 171 | }, 172 | "@types/express": { 173 | "version": "4.16.1", 174 | "resolved": "https://registry.npmjs.org/@types/express/-/express-4.16.1.tgz", 175 | "integrity": "sha512-V0clmJow23WeyblmACoxbHBu2JKlE5TiIme6Lem14FnPW9gsttyHtk6wq7njcdIWH1njAaFgR8gW09lgY98gQg==", 176 | "requires": { 177 | "@types/body-parser": "*", 178 | "@types/express-serve-static-core": "*", 179 | "@types/serve-static": "*" 180 | } 181 | }, 182 | "@types/express-jwt": { 183 | "version": "0.0.34", 184 | "resolved": "https://registry.npmjs.org/@types/express-jwt/-/express-jwt-0.0.34.tgz", 185 | "integrity": "sha1-/b7kxq9cCiRu8qkz9VGZc8dxfwI=", 186 | "requires": { 187 | "@types/express": "*", 188 | "@types/express-unless": "*" 189 | } 190 | }, 191 | "@types/express-serve-static-core": { 192 | "version": "4.16.4", 193 | "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.4.tgz", 194 | "integrity": "sha512-x/8h6FHm14rPWnW2HP5likD/rsqJ3t/77OWx2PLxym0hXbeBWQmcPyHmwX+CtCQpjIfgrUdEoDFcLPwPZWiqzQ==", 195 | "requires": { 196 | "@types/node": "*", 197 | "@types/range-parser": "*" 198 | } 199 | }, 200 | "@types/express-unless": { 201 | "version": "0.5.1", 202 | "resolved": "https://registry.npmjs.org/@types/express-unless/-/express-unless-0.5.1.tgz", 203 | "integrity": "sha512-5fuvg7C69lemNgl0+v+CUxDYWVPSfXHhJPst4yTLcqi4zKJpORCxnDrnnilk3k0DTq/WrAUdvXFs01+vUqUZHw==", 204 | "requires": { 205 | "@types/express": "*" 206 | } 207 | }, 208 | "@types/long": { 209 | "version": "4.0.0", 210 | "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.0.tgz", 211 | "integrity": "sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q==" 212 | }, 213 | "@types/mime": { 214 | "version": "2.0.1", 215 | "resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.1.tgz", 216 | "integrity": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw==" 217 | }, 218 | "@types/node": { 219 | "version": "12.0.2", 220 | "resolved": "https://registry.npmjs.org/@types/node/-/node-12.0.2.tgz", 221 | "integrity": "sha512-5tabW/i+9mhrfEOUcLDu2xBPsHJ+X5Orqy9FKpale3SjDA17j5AEpYq5vfy3oAeAHGcvANRCO3NV3d2D6q3NiA==" 222 | }, 223 | "@types/range-parser": { 224 | "version": "1.2.3", 225 | "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", 226 | "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" 227 | }, 228 | "@types/serve-static": { 229 | "version": "1.13.2", 230 | "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.2.tgz", 231 | "integrity": "sha512-/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q==", 232 | "requires": { 233 | "@types/express-serve-static-core": "*", 234 | "@types/mime": "*" 235 | } 236 | }, 237 | "@types/ws": { 238 | "version": "6.0.1", 239 | "resolved": "https://registry.npmjs.org/@types/ws/-/ws-6.0.1.tgz", 240 | "integrity": "sha512-EzH8k1gyZ4xih/MaZTXwT2xOkPiIMSrhQ9b8wrlX88L0T02eYsddatQlwVFlEPyEqV0ChpdpNnE51QPH6NVT4Q==", 241 | "requires": { 242 | "@types/events": "*", 243 | "@types/node": "*" 244 | } 245 | }, 246 | "accepts": { 247 | "version": "1.3.7", 248 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 249 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 250 | "requires": { 251 | "mime-types": "~2.1.24", 252 | "negotiator": "0.6.2" 253 | } 254 | }, 255 | "acorn": { 256 | "version": "6.1.1", 257 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", 258 | "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", 259 | "dev": true 260 | }, 261 | "acorn-jsx": { 262 | "version": "5.0.1", 263 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz", 264 | "integrity": "sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==", 265 | "dev": true 266 | }, 267 | "ajv": { 268 | "version": "6.10.0", 269 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", 270 | "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", 271 | "requires": { 272 | "fast-deep-equal": "^2.0.1", 273 | "fast-json-stable-stringify": "^2.0.0", 274 | "json-schema-traverse": "^0.4.1", 275 | "uri-js": "^4.2.2" 276 | } 277 | }, 278 | "align-text": { 279 | "version": "0.1.4", 280 | "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", 281 | "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", 282 | "optional": true, 283 | "requires": { 284 | "kind-of": "^3.0.2", 285 | "longest": "^1.0.1", 286 | "repeat-string": "^1.5.2" 287 | } 288 | }, 289 | "amdefine": { 290 | "version": "1.0.1", 291 | "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", 292 | "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" 293 | }, 294 | "ansi-escapes": { 295 | "version": "3.2.0", 296 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", 297 | "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", 298 | "dev": true 299 | }, 300 | "ansi-regex": { 301 | "version": "3.0.0", 302 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 303 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", 304 | "dev": true 305 | }, 306 | "ansi-styles": { 307 | "version": "3.2.1", 308 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 309 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 310 | "dev": true, 311 | "requires": { 312 | "color-convert": "^1.9.0" 313 | } 314 | }, 315 | "apollo-cache-control": { 316 | "version": "0.6.0", 317 | "resolved": "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.6.0.tgz", 318 | "integrity": "sha512-66aCF6MHe0/FdD3knphwTv6CCIdb1ZxrMsiRpxP474qqyYVe2jAwBu6aJBn4emffZHZ7i6gp9dY6cPHThjnbKA==", 319 | "requires": { 320 | "apollo-server-env": "2.3.0", 321 | "graphql-extensions": "0.6.0" 322 | } 323 | }, 324 | "apollo-datasource": { 325 | "version": "0.4.0", 326 | "resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.4.0.tgz", 327 | "integrity": "sha512-6QkgnLYwQrW0qv+yXIf617DojJbGmza2XJXUlgnzrGGhxzfAynzEjaLyYkc8rYS1m82vjrl9EOmLHTcnVkvZAQ==", 328 | "requires": { 329 | "apollo-server-caching": "0.4.0", 330 | "apollo-server-env": "2.3.0" 331 | } 332 | }, 333 | "apollo-engine-reporting": { 334 | "version": "1.1.0", 335 | "resolved": "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-1.1.0.tgz", 336 | "integrity": "sha512-Dj0BwgcluHL0QVUaquhAoYoLX9Z4DRP/n2REcIwO8d2iy52r+1wN5QqZLx97dEFh7CjhNjTWeysJzc8XMWKa1Q==", 337 | "requires": { 338 | "apollo-engine-reporting-protobuf": "0.3.0", 339 | "apollo-graphql": "^0.2.1-alpha.1", 340 | "apollo-server-core": "2.5.0", 341 | "apollo-server-env": "2.3.0", 342 | "async-retry": "^1.2.1", 343 | "graphql-extensions": "0.6.0" 344 | } 345 | }, 346 | "apollo-engine-reporting-protobuf": { 347 | "version": "0.3.0", 348 | "resolved": "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.3.0.tgz", 349 | "integrity": "sha512-PYowpx/E+TJT/8nKpp3JmJuKh3x1SZcxDF6Cquj0soV205TUpFFCZQMi91i5ACiEp2AkYvM/GDBIrw+rfIwzTg==", 350 | "requires": { 351 | "protobufjs": "^6.8.6" 352 | } 353 | }, 354 | "apollo-env": { 355 | "version": "0.5.1", 356 | "resolved": "https://registry.npmjs.org/apollo-env/-/apollo-env-0.5.1.tgz", 357 | "integrity": "sha512-fndST2xojgSdH02k5hxk1cbqA9Ti8RX4YzzBoAB4oIe1Puhq7+YlhXGXfXB5Y4XN0al8dLg+5nAkyjNAR2qZTw==", 358 | "requires": { 359 | "core-js": "^3.0.1", 360 | "node-fetch": "^2.2.0", 361 | "sha.js": "^2.4.11" 362 | } 363 | }, 364 | "apollo-graphql": { 365 | "version": "0.2.1-register.1", 366 | "resolved": "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.2.1-register.1.tgz", 367 | "integrity": "sha512-Z2LOuvYomC9CN9K+mpFVcVQu6Ml5PIJlV+YOkGzFq73xeqWg1InxHqI3eEdCEhxTJq6H8rlWT8ATrMS+4sIhqw==", 368 | "requires": { 369 | "apollo-env": "0.4.1-register.1", 370 | "lodash.sortby": "^4.7.0" 371 | }, 372 | "dependencies": { 373 | "apollo-env": { 374 | "version": "0.4.1-register.1", 375 | "resolved": "https://registry.npmjs.org/apollo-env/-/apollo-env-0.4.1-register.1.tgz", 376 | "integrity": "sha512-fg1US7YZ6yW1N0tFq8g4HpCR3eJZmI+rIiHDiknYN9D1MTjvwYdmXYhi7VaPvQ21hV5nMRvfBUMqYXjP+6FsGQ==", 377 | "requires": { 378 | "core-js": "3.0.0-beta.13", 379 | "node-fetch": "^2.2.0", 380 | "sha.js": "^2.4.11" 381 | } 382 | }, 383 | "core-js": { 384 | "version": "3.0.0-beta.13", 385 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.0.0-beta.13.tgz", 386 | "integrity": "sha512-16Q43c/3LT9NyePUJKL8nRIQgYWjcBhjJSMWg96PVSxoS0PeE0NHitPI3opBrs9MGGHjte1KoEVr9W63YKlTXQ==" 387 | } 388 | } 389 | }, 390 | "apollo-link": { 391 | "version": "1.2.11", 392 | "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.11.tgz", 393 | "integrity": "sha512-PQvRCg13VduLy3X/0L79M6uOpTh5iHdxnxYuo8yL7sJlWybKRJwsv4IcRBJpMFbChOOaHY7Og9wgPo6DLKDKDA==", 394 | "requires": { 395 | "apollo-utilities": "^1.2.1", 396 | "ts-invariant": "^0.3.2", 397 | "tslib": "^1.9.3", 398 | "zen-observable-ts": "^0.8.18" 399 | } 400 | }, 401 | "apollo-server": { 402 | "version": "2.5.0", 403 | "resolved": "https://registry.npmjs.org/apollo-server/-/apollo-server-2.5.0.tgz", 404 | "integrity": "sha512-85A3iAnXVP5QiXc0xvAJRyGsoxov06+8AzttKqehR4Q50UC1Is62xY5WZk58oW7fm+awpqh+sXB2F2E6tObSmg==", 405 | "requires": { 406 | "apollo-server-core": "2.5.0", 407 | "apollo-server-express": "2.5.0", 408 | "express": "^4.0.0", 409 | "graphql-subscriptions": "^1.0.0", 410 | "graphql-tools": "^4.0.0" 411 | } 412 | }, 413 | "apollo-server-caching": { 414 | "version": "0.4.0", 415 | "resolved": "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.4.0.tgz", 416 | "integrity": "sha512-GTOZdbLhrSOKYNWMYgaqX5cVNSMT0bGUTZKV8/tYlyYmsB6ey7l6iId3Q7UpHS6F6OR2lstz5XaKZ+T3fDfPzQ==", 417 | "requires": { 418 | "lru-cache": "^5.0.0" 419 | } 420 | }, 421 | "apollo-server-core": { 422 | "version": "2.5.0", 423 | "resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.5.0.tgz", 424 | "integrity": "sha512-7hyQ/Rt0hC38bUfxMQmLNHDBIGEBykFWo9EO0W+3o/cno/SqBKd1KKichrABVv+v+SCvZAUutX6gYS5l3G+ULQ==", 425 | "requires": { 426 | "@apollographql/apollo-tools": "^0.3.6-alpha.1", 427 | "@apollographql/graphql-playground-html": "^1.6.6", 428 | "@types/ws": "^6.0.0", 429 | "apollo-cache-control": "0.6.0", 430 | "apollo-datasource": "0.4.0", 431 | "apollo-engine-reporting": "1.1.0", 432 | "apollo-server-caching": "0.4.0", 433 | "apollo-server-env": "2.3.0", 434 | "apollo-server-errors": "2.3.0", 435 | "apollo-server-plugin-base": "0.4.0", 436 | "apollo-tracing": "0.6.0", 437 | "fast-json-stable-stringify": "^2.0.0", 438 | "graphql-extensions": "0.6.0", 439 | "graphql-subscriptions": "^1.0.0", 440 | "graphql-tag": "^2.9.2", 441 | "graphql-tools": "^4.0.0", 442 | "graphql-upload": "^8.0.2", 443 | "sha.js": "^2.4.11", 444 | "subscriptions-transport-ws": "^0.9.11", 445 | "ws": "^6.0.0" 446 | } 447 | }, 448 | "apollo-server-env": { 449 | "version": "2.3.0", 450 | "resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-2.3.0.tgz", 451 | "integrity": "sha512-WIwlkCM/gir0CkoYWPMTCH8uGCCKB/aM074U1bKayvkFOBVO2VgG5x2kgsfkyF05IMQq2/GOTsKhNY7RnUEhTA==", 452 | "requires": { 453 | "node-fetch": "^2.1.2", 454 | "util.promisify": "^1.0.0" 455 | } 456 | }, 457 | "apollo-server-errors": { 458 | "version": "2.3.0", 459 | "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.3.0.tgz", 460 | "integrity": "sha512-rUvzwMo2ZQgzzPh2kcJyfbRSfVKRMhfIlhY7BzUfM4x6ZT0aijlgsf714Ll3Mbf5Fxii32kD0A/DmKsTecpccw==" 461 | }, 462 | "apollo-server-express": { 463 | "version": "2.5.0", 464 | "resolved": "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.5.0.tgz", 465 | "integrity": "sha512-2gd3VWIqji2jyDYMTTqKzVU4/znjEjugtLUmPgVl5SoBvJSMTsO7VgJv+roBubZGDK8jXXUEXr2a33RtIeHe4g==", 466 | "requires": { 467 | "@apollographql/graphql-playground-html": "^1.6.6", 468 | "@types/accepts": "^1.3.5", 469 | "@types/body-parser": "1.17.0", 470 | "@types/cors": "^2.8.4", 471 | "@types/express": "4.16.1", 472 | "accepts": "^1.3.5", 473 | "apollo-server-core": "2.5.0", 474 | "body-parser": "^1.18.3", 475 | "cors": "^2.8.4", 476 | "graphql-subscriptions": "^1.0.0", 477 | "graphql-tools": "^4.0.0", 478 | "type-is": "^1.6.16" 479 | } 480 | }, 481 | "apollo-server-plugin-base": { 482 | "version": "0.4.0", 483 | "resolved": "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.4.0.tgz", 484 | "integrity": "sha512-iD7ARNtwnvHGd1EMPK0CuodM8d8hgDvFwTfIDzJY04QIQ6/KrBFaWhnCXJsy+HMb47GovwBbq67IK6eb2WJgBg==" 485 | }, 486 | "apollo-tracing": { 487 | "version": "0.6.0", 488 | "resolved": "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.6.0.tgz", 489 | "integrity": "sha512-OpYPHVBgcQ/HT2WLXJQWwhilzR1rrl01tZeMU2N7yinsp/oyKngF5aUSMtuvX1k/T3abilQo+w10oAQlBCGdPA==", 490 | "requires": { 491 | "apollo-server-env": "2.3.0", 492 | "graphql-extensions": "0.6.0" 493 | } 494 | }, 495 | "apollo-utilities": { 496 | "version": "1.2.1", 497 | "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.2.1.tgz", 498 | "integrity": "sha512-Zv8Udp9XTSFiN8oyXOjf6PMHepD4yxxReLsl6dPUy5Ths7jti3nmlBzZUOxuTWRwZn0MoclqL7RQ5UEJN8MAxg==", 499 | "requires": { 500 | "fast-json-stable-stringify": "^2.0.0", 501 | "ts-invariant": "^0.2.1", 502 | "tslib": "^1.9.3" 503 | }, 504 | "dependencies": { 505 | "ts-invariant": { 506 | "version": "0.2.1", 507 | "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.2.1.tgz", 508 | "integrity": "sha512-Z/JSxzVmhTo50I+LKagEISFJW3pvPCqsMWLamCTX8Kr3N5aMrnGOqcflbe5hLUzwjvgPfnLzQtHZv0yWQ+FIHg==", 509 | "requires": { 510 | "tslib": "^1.9.3" 511 | } 512 | } 513 | } 514 | }, 515 | "argparse": { 516 | "version": "1.0.10", 517 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 518 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 519 | "requires": { 520 | "sprintf-js": "~1.0.2" 521 | } 522 | }, 523 | "array-flatten": { 524 | "version": "1.1.1", 525 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 526 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 527 | }, 528 | "asn1": { 529 | "version": "0.2.4", 530 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 531 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 532 | "requires": { 533 | "safer-buffer": "~2.1.0" 534 | } 535 | }, 536 | "assert-plus": { 537 | "version": "1.0.0", 538 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 539 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" 540 | }, 541 | "astral-regex": { 542 | "version": "1.0.0", 543 | "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", 544 | "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", 545 | "dev": true 546 | }, 547 | "async": { 548 | "version": "1.5.2", 549 | "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", 550 | "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" 551 | }, 552 | "async-limiter": { 553 | "version": "1.0.0", 554 | "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", 555 | "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==" 556 | }, 557 | "async-retry": { 558 | "version": "1.2.3", 559 | "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.2.3.tgz", 560 | "integrity": "sha512-tfDb02Th6CE6pJUF2gjW5ZVjsgwlucVXOEQMvEX9JgSJMs9gAX+Nz3xRuJBKuUYjTSYORqvDBORdAQ3LU59g7Q==", 561 | "requires": { 562 | "retry": "0.12.0" 563 | } 564 | }, 565 | "asynckit": { 566 | "version": "0.4.0", 567 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 568 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 569 | }, 570 | "aws-sign2": { 571 | "version": "0.7.0", 572 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 573 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" 574 | }, 575 | "aws4": { 576 | "version": "1.8.0", 577 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", 578 | "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" 579 | }, 580 | "backo2": { 581 | "version": "1.0.2", 582 | "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", 583 | "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=" 584 | }, 585 | "balanced-match": { 586 | "version": "1.0.0", 587 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 588 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 589 | "dev": true 590 | }, 591 | "bcrypt-pbkdf": { 592 | "version": "1.0.2", 593 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 594 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 595 | "requires": { 596 | "tweetnacl": "^0.14.3" 597 | } 598 | }, 599 | "body-parser": { 600 | "version": "1.19.0", 601 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 602 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 603 | "requires": { 604 | "bytes": "3.1.0", 605 | "content-type": "~1.0.4", 606 | "debug": "2.6.9", 607 | "depd": "~1.1.2", 608 | "http-errors": "1.7.2", 609 | "iconv-lite": "0.4.24", 610 | "on-finished": "~2.3.0", 611 | "qs": "6.7.0", 612 | "raw-body": "2.4.0", 613 | "type-is": "~1.6.17" 614 | } 615 | }, 616 | "brace-expansion": { 617 | "version": "1.1.11", 618 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 619 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 620 | "dev": true, 621 | "requires": { 622 | "balanced-match": "^1.0.0", 623 | "concat-map": "0.0.1" 624 | } 625 | }, 626 | "busboy": { 627 | "version": "0.3.1", 628 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-0.3.1.tgz", 629 | "integrity": "sha512-y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw==", 630 | "requires": { 631 | "dicer": "0.3.0" 632 | } 633 | }, 634 | "bytes": { 635 | "version": "3.1.0", 636 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 637 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 638 | }, 639 | "callsites": { 640 | "version": "3.1.0", 641 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 642 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 643 | "dev": true 644 | }, 645 | "camelcase": { 646 | "version": "1.2.1", 647 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", 648 | "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", 649 | "optional": true 650 | }, 651 | "caseless": { 652 | "version": "0.12.0", 653 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 654 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" 655 | }, 656 | "center-align": { 657 | "version": "0.1.3", 658 | "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", 659 | "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", 660 | "optional": true, 661 | "requires": { 662 | "align-text": "^0.1.3", 663 | "lazy-cache": "^1.0.3" 664 | } 665 | }, 666 | "chalk": { 667 | "version": "2.4.2", 668 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 669 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 670 | "dev": true, 671 | "requires": { 672 | "ansi-styles": "^3.2.1", 673 | "escape-string-regexp": "^1.0.5", 674 | "supports-color": "^5.3.0" 675 | } 676 | }, 677 | "chardet": { 678 | "version": "0.7.0", 679 | "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", 680 | "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", 681 | "dev": true 682 | }, 683 | "cli-cursor": { 684 | "version": "2.1.0", 685 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", 686 | "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", 687 | "dev": true, 688 | "requires": { 689 | "restore-cursor": "^2.0.0" 690 | } 691 | }, 692 | "cli-width": { 693 | "version": "2.2.0", 694 | "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", 695 | "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", 696 | "dev": true 697 | }, 698 | "cliui": { 699 | "version": "2.1.0", 700 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", 701 | "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", 702 | "optional": true, 703 | "requires": { 704 | "center-align": "^0.1.1", 705 | "right-align": "^0.1.1", 706 | "wordwrap": "0.0.2" 707 | }, 708 | "dependencies": { 709 | "wordwrap": { 710 | "version": "0.0.2", 711 | "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", 712 | "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", 713 | "optional": true 714 | } 715 | } 716 | }, 717 | "color-convert": { 718 | "version": "1.9.3", 719 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 720 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 721 | "dev": true, 722 | "requires": { 723 | "color-name": "1.1.3" 724 | } 725 | }, 726 | "color-name": { 727 | "version": "1.1.3", 728 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 729 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 730 | "dev": true 731 | }, 732 | "combined-stream": { 733 | "version": "1.0.8", 734 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 735 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 736 | "requires": { 737 | "delayed-stream": "~1.0.0" 738 | } 739 | }, 740 | "commander": { 741 | "version": "2.9.0", 742 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", 743 | "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", 744 | "requires": { 745 | "graceful-readlink": ">= 1.0.0" 746 | } 747 | }, 748 | "concat-map": { 749 | "version": "0.0.1", 750 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 751 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 752 | "dev": true 753 | }, 754 | "content-disposition": { 755 | "version": "0.5.3", 756 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 757 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 758 | "requires": { 759 | "safe-buffer": "5.1.2" 760 | } 761 | }, 762 | "content-type": { 763 | "version": "1.0.4", 764 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 765 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 766 | }, 767 | "cookie": { 768 | "version": "0.4.0", 769 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 770 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 771 | }, 772 | "cookie-signature": { 773 | "version": "1.0.6", 774 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 775 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 776 | }, 777 | "core-js": { 778 | "version": "3.0.1", 779 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.0.1.tgz", 780 | "integrity": "sha512-sco40rF+2KlE0ROMvydjkrVMMG1vYilP2ALoRXcYR4obqbYIuV3Bg+51GEDW+HF8n7NRA+iaA4qD0nD9lo9mew==" 781 | }, 782 | "core-util-is": { 783 | "version": "1.0.2", 784 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 785 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 786 | }, 787 | "cors": { 788 | "version": "2.8.5", 789 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 790 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 791 | "requires": { 792 | "object-assign": "^4", 793 | "vary": "^1" 794 | } 795 | }, 796 | "cross-spawn": { 797 | "version": "6.0.5", 798 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", 799 | "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", 800 | "dev": true, 801 | "requires": { 802 | "nice-try": "^1.0.4", 803 | "path-key": "^2.0.1", 804 | "semver": "^5.5.0", 805 | "shebang-command": "^1.2.0", 806 | "which": "^1.2.9" 807 | } 808 | }, 809 | "dashdash": { 810 | "version": "1.14.1", 811 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 812 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 813 | "requires": { 814 | "assert-plus": "^1.0.0" 815 | } 816 | }, 817 | "debug": { 818 | "version": "2.6.9", 819 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 820 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 821 | "requires": { 822 | "ms": "2.0.0" 823 | } 824 | }, 825 | "decamelize": { 826 | "version": "1.2.0", 827 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", 828 | "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", 829 | "optional": true 830 | }, 831 | "deep-copy": { 832 | "version": "1.4.2", 833 | "resolved": "https://registry.npmjs.org/deep-copy/-/deep-copy-1.4.2.tgz", 834 | "integrity": "sha512-VxZwQ/1+WGQPl5nE67uLhh7OqdrmqI1OazrraO9Bbw/M8Bt6Mol/RxzDA6N6ZgRXpsG/W9PgUj8E1LHHBEq2GQ==" 835 | }, 836 | "deep-is": { 837 | "version": "0.1.3", 838 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", 839 | "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", 840 | "dev": true 841 | }, 842 | "define-properties": { 843 | "version": "1.1.3", 844 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 845 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 846 | "requires": { 847 | "object-keys": "^1.0.12" 848 | } 849 | }, 850 | "delayed-stream": { 851 | "version": "1.0.0", 852 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 853 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" 854 | }, 855 | "depd": { 856 | "version": "1.1.2", 857 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 858 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" 859 | }, 860 | "deprecated-decorator": { 861 | "version": "0.1.6", 862 | "resolved": "https://registry.npmjs.org/deprecated-decorator/-/deprecated-decorator-0.1.6.tgz", 863 | "integrity": "sha1-AJZjF7ehL+kvPMgx91g68ym4bDc=" 864 | }, 865 | "destroy": { 866 | "version": "1.0.4", 867 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 868 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 869 | }, 870 | "dicer": { 871 | "version": "0.3.0", 872 | "resolved": "https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz", 873 | "integrity": "sha512-MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==", 874 | "requires": { 875 | "streamsearch": "0.1.2" 876 | } 877 | }, 878 | "doctrine": { 879 | "version": "3.0.0", 880 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 881 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 882 | "dev": true, 883 | "requires": { 884 | "esutils": "^2.0.2" 885 | } 886 | }, 887 | "dotenv": { 888 | "version": "8.0.0", 889 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.0.0.tgz", 890 | "integrity": "sha512-30xVGqjLjiUOArT4+M5q9sYdvuR4riM6yK9wMcas9Vbp6zZa+ocC9dp6QoftuhTPhFAiLK/0C5Ni2nou/Bk8lg==" 891 | }, 892 | "ecc-jsbn": { 893 | "version": "0.1.2", 894 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 895 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 896 | "requires": { 897 | "jsbn": "~0.1.0", 898 | "safer-buffer": "^2.1.0" 899 | } 900 | }, 901 | "ecdsa-sig-formatter": { 902 | "version": "1.0.11", 903 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", 904 | "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", 905 | "requires": { 906 | "safe-buffer": "^5.0.1" 907 | } 908 | }, 909 | "ee-first": { 910 | "version": "1.1.1", 911 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 912 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 913 | }, 914 | "emoji-regex": { 915 | "version": "7.0.3", 916 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 917 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", 918 | "dev": true 919 | }, 920 | "encodeurl": { 921 | "version": "1.0.2", 922 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 923 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 924 | }, 925 | "encoding": { 926 | "version": "0.1.12", 927 | "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", 928 | "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", 929 | "requires": { 930 | "iconv-lite": "~0.4.13" 931 | } 932 | }, 933 | "es-abstract": { 934 | "version": "1.13.0", 935 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", 936 | "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", 937 | "requires": { 938 | "es-to-primitive": "^1.2.0", 939 | "function-bind": "^1.1.1", 940 | "has": "^1.0.3", 941 | "is-callable": "^1.1.4", 942 | "is-regex": "^1.0.4", 943 | "object-keys": "^1.0.12" 944 | } 945 | }, 946 | "es-to-primitive": { 947 | "version": "1.2.0", 948 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", 949 | "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", 950 | "requires": { 951 | "is-callable": "^1.1.4", 952 | "is-date-object": "^1.0.1", 953 | "is-symbol": "^1.0.2" 954 | } 955 | }, 956 | "escape-html": { 957 | "version": "1.0.3", 958 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 959 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 960 | }, 961 | "escape-string-regexp": { 962 | "version": "1.0.5", 963 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 964 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 965 | "dev": true 966 | }, 967 | "eslint": { 968 | "version": "5.16.0", 969 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz", 970 | "integrity": "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==", 971 | "dev": true, 972 | "requires": { 973 | "@babel/code-frame": "^7.0.0", 974 | "ajv": "^6.9.1", 975 | "chalk": "^2.1.0", 976 | "cross-spawn": "^6.0.5", 977 | "debug": "^4.0.1", 978 | "doctrine": "^3.0.0", 979 | "eslint-scope": "^4.0.3", 980 | "eslint-utils": "^1.3.1", 981 | "eslint-visitor-keys": "^1.0.0", 982 | "espree": "^5.0.1", 983 | "esquery": "^1.0.1", 984 | "esutils": "^2.0.2", 985 | "file-entry-cache": "^5.0.1", 986 | "functional-red-black-tree": "^1.0.1", 987 | "glob": "^7.1.2", 988 | "globals": "^11.7.0", 989 | "ignore": "^4.0.6", 990 | "import-fresh": "^3.0.0", 991 | "imurmurhash": "^0.1.4", 992 | "inquirer": "^6.2.2", 993 | "js-yaml": "^3.13.0", 994 | "json-stable-stringify-without-jsonify": "^1.0.1", 995 | "levn": "^0.3.0", 996 | "lodash": "^4.17.11", 997 | "minimatch": "^3.0.4", 998 | "mkdirp": "^0.5.1", 999 | "natural-compare": "^1.4.0", 1000 | "optionator": "^0.8.2", 1001 | "path-is-inside": "^1.0.2", 1002 | "progress": "^2.0.0", 1003 | "regexpp": "^2.0.1", 1004 | "semver": "^5.5.1", 1005 | "strip-ansi": "^4.0.0", 1006 | "strip-json-comments": "^2.0.1", 1007 | "table": "^5.2.3", 1008 | "text-table": "^0.2.0" 1009 | }, 1010 | "dependencies": { 1011 | "debug": { 1012 | "version": "4.1.1", 1013 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", 1014 | "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", 1015 | "dev": true, 1016 | "requires": { 1017 | "ms": "^2.1.1" 1018 | } 1019 | }, 1020 | "ms": { 1021 | "version": "2.1.1", 1022 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 1023 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", 1024 | "dev": true 1025 | } 1026 | } 1027 | }, 1028 | "eslint-scope": { 1029 | "version": "4.0.3", 1030 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", 1031 | "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", 1032 | "dev": true, 1033 | "requires": { 1034 | "esrecurse": "^4.1.0", 1035 | "estraverse": "^4.1.1" 1036 | } 1037 | }, 1038 | "eslint-utils": { 1039 | "version": "1.3.1", 1040 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", 1041 | "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==", 1042 | "dev": true 1043 | }, 1044 | "eslint-visitor-keys": { 1045 | "version": "1.0.0", 1046 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", 1047 | "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", 1048 | "dev": true 1049 | }, 1050 | "espree": { 1051 | "version": "5.0.1", 1052 | "resolved": "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz", 1053 | "integrity": "sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==", 1054 | "dev": true, 1055 | "requires": { 1056 | "acorn": "^6.0.7", 1057 | "acorn-jsx": "^5.0.0", 1058 | "eslint-visitor-keys": "^1.0.0" 1059 | } 1060 | }, 1061 | "esprima": { 1062 | "version": "4.0.1", 1063 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 1064 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" 1065 | }, 1066 | "esquery": { 1067 | "version": "1.0.1", 1068 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", 1069 | "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", 1070 | "dev": true, 1071 | "requires": { 1072 | "estraverse": "^4.0.0" 1073 | } 1074 | }, 1075 | "esrecurse": { 1076 | "version": "4.2.1", 1077 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", 1078 | "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", 1079 | "dev": true, 1080 | "requires": { 1081 | "estraverse": "^4.1.0" 1082 | } 1083 | }, 1084 | "estraverse": { 1085 | "version": "4.2.0", 1086 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", 1087 | "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", 1088 | "dev": true 1089 | }, 1090 | "esutils": { 1091 | "version": "2.0.2", 1092 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", 1093 | "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", 1094 | "dev": true 1095 | }, 1096 | "etag": { 1097 | "version": "1.8.1", 1098 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 1099 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 1100 | }, 1101 | "eventemitter3": { 1102 | "version": "3.1.2", 1103 | "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", 1104 | "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" 1105 | }, 1106 | "express": { 1107 | "version": "4.17.0", 1108 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.0.tgz", 1109 | "integrity": "sha512-1Z7/t3Z5ZnBG252gKUPyItc4xdeaA0X934ca2ewckAsVsw9EG71i++ZHZPYnus8g/s5Bty8IMpSVEuRkmwwPRQ==", 1110 | "requires": { 1111 | "accepts": "~1.3.7", 1112 | "array-flatten": "1.1.1", 1113 | "body-parser": "1.19.0", 1114 | "content-disposition": "0.5.3", 1115 | "content-type": "~1.0.4", 1116 | "cookie": "0.4.0", 1117 | "cookie-signature": "1.0.6", 1118 | "debug": "2.6.9", 1119 | "depd": "~1.1.2", 1120 | "encodeurl": "~1.0.2", 1121 | "escape-html": "~1.0.3", 1122 | "etag": "~1.8.1", 1123 | "finalhandler": "~1.1.2", 1124 | "fresh": "0.5.2", 1125 | "merge-descriptors": "1.0.1", 1126 | "methods": "~1.1.2", 1127 | "on-finished": "~2.3.0", 1128 | "parseurl": "~1.3.3", 1129 | "path-to-regexp": "0.1.7", 1130 | "proxy-addr": "~2.0.5", 1131 | "qs": "6.7.0", 1132 | "range-parser": "~1.2.1", 1133 | "safe-buffer": "5.1.2", 1134 | "send": "0.17.1", 1135 | "serve-static": "1.14.1", 1136 | "setprototypeof": "1.1.1", 1137 | "statuses": "~1.5.0", 1138 | "type-is": "~1.6.18", 1139 | "utils-merge": "1.0.1", 1140 | "vary": "~1.1.2" 1141 | } 1142 | }, 1143 | "extend": { 1144 | "version": "3.0.2", 1145 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 1146 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 1147 | }, 1148 | "external-editor": { 1149 | "version": "3.0.3", 1150 | "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz", 1151 | "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==", 1152 | "dev": true, 1153 | "requires": { 1154 | "chardet": "^0.7.0", 1155 | "iconv-lite": "^0.4.24", 1156 | "tmp": "^0.0.33" 1157 | } 1158 | }, 1159 | "extsprintf": { 1160 | "version": "1.3.0", 1161 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 1162 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" 1163 | }, 1164 | "fast-deep-equal": { 1165 | "version": "2.0.1", 1166 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", 1167 | "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" 1168 | }, 1169 | "fast-json-stable-stringify": { 1170 | "version": "2.0.0", 1171 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", 1172 | "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" 1173 | }, 1174 | "fast-levenshtein": { 1175 | "version": "2.0.6", 1176 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1177 | "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", 1178 | "dev": true 1179 | }, 1180 | "figures": { 1181 | "version": "2.0.0", 1182 | "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", 1183 | "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", 1184 | "dev": true, 1185 | "requires": { 1186 | "escape-string-regexp": "^1.0.5" 1187 | } 1188 | }, 1189 | "file-entry-cache": { 1190 | "version": "5.0.1", 1191 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", 1192 | "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", 1193 | "dev": true, 1194 | "requires": { 1195 | "flat-cache": "^2.0.1" 1196 | } 1197 | }, 1198 | "finalhandler": { 1199 | "version": "1.1.2", 1200 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 1201 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 1202 | "requires": { 1203 | "debug": "2.6.9", 1204 | "encodeurl": "~1.0.2", 1205 | "escape-html": "~1.0.3", 1206 | "on-finished": "~2.3.0", 1207 | "parseurl": "~1.3.3", 1208 | "statuses": "~1.5.0", 1209 | "unpipe": "~1.0.0" 1210 | } 1211 | }, 1212 | "flat": { 1213 | "version": "2.0.1", 1214 | "resolved": "https://registry.npmjs.org/flat/-/flat-2.0.1.tgz", 1215 | "integrity": "sha1-cOKRiKdL4MPIlAnu0fqVd5B64y8=", 1216 | "requires": { 1217 | "is-buffer": "~1.1.2" 1218 | } 1219 | }, 1220 | "flat-cache": { 1221 | "version": "2.0.1", 1222 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", 1223 | "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", 1224 | "dev": true, 1225 | "requires": { 1226 | "flatted": "^2.0.0", 1227 | "rimraf": "2.6.3", 1228 | "write": "1.0.3" 1229 | } 1230 | }, 1231 | "flatted": { 1232 | "version": "2.0.0", 1233 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz", 1234 | "integrity": "sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg==", 1235 | "dev": true 1236 | }, 1237 | "forever-agent": { 1238 | "version": "0.6.1", 1239 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 1240 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" 1241 | }, 1242 | "form-data": { 1243 | "version": "2.3.3", 1244 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 1245 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 1246 | "requires": { 1247 | "asynckit": "^0.4.0", 1248 | "combined-stream": "^1.0.6", 1249 | "mime-types": "^2.1.12" 1250 | } 1251 | }, 1252 | "forwarded": { 1253 | "version": "0.1.2", 1254 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 1255 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 1256 | }, 1257 | "fresh": { 1258 | "version": "0.5.2", 1259 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 1260 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 1261 | }, 1262 | "fs-capacitor": { 1263 | "version": "2.0.4", 1264 | "resolved": "https://registry.npmjs.org/fs-capacitor/-/fs-capacitor-2.0.4.tgz", 1265 | "integrity": "sha512-8S4f4WsCryNw2mJJchi46YgB6CR5Ze+4L1h8ewl9tEpL4SJ3ZO+c/bS4BWhB8bK+O3TMqhuZarTitd0S0eh2pA==" 1266 | }, 1267 | "fs-extra": { 1268 | "version": "3.0.1", 1269 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", 1270 | "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", 1271 | "requires": { 1272 | "graceful-fs": "^4.1.2", 1273 | "jsonfile": "^3.0.0", 1274 | "universalify": "^0.1.0" 1275 | } 1276 | }, 1277 | "fs.realpath": { 1278 | "version": "1.0.0", 1279 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1280 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 1281 | "dev": true 1282 | }, 1283 | "function-bind": { 1284 | "version": "1.1.1", 1285 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1286 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1287 | }, 1288 | "functional-red-black-tree": { 1289 | "version": "1.0.1", 1290 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 1291 | "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", 1292 | "dev": true 1293 | }, 1294 | "getpass": { 1295 | "version": "0.1.7", 1296 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 1297 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 1298 | "requires": { 1299 | "assert-plus": "^1.0.0" 1300 | } 1301 | }, 1302 | "glob": { 1303 | "version": "7.1.4", 1304 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", 1305 | "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", 1306 | "dev": true, 1307 | "requires": { 1308 | "fs.realpath": "^1.0.0", 1309 | "inflight": "^1.0.4", 1310 | "inherits": "2", 1311 | "minimatch": "^3.0.4", 1312 | "once": "^1.3.0", 1313 | "path-is-absolute": "^1.0.0" 1314 | } 1315 | }, 1316 | "globals": { 1317 | "version": "11.12.0", 1318 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1319 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 1320 | "dev": true 1321 | }, 1322 | "graceful-fs": { 1323 | "version": "4.1.15", 1324 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", 1325 | "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" 1326 | }, 1327 | "graceful-readlink": { 1328 | "version": "1.0.1", 1329 | "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", 1330 | "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" 1331 | }, 1332 | "graphql": { 1333 | "version": "14.3.0", 1334 | "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.3.0.tgz", 1335 | "integrity": "sha512-MdfI4v7kSNC3NhB7cF8KNijDsifuWO2XOtzpyququqaclO8wVuChYv+KogexDwgP5sp7nFI9Z6N4QHgoLkfjrg==", 1336 | "requires": { 1337 | "iterall": "^1.2.2" 1338 | } 1339 | }, 1340 | "graphql-extensions": { 1341 | "version": "0.6.0", 1342 | "resolved": "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.6.0.tgz", 1343 | "integrity": "sha512-SshzmbD68fHXRv2q3St29olMOxHDLQ5e9TOh+Tz2BYxinrfhjFaPNcEefiK/vF295wW827Y58bdO11Xmhf8J+Q==", 1344 | "requires": { 1345 | "@apollographql/apollo-tools": "^0.3.6-alpha.1" 1346 | } 1347 | }, 1348 | "graphql-subscriptions": { 1349 | "version": "1.1.0", 1350 | "resolved": "https://registry.npmjs.org/graphql-subscriptions/-/graphql-subscriptions-1.1.0.tgz", 1351 | "integrity": "sha512-6WzlBFC0lWmXJbIVE8OgFgXIP4RJi3OQgTPa0DVMsDXdpRDjTsM1K9wfl5HSYX7R87QAGlvcv2Y4BIZa/ItonA==", 1352 | "requires": { 1353 | "iterall": "^1.2.1" 1354 | } 1355 | }, 1356 | "graphql-tag": { 1357 | "version": "2.10.1", 1358 | "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.10.1.tgz", 1359 | "integrity": "sha512-jApXqWBzNXQ8jYa/HLkZJaVw9jgwNqZkywa2zfFn16Iv1Zb7ELNHkJaXHR7Quvd5SIGsy6Ny7SUKATgnu05uEg==" 1360 | }, 1361 | "graphql-tools": { 1362 | "version": "4.0.4", 1363 | "resolved": "https://registry.npmjs.org/graphql-tools/-/graphql-tools-4.0.4.tgz", 1364 | "integrity": "sha512-chF12etTIGVVGy3fCTJ1ivJX2KB7OSG4c6UOJQuqOHCmBQwTyNgCDuejZKvpYxNZiEx7bwIjrodDgDe9RIkjlw==", 1365 | "requires": { 1366 | "apollo-link": "^1.2.3", 1367 | "apollo-utilities": "^1.0.1", 1368 | "deprecated-decorator": "^0.1.6", 1369 | "iterall": "^1.1.3", 1370 | "uuid": "^3.1.0" 1371 | } 1372 | }, 1373 | "graphql-upload": { 1374 | "version": "8.0.6", 1375 | "resolved": "https://registry.npmjs.org/graphql-upload/-/graphql-upload-8.0.6.tgz", 1376 | "integrity": "sha512-cBRALMOvGBm2AD6M61b1QbSmKfCLXvgV+Z3wXT2JS1EQwGWQ1g5/sby4J/cpwAaGnq5P2eGp+N3HQI9cSn9Jfg==", 1377 | "requires": { 1378 | "busboy": "^0.3.1", 1379 | "fs-capacitor": "^2.0.1", 1380 | "http-errors": "^1.7.2", 1381 | "object-path": "^0.11.4" 1382 | } 1383 | }, 1384 | "handlebars": { 1385 | "version": "4.0.8", 1386 | "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.8.tgz", 1387 | "integrity": "sha1-Irh1zT8ObL6jAxTxROgrx6cv9CA=", 1388 | "requires": { 1389 | "async": "^1.4.0", 1390 | "optimist": "^0.6.1", 1391 | "source-map": "^0.4.4", 1392 | "uglify-js": "^2.6" 1393 | } 1394 | }, 1395 | "har-schema": { 1396 | "version": "2.0.0", 1397 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 1398 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" 1399 | }, 1400 | "har-validator": { 1401 | "version": "5.1.3", 1402 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", 1403 | "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", 1404 | "requires": { 1405 | "ajv": "^6.5.5", 1406 | "har-schema": "^2.0.0" 1407 | } 1408 | }, 1409 | "has": { 1410 | "version": "1.0.3", 1411 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1412 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1413 | "requires": { 1414 | "function-bind": "^1.1.1" 1415 | } 1416 | }, 1417 | "has-flag": { 1418 | "version": "3.0.0", 1419 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1420 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 1421 | "dev": true 1422 | }, 1423 | "has-symbols": { 1424 | "version": "1.0.0", 1425 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", 1426 | "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" 1427 | }, 1428 | "http-errors": { 1429 | "version": "1.7.2", 1430 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 1431 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 1432 | "requires": { 1433 | "depd": "~1.1.2", 1434 | "inherits": "2.0.3", 1435 | "setprototypeof": "1.1.1", 1436 | "statuses": ">= 1.5.0 < 2", 1437 | "toidentifier": "1.0.0" 1438 | } 1439 | }, 1440 | "http-signature": { 1441 | "version": "1.2.0", 1442 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 1443 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 1444 | "requires": { 1445 | "assert-plus": "^1.0.0", 1446 | "jsprim": "^1.2.2", 1447 | "sshpk": "^1.7.0" 1448 | } 1449 | }, 1450 | "iconv-lite": { 1451 | "version": "0.4.24", 1452 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1453 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1454 | "requires": { 1455 | "safer-buffer": ">= 2.1.2 < 3" 1456 | } 1457 | }, 1458 | "ignore": { 1459 | "version": "4.0.6", 1460 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", 1461 | "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", 1462 | "dev": true 1463 | }, 1464 | "import-fresh": { 1465 | "version": "3.0.0", 1466 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz", 1467 | "integrity": "sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ==", 1468 | "dev": true, 1469 | "requires": { 1470 | "parent-module": "^1.0.0", 1471 | "resolve-from": "^4.0.0" 1472 | } 1473 | }, 1474 | "imurmurhash": { 1475 | "version": "0.1.4", 1476 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1477 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", 1478 | "dev": true 1479 | }, 1480 | "inflight": { 1481 | "version": "1.0.6", 1482 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1483 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 1484 | "dev": true, 1485 | "requires": { 1486 | "once": "^1.3.0", 1487 | "wrappy": "1" 1488 | } 1489 | }, 1490 | "inherits": { 1491 | "version": "2.0.3", 1492 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 1493 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 1494 | }, 1495 | "inquirer": { 1496 | "version": "6.3.1", 1497 | "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.3.1.tgz", 1498 | "integrity": "sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA==", 1499 | "dev": true, 1500 | "requires": { 1501 | "ansi-escapes": "^3.2.0", 1502 | "chalk": "^2.4.2", 1503 | "cli-cursor": "^2.1.0", 1504 | "cli-width": "^2.0.0", 1505 | "external-editor": "^3.0.3", 1506 | "figures": "^2.0.0", 1507 | "lodash": "^4.17.11", 1508 | "mute-stream": "0.0.7", 1509 | "run-async": "^2.2.0", 1510 | "rxjs": "^6.4.0", 1511 | "string-width": "^2.1.0", 1512 | "strip-ansi": "^5.1.0", 1513 | "through": "^2.3.6" 1514 | }, 1515 | "dependencies": { 1516 | "ansi-regex": { 1517 | "version": "4.1.0", 1518 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 1519 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 1520 | "dev": true 1521 | }, 1522 | "strip-ansi": { 1523 | "version": "5.2.0", 1524 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 1525 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 1526 | "dev": true, 1527 | "requires": { 1528 | "ansi-regex": "^4.1.0" 1529 | } 1530 | } 1531 | } 1532 | }, 1533 | "ipaddr.js": { 1534 | "version": "1.9.0", 1535 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", 1536 | "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" 1537 | }, 1538 | "is-buffer": { 1539 | "version": "1.1.6", 1540 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 1541 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" 1542 | }, 1543 | "is-callable": { 1544 | "version": "1.1.4", 1545 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", 1546 | "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==" 1547 | }, 1548 | "is-date-object": { 1549 | "version": "1.0.1", 1550 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", 1551 | "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" 1552 | }, 1553 | "is-fullwidth-code-point": { 1554 | "version": "2.0.0", 1555 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 1556 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 1557 | "dev": true 1558 | }, 1559 | "is-promise": { 1560 | "version": "2.1.0", 1561 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", 1562 | "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", 1563 | "dev": true 1564 | }, 1565 | "is-regex": { 1566 | "version": "1.0.4", 1567 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", 1568 | "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", 1569 | "requires": { 1570 | "has": "^1.0.1" 1571 | } 1572 | }, 1573 | "is-stream": { 1574 | "version": "1.1.0", 1575 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 1576 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" 1577 | }, 1578 | "is-symbol": { 1579 | "version": "1.0.2", 1580 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", 1581 | "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", 1582 | "requires": { 1583 | "has-symbols": "^1.0.0" 1584 | } 1585 | }, 1586 | "is-typedarray": { 1587 | "version": "1.0.0", 1588 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 1589 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" 1590 | }, 1591 | "isexe": { 1592 | "version": "2.0.0", 1593 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1594 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", 1595 | "dev": true 1596 | }, 1597 | "isomorphic-fetch": { 1598 | "version": "2.2.1", 1599 | "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", 1600 | "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", 1601 | "requires": { 1602 | "node-fetch": "^1.0.1", 1603 | "whatwg-fetch": ">=0.10.0" 1604 | }, 1605 | "dependencies": { 1606 | "node-fetch": { 1607 | "version": "1.7.3", 1608 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", 1609 | "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", 1610 | "requires": { 1611 | "encoding": "^0.1.11", 1612 | "is-stream": "^1.0.1" 1613 | } 1614 | } 1615 | } 1616 | }, 1617 | "isstream": { 1618 | "version": "0.1.2", 1619 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 1620 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" 1621 | }, 1622 | "iterall": { 1623 | "version": "1.2.2", 1624 | "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.2.2.tgz", 1625 | "integrity": "sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA==" 1626 | }, 1627 | "js-tokens": { 1628 | "version": "4.0.0", 1629 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1630 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 1631 | "dev": true 1632 | }, 1633 | "js-yaml": { 1634 | "version": "3.13.1", 1635 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", 1636 | "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", 1637 | "requires": { 1638 | "argparse": "^1.0.7", 1639 | "esprima": "^4.0.0" 1640 | } 1641 | }, 1642 | "jsbn": { 1643 | "version": "0.1.1", 1644 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 1645 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" 1646 | }, 1647 | "json-schema": { 1648 | "version": "0.2.3", 1649 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 1650 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" 1651 | }, 1652 | "json-schema-traverse": { 1653 | "version": "0.4.1", 1654 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1655 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 1656 | }, 1657 | "json-stable-stringify": { 1658 | "version": "1.0.1", 1659 | "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", 1660 | "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", 1661 | "requires": { 1662 | "jsonify": "~0.0.0" 1663 | } 1664 | }, 1665 | "json-stable-stringify-without-jsonify": { 1666 | "version": "1.0.1", 1667 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1668 | "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", 1669 | "dev": true 1670 | }, 1671 | "json-stringify-safe": { 1672 | "version": "5.0.1", 1673 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 1674 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" 1675 | }, 1676 | "jsonfile": { 1677 | "version": "3.0.1", 1678 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", 1679 | "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", 1680 | "requires": { 1681 | "graceful-fs": "^4.1.6" 1682 | } 1683 | }, 1684 | "jsonify": { 1685 | "version": "0.0.0", 1686 | "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", 1687 | "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" 1688 | }, 1689 | "jsprim": { 1690 | "version": "1.4.1", 1691 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 1692 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 1693 | "requires": { 1694 | "assert-plus": "1.0.0", 1695 | "extsprintf": "1.3.0", 1696 | "json-schema": "0.2.3", 1697 | "verror": "1.10.0" 1698 | } 1699 | }, 1700 | "jwks-rsa": { 1701 | "version": "1.4.0", 1702 | "resolved": "https://registry.npmjs.org/jwks-rsa/-/jwks-rsa-1.4.0.tgz", 1703 | "integrity": "sha512-6aUc+oTuqsLwIarfq3A0FqoD5LFSgveW5JO1uX2s0J8TJuOEcDc4NIMZAmVHO8tMHDw7CwOPzXF/9QhfOpOElA==", 1704 | "requires": { 1705 | "@types/express-jwt": "0.0.34", 1706 | "debug": "^2.2.0", 1707 | "limiter": "^1.1.0", 1708 | "lru-memoizer": "^1.6.0", 1709 | "ms": "^2.0.0", 1710 | "request": "^2.73.0" 1711 | } 1712 | }, 1713 | "kind-of": { 1714 | "version": "3.2.2", 1715 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 1716 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 1717 | "optional": true, 1718 | "requires": { 1719 | "is-buffer": "^1.1.5" 1720 | } 1721 | }, 1722 | "lazy-cache": { 1723 | "version": "1.0.4", 1724 | "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", 1725 | "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", 1726 | "optional": true 1727 | }, 1728 | "levn": { 1729 | "version": "0.3.0", 1730 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", 1731 | "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", 1732 | "dev": true, 1733 | "requires": { 1734 | "prelude-ls": "~1.1.2", 1735 | "type-check": "~0.3.2" 1736 | } 1737 | }, 1738 | "limiter": { 1739 | "version": "1.1.4", 1740 | "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.4.tgz", 1741 | "integrity": "sha512-XCpr5bElgDI65vVgstP8TWjv6/QKWm9GU5UG0Pr5sLQ3QLo8NVKsioe+Jed5/3vFOe3IQuqE7DKwTvKQkjTHvg==" 1742 | }, 1743 | "lock": { 1744 | "version": "0.1.4", 1745 | "resolved": "https://registry.npmjs.org/lock/-/lock-0.1.4.tgz", 1746 | "integrity": "sha1-/sfervF+fDoKVeHaBCgD4l2RdF0=" 1747 | }, 1748 | "lodash": { 1749 | "version": "4.17.11", 1750 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", 1751 | "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" 1752 | }, 1753 | "lodash.sortby": { 1754 | "version": "4.7.0", 1755 | "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", 1756 | "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" 1757 | }, 1758 | "long": { 1759 | "version": "4.0.0", 1760 | "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", 1761 | "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" 1762 | }, 1763 | "longest": { 1764 | "version": "1.0.1", 1765 | "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", 1766 | "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", 1767 | "optional": true 1768 | }, 1769 | "lru-cache": { 1770 | "version": "5.1.1", 1771 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 1772 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 1773 | "requires": { 1774 | "yallist": "^3.0.2" 1775 | } 1776 | }, 1777 | "lru-memoizer": { 1778 | "version": "1.12.0", 1779 | "resolved": "https://registry.npmjs.org/lru-memoizer/-/lru-memoizer-1.12.0.tgz", 1780 | "integrity": "sha1-7+ZXBsyKnMZT+A8NWm6jitlQ41I=", 1781 | "requires": { 1782 | "lock": "~0.1.2", 1783 | "lodash": "^4.17.4", 1784 | "lru-cache": "~4.0.0", 1785 | "very-fast-args": "^1.1.0" 1786 | }, 1787 | "dependencies": { 1788 | "lru-cache": { 1789 | "version": "4.0.2", 1790 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.2.tgz", 1791 | "integrity": "sha1-HRdnnAac2l0ECZGgnbwsDbN35V4=", 1792 | "requires": { 1793 | "pseudomap": "^1.0.1", 1794 | "yallist": "^2.0.0" 1795 | } 1796 | }, 1797 | "yallist": { 1798 | "version": "2.1.2", 1799 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 1800 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" 1801 | } 1802 | } 1803 | }, 1804 | "media-typer": { 1805 | "version": "0.3.0", 1806 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1807 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 1808 | }, 1809 | "merge-descriptors": { 1810 | "version": "1.0.1", 1811 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1812 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 1813 | }, 1814 | "methods": { 1815 | "version": "1.1.2", 1816 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1817 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 1818 | }, 1819 | "mime": { 1820 | "version": "1.6.0", 1821 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1822 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 1823 | }, 1824 | "mime-db": { 1825 | "version": "1.40.0", 1826 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", 1827 | "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==" 1828 | }, 1829 | "mime-types": { 1830 | "version": "2.1.24", 1831 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", 1832 | "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", 1833 | "requires": { 1834 | "mime-db": "1.40.0" 1835 | } 1836 | }, 1837 | "mimic-fn": { 1838 | "version": "1.2.0", 1839 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", 1840 | "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", 1841 | "dev": true 1842 | }, 1843 | "minimatch": { 1844 | "version": "3.0.4", 1845 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 1846 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 1847 | "dev": true, 1848 | "requires": { 1849 | "brace-expansion": "^1.1.7" 1850 | } 1851 | }, 1852 | "minimist": { 1853 | "version": "0.0.8", 1854 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", 1855 | "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" 1856 | }, 1857 | "mkdirp": { 1858 | "version": "0.5.1", 1859 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", 1860 | "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", 1861 | "dev": true, 1862 | "requires": { 1863 | "minimist": "0.0.8" 1864 | } 1865 | }, 1866 | "ms": { 1867 | "version": "2.0.0", 1868 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1869 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 1870 | }, 1871 | "mute-stream": { 1872 | "version": "0.0.7", 1873 | "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", 1874 | "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", 1875 | "dev": true 1876 | }, 1877 | "natural-compare": { 1878 | "version": "1.4.0", 1879 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1880 | "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", 1881 | "dev": true 1882 | }, 1883 | "negotiator": { 1884 | "version": "0.6.2", 1885 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 1886 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 1887 | }, 1888 | "nice-try": { 1889 | "version": "1.0.5", 1890 | "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", 1891 | "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", 1892 | "dev": true 1893 | }, 1894 | "njwt": { 1895 | "version": "1.0.0", 1896 | "resolved": "https://registry.npmjs.org/njwt/-/njwt-1.0.0.tgz", 1897 | "integrity": "sha512-n+FaPUauVQF/So+YcOACBb/zCxDH5WlCV3dTrX0u7VMGagjDiI39XRJWaPd2PtpT6IpIQUcd7x0twiRZaIQNDQ==", 1898 | "requires": { 1899 | "ecdsa-sig-formatter": "^1.0.5", 1900 | "uuid": "^3.3.2" 1901 | } 1902 | }, 1903 | "node-fetch": { 1904 | "version": "2.6.0", 1905 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", 1906 | "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==" 1907 | }, 1908 | "oauth-sign": { 1909 | "version": "0.9.0", 1910 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 1911 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" 1912 | }, 1913 | "object-assign": { 1914 | "version": "4.1.1", 1915 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1916 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 1917 | }, 1918 | "object-keys": { 1919 | "version": "1.1.1", 1920 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 1921 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" 1922 | }, 1923 | "object-path": { 1924 | "version": "0.11.4", 1925 | "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz", 1926 | "integrity": "sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=" 1927 | }, 1928 | "object.getownpropertydescriptors": { 1929 | "version": "2.0.3", 1930 | "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", 1931 | "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", 1932 | "requires": { 1933 | "define-properties": "^1.1.2", 1934 | "es-abstract": "^1.5.1" 1935 | } 1936 | }, 1937 | "on-finished": { 1938 | "version": "2.3.0", 1939 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1940 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 1941 | "requires": { 1942 | "ee-first": "1.1.1" 1943 | } 1944 | }, 1945 | "once": { 1946 | "version": "1.4.0", 1947 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1948 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1949 | "dev": true, 1950 | "requires": { 1951 | "wrappy": "1" 1952 | } 1953 | }, 1954 | "onetime": { 1955 | "version": "2.0.1", 1956 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", 1957 | "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", 1958 | "dev": true, 1959 | "requires": { 1960 | "mimic-fn": "^1.0.0" 1961 | } 1962 | }, 1963 | "optimist": { 1964 | "version": "0.6.1", 1965 | "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", 1966 | "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", 1967 | "requires": { 1968 | "minimist": "~0.0.1", 1969 | "wordwrap": "~0.0.2" 1970 | }, 1971 | "dependencies": { 1972 | "wordwrap": { 1973 | "version": "0.0.3", 1974 | "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", 1975 | "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" 1976 | } 1977 | } 1978 | }, 1979 | "optionator": { 1980 | "version": "0.8.2", 1981 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", 1982 | "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", 1983 | "dev": true, 1984 | "requires": { 1985 | "deep-is": "~0.1.3", 1986 | "fast-levenshtein": "~2.0.4", 1987 | "levn": "~0.3.0", 1988 | "prelude-ls": "~1.1.2", 1989 | "type-check": "~0.3.2", 1990 | "wordwrap": "~1.0.0" 1991 | } 1992 | }, 1993 | "os-tmpdir": { 1994 | "version": "1.0.2", 1995 | "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", 1996 | "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", 1997 | "dev": true 1998 | }, 1999 | "parent-module": { 2000 | "version": "1.0.1", 2001 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2002 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2003 | "dev": true, 2004 | "requires": { 2005 | "callsites": "^3.0.0" 2006 | } 2007 | }, 2008 | "parse-link-header": { 2009 | "version": "1.0.0", 2010 | "resolved": "https://registry.npmjs.org/parse-link-header/-/parse-link-header-1.0.0.tgz", 2011 | "integrity": "sha1-34N7t0vowC55MYAUVo+qidw05jc=", 2012 | "requires": { 2013 | "xtend": "~4.0.0" 2014 | } 2015 | }, 2016 | "parseurl": { 2017 | "version": "1.3.3", 2018 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 2019 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 2020 | }, 2021 | "path-is-absolute": { 2022 | "version": "1.0.1", 2023 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2024 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 2025 | "dev": true 2026 | }, 2027 | "path-is-inside": { 2028 | "version": "1.0.2", 2029 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", 2030 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", 2031 | "dev": true 2032 | }, 2033 | "path-key": { 2034 | "version": "2.0.1", 2035 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 2036 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", 2037 | "dev": true 2038 | }, 2039 | "path-to-regexp": { 2040 | "version": "0.1.7", 2041 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 2042 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 2043 | }, 2044 | "performance-now": { 2045 | "version": "2.1.0", 2046 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 2047 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" 2048 | }, 2049 | "prelude-ls": { 2050 | "version": "1.1.2", 2051 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", 2052 | "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", 2053 | "dev": true 2054 | }, 2055 | "progress": { 2056 | "version": "2.0.3", 2057 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 2058 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", 2059 | "dev": true 2060 | }, 2061 | "protobufjs": { 2062 | "version": "6.8.8", 2063 | "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.8.8.tgz", 2064 | "integrity": "sha512-AAmHtD5pXgZfi7GMpllpO3q1Xw1OYldr+dMUlAnffGTAhqkg72WdmSY71uKBF/JuyiKs8psYbtKrhi0ASCD8qw==", 2065 | "requires": { 2066 | "@protobufjs/aspromise": "^1.1.2", 2067 | "@protobufjs/base64": "^1.1.2", 2068 | "@protobufjs/codegen": "^2.0.4", 2069 | "@protobufjs/eventemitter": "^1.1.0", 2070 | "@protobufjs/fetch": "^1.1.0", 2071 | "@protobufjs/float": "^1.0.2", 2072 | "@protobufjs/inquire": "^1.1.0", 2073 | "@protobufjs/path": "^1.1.2", 2074 | "@protobufjs/pool": "^1.1.0", 2075 | "@protobufjs/utf8": "^1.1.0", 2076 | "@types/long": "^4.0.0", 2077 | "@types/node": "^10.1.0", 2078 | "long": "^4.0.0" 2079 | }, 2080 | "dependencies": { 2081 | "@types/node": { 2082 | "version": "10.14.6", 2083 | "resolved": "https://registry.npmjs.org/@types/node/-/node-10.14.6.tgz", 2084 | "integrity": "sha512-Fvm24+u85lGmV4hT5G++aht2C5I4Z4dYlWZIh62FAfFO/TfzXtPpoLI6I7AuBWkIFqZCnhFOoTT7RjjaIL5Fjg==" 2085 | } 2086 | } 2087 | }, 2088 | "proxy-addr": { 2089 | "version": "2.0.5", 2090 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", 2091 | "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", 2092 | "requires": { 2093 | "forwarded": "~0.1.2", 2094 | "ipaddr.js": "1.9.0" 2095 | } 2096 | }, 2097 | "pseudomap": { 2098 | "version": "1.0.2", 2099 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 2100 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" 2101 | }, 2102 | "psl": { 2103 | "version": "1.1.31", 2104 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz", 2105 | "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==" 2106 | }, 2107 | "punycode": { 2108 | "version": "2.1.1", 2109 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 2110 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" 2111 | }, 2112 | "qs": { 2113 | "version": "6.7.0", 2114 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 2115 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" 2116 | }, 2117 | "range-parser": { 2118 | "version": "1.2.1", 2119 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 2120 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 2121 | }, 2122 | "raw-body": { 2123 | "version": "2.4.0", 2124 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 2125 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 2126 | "requires": { 2127 | "bytes": "3.1.0", 2128 | "http-errors": "1.7.2", 2129 | "iconv-lite": "0.4.24", 2130 | "unpipe": "1.0.0" 2131 | } 2132 | }, 2133 | "regexpp": { 2134 | "version": "2.0.1", 2135 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", 2136 | "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", 2137 | "dev": true 2138 | }, 2139 | "repeat-string": { 2140 | "version": "1.6.1", 2141 | "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", 2142 | "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", 2143 | "optional": true 2144 | }, 2145 | "request": { 2146 | "version": "2.88.0", 2147 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", 2148 | "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", 2149 | "requires": { 2150 | "aws-sign2": "~0.7.0", 2151 | "aws4": "^1.8.0", 2152 | "caseless": "~0.12.0", 2153 | "combined-stream": "~1.0.6", 2154 | "extend": "~3.0.2", 2155 | "forever-agent": "~0.6.1", 2156 | "form-data": "~2.3.2", 2157 | "har-validator": "~5.1.0", 2158 | "http-signature": "~1.2.0", 2159 | "is-typedarray": "~1.0.0", 2160 | "isstream": "~0.1.2", 2161 | "json-stringify-safe": "~5.0.1", 2162 | "mime-types": "~2.1.19", 2163 | "oauth-sign": "~0.9.0", 2164 | "performance-now": "^2.1.0", 2165 | "qs": "~6.5.2", 2166 | "safe-buffer": "^5.1.2", 2167 | "tough-cookie": "~2.4.3", 2168 | "tunnel-agent": "^0.6.0", 2169 | "uuid": "^3.3.2" 2170 | }, 2171 | "dependencies": { 2172 | "qs": { 2173 | "version": "6.5.2", 2174 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 2175 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" 2176 | } 2177 | } 2178 | }, 2179 | "resolve-from": { 2180 | "version": "4.0.0", 2181 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2182 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2183 | "dev": true 2184 | }, 2185 | "restore-cursor": { 2186 | "version": "2.0.0", 2187 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", 2188 | "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", 2189 | "dev": true, 2190 | "requires": { 2191 | "onetime": "^2.0.0", 2192 | "signal-exit": "^3.0.2" 2193 | } 2194 | }, 2195 | "retry": { 2196 | "version": "0.12.0", 2197 | "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", 2198 | "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" 2199 | }, 2200 | "right-align": { 2201 | "version": "0.1.3", 2202 | "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", 2203 | "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", 2204 | "optional": true, 2205 | "requires": { 2206 | "align-text": "^0.1.1" 2207 | } 2208 | }, 2209 | "rimraf": { 2210 | "version": "2.6.3", 2211 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", 2212 | "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", 2213 | "dev": true, 2214 | "requires": { 2215 | "glob": "^7.1.3" 2216 | } 2217 | }, 2218 | "run-async": { 2219 | "version": "2.3.0", 2220 | "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", 2221 | "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", 2222 | "dev": true, 2223 | "requires": { 2224 | "is-promise": "^2.1.0" 2225 | } 2226 | }, 2227 | "rxjs": { 2228 | "version": "6.5.2", 2229 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz", 2230 | "integrity": "sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==", 2231 | "dev": true, 2232 | "requires": { 2233 | "tslib": "^1.9.0" 2234 | } 2235 | }, 2236 | "safe-buffer": { 2237 | "version": "5.1.2", 2238 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2239 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2240 | }, 2241 | "safer-buffer": { 2242 | "version": "2.1.2", 2243 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2244 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 2245 | }, 2246 | "semver": { 2247 | "version": "5.7.0", 2248 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", 2249 | "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", 2250 | "dev": true 2251 | }, 2252 | "send": { 2253 | "version": "0.17.1", 2254 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 2255 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 2256 | "requires": { 2257 | "debug": "2.6.9", 2258 | "depd": "~1.1.2", 2259 | "destroy": "~1.0.4", 2260 | "encodeurl": "~1.0.2", 2261 | "escape-html": "~1.0.3", 2262 | "etag": "~1.8.1", 2263 | "fresh": "0.5.2", 2264 | "http-errors": "~1.7.2", 2265 | "mime": "1.6.0", 2266 | "ms": "2.1.1", 2267 | "on-finished": "~2.3.0", 2268 | "range-parser": "~1.2.1", 2269 | "statuses": "~1.5.0" 2270 | }, 2271 | "dependencies": { 2272 | "ms": { 2273 | "version": "2.1.1", 2274 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 2275 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 2276 | } 2277 | } 2278 | }, 2279 | "serve-static": { 2280 | "version": "1.14.1", 2281 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 2282 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 2283 | "requires": { 2284 | "encodeurl": "~1.0.2", 2285 | "escape-html": "~1.0.3", 2286 | "parseurl": "~1.3.3", 2287 | "send": "0.17.1" 2288 | } 2289 | }, 2290 | "setprototypeof": { 2291 | "version": "1.1.1", 2292 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 2293 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 2294 | }, 2295 | "sha.js": { 2296 | "version": "2.4.11", 2297 | "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", 2298 | "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", 2299 | "requires": { 2300 | "inherits": "^2.0.1", 2301 | "safe-buffer": "^5.0.1" 2302 | } 2303 | }, 2304 | "shebang-command": { 2305 | "version": "1.2.0", 2306 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 2307 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 2308 | "dev": true, 2309 | "requires": { 2310 | "shebang-regex": "^1.0.0" 2311 | } 2312 | }, 2313 | "shebang-regex": { 2314 | "version": "1.0.0", 2315 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 2316 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", 2317 | "dev": true 2318 | }, 2319 | "signal-exit": { 2320 | "version": "3.0.2", 2321 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", 2322 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", 2323 | "dev": true 2324 | }, 2325 | "slice-ansi": { 2326 | "version": "2.1.0", 2327 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", 2328 | "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", 2329 | "dev": true, 2330 | "requires": { 2331 | "ansi-styles": "^3.2.0", 2332 | "astral-regex": "^1.0.0", 2333 | "is-fullwidth-code-point": "^2.0.0" 2334 | } 2335 | }, 2336 | "source-map": { 2337 | "version": "0.4.4", 2338 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", 2339 | "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", 2340 | "requires": { 2341 | "amdefine": ">=0.0.4" 2342 | } 2343 | }, 2344 | "sprintf-js": { 2345 | "version": "1.0.3", 2346 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 2347 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" 2348 | }, 2349 | "sshpk": { 2350 | "version": "1.16.1", 2351 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 2352 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 2353 | "requires": { 2354 | "asn1": "~0.2.3", 2355 | "assert-plus": "^1.0.0", 2356 | "bcrypt-pbkdf": "^1.0.0", 2357 | "dashdash": "^1.12.0", 2358 | "ecc-jsbn": "~0.1.1", 2359 | "getpass": "^0.1.1", 2360 | "jsbn": "~0.1.0", 2361 | "safer-buffer": "^2.0.2", 2362 | "tweetnacl": "~0.14.0" 2363 | } 2364 | }, 2365 | "statuses": { 2366 | "version": "1.5.0", 2367 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 2368 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 2369 | }, 2370 | "streamsearch": { 2371 | "version": "0.1.2", 2372 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz", 2373 | "integrity": "sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=" 2374 | }, 2375 | "string-width": { 2376 | "version": "2.1.1", 2377 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 2378 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 2379 | "dev": true, 2380 | "requires": { 2381 | "is-fullwidth-code-point": "^2.0.0", 2382 | "strip-ansi": "^4.0.0" 2383 | } 2384 | }, 2385 | "strip-ansi": { 2386 | "version": "4.0.0", 2387 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 2388 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 2389 | "dev": true, 2390 | "requires": { 2391 | "ansi-regex": "^3.0.0" 2392 | } 2393 | }, 2394 | "strip-json-comments": { 2395 | "version": "2.0.1", 2396 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2397 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", 2398 | "dev": true 2399 | }, 2400 | "subscriptions-transport-ws": { 2401 | "version": "0.9.16", 2402 | "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.16.tgz", 2403 | "integrity": "sha512-pQdoU7nC+EpStXnCfh/+ho0zE0Z+ma+i7xvj7bkXKb1dvYHSZxgRPaU6spRP+Bjzow67c/rRDoix5RT0uU9omw==", 2404 | "requires": { 2405 | "backo2": "^1.0.2", 2406 | "eventemitter3": "^3.1.0", 2407 | "iterall": "^1.2.1", 2408 | "symbol-observable": "^1.0.4", 2409 | "ws": "^5.2.0" 2410 | }, 2411 | "dependencies": { 2412 | "ws": { 2413 | "version": "5.2.2", 2414 | "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", 2415 | "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", 2416 | "requires": { 2417 | "async-limiter": "~1.0.0" 2418 | } 2419 | } 2420 | } 2421 | }, 2422 | "supports-color": { 2423 | "version": "5.5.0", 2424 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2425 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2426 | "dev": true, 2427 | "requires": { 2428 | "has-flag": "^3.0.0" 2429 | } 2430 | }, 2431 | "symbol-observable": { 2432 | "version": "1.2.0", 2433 | "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", 2434 | "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" 2435 | }, 2436 | "table": { 2437 | "version": "5.3.3", 2438 | "resolved": "https://registry.npmjs.org/table/-/table-5.3.3.tgz", 2439 | "integrity": "sha512-3wUNCgdWX6PNpOe3amTTPWPuF6VGvgzjKCaO1snFj0z7Y3mUPWf5+zDtxUVGispJkDECPmR29wbzh6bVMOHbcw==", 2440 | "dev": true, 2441 | "requires": { 2442 | "ajv": "^6.9.1", 2443 | "lodash": "^4.17.11", 2444 | "slice-ansi": "^2.1.0", 2445 | "string-width": "^3.0.0" 2446 | }, 2447 | "dependencies": { 2448 | "ansi-regex": { 2449 | "version": "4.1.0", 2450 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 2451 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 2452 | "dev": true 2453 | }, 2454 | "string-width": { 2455 | "version": "3.1.0", 2456 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 2457 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 2458 | "dev": true, 2459 | "requires": { 2460 | "emoji-regex": "^7.0.1", 2461 | "is-fullwidth-code-point": "^2.0.0", 2462 | "strip-ansi": "^5.1.0" 2463 | } 2464 | }, 2465 | "strip-ansi": { 2466 | "version": "5.2.0", 2467 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2468 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2469 | "dev": true, 2470 | "requires": { 2471 | "ansi-regex": "^4.1.0" 2472 | } 2473 | } 2474 | } 2475 | }, 2476 | "text-table": { 2477 | "version": "0.2.0", 2478 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2479 | "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", 2480 | "dev": true 2481 | }, 2482 | "through": { 2483 | "version": "2.3.8", 2484 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 2485 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", 2486 | "dev": true 2487 | }, 2488 | "tmp": { 2489 | "version": "0.0.33", 2490 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", 2491 | "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", 2492 | "dev": true, 2493 | "requires": { 2494 | "os-tmpdir": "~1.0.2" 2495 | } 2496 | }, 2497 | "toidentifier": { 2498 | "version": "1.0.0", 2499 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 2500 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" 2501 | }, 2502 | "tough-cookie": { 2503 | "version": "2.4.3", 2504 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", 2505 | "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", 2506 | "requires": { 2507 | "psl": "^1.1.24", 2508 | "punycode": "^1.4.1" 2509 | }, 2510 | "dependencies": { 2511 | "punycode": { 2512 | "version": "1.4.1", 2513 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 2514 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" 2515 | } 2516 | } 2517 | }, 2518 | "ts-invariant": { 2519 | "version": "0.3.3", 2520 | "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.3.3.tgz", 2521 | "integrity": "sha512-UReOKsrJFGC9tUblgSRWo+BsVNbEd77Cl6WiV/XpMlkifXwNIJbknViCucHvVZkXSC/mcWeRnIGdY7uprcwvdQ==", 2522 | "requires": { 2523 | "tslib": "^1.9.3" 2524 | } 2525 | }, 2526 | "tslib": { 2527 | "version": "1.9.3", 2528 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", 2529 | "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==" 2530 | }, 2531 | "tunnel-agent": { 2532 | "version": "0.6.0", 2533 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 2534 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 2535 | "requires": { 2536 | "safe-buffer": "^5.0.1" 2537 | } 2538 | }, 2539 | "tweetnacl": { 2540 | "version": "0.14.5", 2541 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 2542 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" 2543 | }, 2544 | "type-check": { 2545 | "version": "0.3.2", 2546 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", 2547 | "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", 2548 | "dev": true, 2549 | "requires": { 2550 | "prelude-ls": "~1.1.2" 2551 | } 2552 | }, 2553 | "type-is": { 2554 | "version": "1.6.18", 2555 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2556 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2557 | "requires": { 2558 | "media-typer": "0.3.0", 2559 | "mime-types": "~2.1.24" 2560 | } 2561 | }, 2562 | "uglify-js": { 2563 | "version": "2.8.29", 2564 | "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", 2565 | "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", 2566 | "optional": true, 2567 | "requires": { 2568 | "source-map": "~0.5.1", 2569 | "uglify-to-browserify": "~1.0.0", 2570 | "yargs": "~3.10.0" 2571 | }, 2572 | "dependencies": { 2573 | "source-map": { 2574 | "version": "0.5.7", 2575 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", 2576 | "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", 2577 | "optional": true 2578 | } 2579 | } 2580 | }, 2581 | "uglify-to-browserify": { 2582 | "version": "1.0.2", 2583 | "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", 2584 | "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", 2585 | "optional": true 2586 | }, 2587 | "universalify": { 2588 | "version": "0.1.2", 2589 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", 2590 | "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" 2591 | }, 2592 | "unpipe": { 2593 | "version": "1.0.0", 2594 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2595 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 2596 | }, 2597 | "uri-js": { 2598 | "version": "4.2.2", 2599 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", 2600 | "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", 2601 | "requires": { 2602 | "punycode": "^2.1.0" 2603 | } 2604 | }, 2605 | "util.promisify": { 2606 | "version": "1.0.0", 2607 | "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", 2608 | "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", 2609 | "requires": { 2610 | "define-properties": "^1.1.2", 2611 | "object.getownpropertydescriptors": "^2.0.3" 2612 | } 2613 | }, 2614 | "utils-merge": { 2615 | "version": "1.0.1", 2616 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 2617 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 2618 | }, 2619 | "uuid": { 2620 | "version": "3.3.2", 2621 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", 2622 | "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" 2623 | }, 2624 | "vary": { 2625 | "version": "1.1.2", 2626 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 2627 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 2628 | }, 2629 | "verror": { 2630 | "version": "1.10.0", 2631 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 2632 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 2633 | "requires": { 2634 | "assert-plus": "^1.0.0", 2635 | "core-util-is": "1.0.2", 2636 | "extsprintf": "^1.2.0" 2637 | } 2638 | }, 2639 | "very-fast-args": { 2640 | "version": "1.1.0", 2641 | "resolved": "https://registry.npmjs.org/very-fast-args/-/very-fast-args-1.1.0.tgz", 2642 | "integrity": "sha1-4W0dH6+KbllqJGQh/ZCneWPQs5Y=" 2643 | }, 2644 | "whatwg-fetch": { 2645 | "version": "3.0.0", 2646 | "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz", 2647 | "integrity": "sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==" 2648 | }, 2649 | "which": { 2650 | "version": "1.3.1", 2651 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2652 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2653 | "dev": true, 2654 | "requires": { 2655 | "isexe": "^2.0.0" 2656 | } 2657 | }, 2658 | "window-size": { 2659 | "version": "0.1.0", 2660 | "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", 2661 | "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", 2662 | "optional": true 2663 | }, 2664 | "wordwrap": { 2665 | "version": "1.0.0", 2666 | "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", 2667 | "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", 2668 | "dev": true 2669 | }, 2670 | "wrappy": { 2671 | "version": "1.0.2", 2672 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2673 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 2674 | "dev": true 2675 | }, 2676 | "write": { 2677 | "version": "1.0.3", 2678 | "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", 2679 | "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", 2680 | "dev": true, 2681 | "requires": { 2682 | "mkdirp": "^0.5.1" 2683 | } 2684 | }, 2685 | "ws": { 2686 | "version": "6.2.1", 2687 | "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", 2688 | "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", 2689 | "requires": { 2690 | "async-limiter": "~1.0.0" 2691 | } 2692 | }, 2693 | "xtend": { 2694 | "version": "4.0.1", 2695 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", 2696 | "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" 2697 | }, 2698 | "yallist": { 2699 | "version": "3.0.3", 2700 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", 2701 | "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" 2702 | }, 2703 | "yargs": { 2704 | "version": "3.10.0", 2705 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", 2706 | "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", 2707 | "optional": true, 2708 | "requires": { 2709 | "camelcase": "^1.0.2", 2710 | "cliui": "^2.1.0", 2711 | "decamelize": "^1.0.0", 2712 | "window-size": "0.1.0" 2713 | } 2714 | }, 2715 | "zen-observable": { 2716 | "version": "0.8.14", 2717 | "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.14.tgz", 2718 | "integrity": "sha512-kQz39uonEjEESwh+qCi83kcC3rZJGh4mrZW7xjkSQYXkq//JZHTtKo+6yuVloTgMtzsIWOJrjIrKvk/dqm0L5g==" 2719 | }, 2720 | "zen-observable-ts": { 2721 | "version": "0.8.18", 2722 | "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.18.tgz", 2723 | "integrity": "sha512-q7d05s75Rn1j39U5Oapg3HI2wzriVwERVo4N7uFGpIYuHB9ff02P/E92P9B8T7QVC93jCMHpbXH7X0eVR5LA7A==", 2724 | "requires": { 2725 | "tslib": "^1.9.3", 2726 | "zen-observable": "^0.8.0" 2727 | } 2728 | } 2729 | } 2730 | } 2731 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-graphql", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "node .", 8 | "test": "eslint ." 9 | }, 10 | "keywords": [], 11 | "author": "", 12 | "license": "Apache-2.0", 13 | "dependencies": { 14 | "@okta/jwt-verifier": "0.0.15", 15 | "@okta/okta-sdk-nodejs": "2.0.0", 16 | "apollo-server": "2.5.0", 17 | "dotenv": "8.0.0", 18 | "graphql": "14.3.0", 19 | "node-fetch": "2.6.0", 20 | "uuid": "3.3.2" 21 | }, 22 | "devDependencies": { 23 | "eslint": "5.16.0" 24 | } 25 | } 26 | --------------------------------------------------------------------------------