├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── appDropbox.js ├── appFB.js ├── appSlack.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | -------------------------------------------------------------------------------- /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 [yyyy] [name of copyright owner] 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 | # Sample Webhook Listener with Node + Express 2 | 3 | This sample app works as a webhook listener using Node and ExpressJS. 4 | 5 | **Prerequisites**: [Node.js](https://nodejs.org/en/). 6 | 7 | ## Getting Started 8 | 9 | To install this sample, run the following commands: 10 | 11 | ```bash 12 | git clone https://github.com/ngrok/ngrok-webhook-nodejs-sample.git 13 | cd ngrok-webhook-nodejs-sample 14 | npm i 15 | ``` 16 | 17 | This will get the project installed locally. 18 | 19 | ## Launching the app 20 | 21 | Now you can launch the app: 22 | 23 | ```bash 24 | npm start 25 | ``` 26 | Alternativelly, you can run one of the following apps: 27 | `npm run startFB` 28 | 29 | The app runs by default on port 3000 30 | 31 | ## Making this app public with ngrok 32 | 33 | To make your app public using ngrok, enter: 34 | 35 | ```bash 36 | ngrok http 3000 37 | ``` 38 | 39 | ## Help 40 | 41 | Please [raise an issue](https://github.com/ngrok/ngrok-webhook-nodejs-sample/issues) if you find a problem with this app, or visit our [Developer Community](https://ngrok.com/slack). 42 | 43 | ## License 44 | 45 | Apache 2.0, see [LICENSE](LICENSE). -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var app = express(); 3 | app.use(express.json()); 4 | app.use(express.urlencoded({ extended: true })); 5 | 6 | const port = 3000; 7 | 8 | app.all('/*', function (req, res) { 9 | console.log("-------------- New Request --------------"); 10 | console.log("Headers:"+ JSON.stringify(req.headers, null, 3)); 11 | console.log("Body:"+ JSON.stringify(req.body, null, 3)); 12 | res.json({ message: "Thank you for the message" }); 13 | }) 14 | 15 | app.listen(port, function () { 16 | console.log(`Example app listening at ${port}`) 17 | }) 18 | -------------------------------------------------------------------------------- /appDropbox.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var app = express(); 3 | app.use(express.json()); 4 | const port = 3000; 5 | 6 | app.all('/*', function (req, res) { 7 | console.log("Headers:"+ JSON.stringify(req.headers, null, 3)); 8 | console.log("Body:"+ JSON.stringify(req.body, null, 3)); 9 | 10 | if(req.query.challenge!=null){ 11 | console.log("Query challenge: "+ req.query.challenge); 12 | //When you enable a webhook in Dropbox, Dropbox makes a one-time get call to the app 13 | //sending a challenge query parameter value and expects the app to respond with this value. 14 | res.type('txt'); 15 | res.send(req.query.challenge); 16 | }else{ 17 | //For all the rest of the requests the app responds the same message. 18 | res.json({ message: "Thank you for the message" }); 19 | } 20 | }) 21 | 22 | app.listen(port, function () { 23 | console.log(`Example Dropbox app listening at ${port}`) 24 | }) -------------------------------------------------------------------------------- /appFB.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var app = express(); 3 | app.use(express.json()); 4 | const port = 3000; 5 | 6 | app.post('/*', function (req, res) { 7 | console.log("-------------- New Request POST --------------"); 8 | console.log("Headers:"+ JSON.stringify(req.headers, null, 3)); 9 | console.log("Body:"+ JSON.stringify(req.body, null, 3)); 10 | res.json({ message: "Thank you for the message" }); 11 | }) 12 | 13 | // Add support for GET requests to Facebook webhook 14 | app.get("/*", (req, res) => { 15 | // Parse the query params 16 | var mode = req.query["hub.mode"]; 17 | var token = req.query["hub.verify_token"]; 18 | var challenge = req.query["hub.challenge"]; 19 | 20 | console.log("-------------- New Request GET --------------"); 21 | console.log("Headers:"+ JSON.stringify(req.headers, null, 3)); 22 | console.log("Body:"+ JSON.stringify(req.body, null, 3)); 23 | 24 | // Check if a token and mode is in the query string of the request 25 | if (mode && token) { 26 | // Check the mode and token sent is correct 27 | if (mode === "subscribe" && token === "12345") { 28 | // Respond with the challenge token from the request 29 | console.log("WEBHOOK_VERIFIED"); 30 | res.status(200).send(challenge); 31 | } else { 32 | console.log("Responding with 403 Forbidden"); 33 | // Respond with '403 Forbidden' if verify tokens do not match 34 | res.sendStatus(403); 35 | } 36 | } else { 37 | console.log("Replying Thank you."); 38 | res.json({ message: "Thank you for the message" }); 39 | } 40 | }); 41 | 42 | app.listen(port, function () { 43 | console.log(`Example Facebook app listening at ${port}`) 44 | }) -------------------------------------------------------------------------------- /appSlack.js: -------------------------------------------------------------------------------- 1 | var express = require('express'); 2 | var app = express(); 3 | app.use(express.json()); 4 | const port = 3000; 5 | 6 | app.all('/*', function (req, res) { 7 | console.log("Headers:"+ JSON.stringify(req.headers, null, 3)); 8 | console.log("Body:"+ JSON.stringify(req.body, null, 3)); 9 | 10 | if(req.body.challenge!=null){ 11 | //When you enable Event Subscriptions in Slack, Slack makes a one-time post call to the app 12 | //sending a challenge field value and expects the app to respond with this value. 13 | res.type('txt'); 14 | res.send(req.body.challenge); 15 | }else{ 16 | //For all the rest of the requests the app responds the same message. 17 | res.json({ message: "Thank you for the message" }); 18 | } 19 | }) 20 | 21 | app.listen(port, function () { 22 | console.log(`Example Slack app listening at ${port}`) 23 | }) -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ngrok-webhook-nodejs-sample", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "ngrok-webhook-nodejs-sample", 9 | "version": "1.0.0", 10 | "license": "Apache-2.0", 11 | "dependencies": { 12 | "express": "^4.18.1" 13 | } 14 | }, 15 | "node_modules/accepts": { 16 | "version": "1.3.8", 17 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 18 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 19 | "dependencies": { 20 | "mime-types": "~2.1.34", 21 | "negotiator": "0.6.3" 22 | }, 23 | "engines": { 24 | "node": ">= 0.6" 25 | } 26 | }, 27 | "node_modules/array-flatten": { 28 | "version": "1.1.1", 29 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 30 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 31 | }, 32 | "node_modules/body-parser": { 33 | "version": "1.20.1", 34 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", 35 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", 36 | "dependencies": { 37 | "bytes": "3.1.2", 38 | "content-type": "~1.0.4", 39 | "debug": "2.6.9", 40 | "depd": "2.0.0", 41 | "destroy": "1.2.0", 42 | "http-errors": "2.0.0", 43 | "iconv-lite": "0.4.24", 44 | "on-finished": "2.4.1", 45 | "qs": "6.11.0", 46 | "raw-body": "2.5.1", 47 | "type-is": "~1.6.18", 48 | "unpipe": "1.0.0" 49 | }, 50 | "engines": { 51 | "node": ">= 0.8", 52 | "npm": "1.2.8000 || >= 1.4.16" 53 | } 54 | }, 55 | "node_modules/body-parser/node_modules/depd": { 56 | "version": "2.0.0", 57 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 58 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 59 | "engines": { 60 | "node": ">= 0.8" 61 | } 62 | }, 63 | "node_modules/body-parser/node_modules/destroy": { 64 | "version": "1.2.0", 65 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 66 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 67 | "engines": { 68 | "node": ">= 0.8", 69 | "npm": "1.2.8000 || >= 1.4.16" 70 | } 71 | }, 72 | "node_modules/body-parser/node_modules/on-finished": { 73 | "version": "2.4.1", 74 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 75 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 76 | "dependencies": { 77 | "ee-first": "1.1.1" 78 | }, 79 | "engines": { 80 | "node": ">= 0.8" 81 | } 82 | }, 83 | "node_modules/bytes": { 84 | "version": "3.1.2", 85 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 86 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 87 | "engines": { 88 | "node": ">= 0.8" 89 | } 90 | }, 91 | "node_modules/call-bind": { 92 | "version": "1.0.2", 93 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 94 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 95 | "dependencies": { 96 | "function-bind": "^1.1.1", 97 | "get-intrinsic": "^1.0.2" 98 | }, 99 | "funding": { 100 | "url": "https://github.com/sponsors/ljharb" 101 | } 102 | }, 103 | "node_modules/content-disposition": { 104 | "version": "0.5.4", 105 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 106 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 107 | "dependencies": { 108 | "safe-buffer": "5.2.1" 109 | }, 110 | "engines": { 111 | "node": ">= 0.6" 112 | } 113 | }, 114 | "node_modules/content-type": { 115 | "version": "1.0.4", 116 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 117 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", 118 | "engines": { 119 | "node": ">= 0.6" 120 | } 121 | }, 122 | "node_modules/cookie": { 123 | "version": "0.5.0", 124 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 125 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 126 | "engines": { 127 | "node": ">= 0.6" 128 | } 129 | }, 130 | "node_modules/cookie-signature": { 131 | "version": "1.0.6", 132 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 133 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 134 | }, 135 | "node_modules/debug": { 136 | "version": "2.6.9", 137 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 138 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 139 | "dependencies": { 140 | "ms": "2.0.0" 141 | } 142 | }, 143 | "node_modules/ee-first": { 144 | "version": "1.1.1", 145 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 146 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 147 | }, 148 | "node_modules/encodeurl": { 149 | "version": "1.0.2", 150 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 151 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", 152 | "engines": { 153 | "node": ">= 0.8" 154 | } 155 | }, 156 | "node_modules/escape-html": { 157 | "version": "1.0.3", 158 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 159 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 160 | }, 161 | "node_modules/etag": { 162 | "version": "1.8.1", 163 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 164 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", 165 | "engines": { 166 | "node": ">= 0.6" 167 | } 168 | }, 169 | "node_modules/express": { 170 | "version": "4.18.2", 171 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", 172 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", 173 | "dependencies": { 174 | "accepts": "~1.3.8", 175 | "array-flatten": "1.1.1", 176 | "body-parser": "1.20.1", 177 | "content-disposition": "0.5.4", 178 | "content-type": "~1.0.4", 179 | "cookie": "0.5.0", 180 | "cookie-signature": "1.0.6", 181 | "debug": "2.6.9", 182 | "depd": "2.0.0", 183 | "encodeurl": "~1.0.2", 184 | "escape-html": "~1.0.3", 185 | "etag": "~1.8.1", 186 | "finalhandler": "1.2.0", 187 | "fresh": "0.5.2", 188 | "http-errors": "2.0.0", 189 | "merge-descriptors": "1.0.1", 190 | "methods": "~1.1.2", 191 | "on-finished": "2.4.1", 192 | "parseurl": "~1.3.3", 193 | "path-to-regexp": "0.1.7", 194 | "proxy-addr": "~2.0.7", 195 | "qs": "6.11.0", 196 | "range-parser": "~1.2.1", 197 | "safe-buffer": "5.2.1", 198 | "send": "0.18.0", 199 | "serve-static": "1.15.0", 200 | "setprototypeof": "1.2.0", 201 | "statuses": "2.0.1", 202 | "type-is": "~1.6.18", 203 | "utils-merge": "1.0.1", 204 | "vary": "~1.1.2" 205 | }, 206 | "engines": { 207 | "node": ">= 0.10.0" 208 | } 209 | }, 210 | "node_modules/express/node_modules/depd": { 211 | "version": "2.0.0", 212 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 213 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 214 | "engines": { 215 | "node": ">= 0.8" 216 | } 217 | }, 218 | "node_modules/express/node_modules/finalhandler": { 219 | "version": "1.2.0", 220 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 221 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 222 | "dependencies": { 223 | "debug": "2.6.9", 224 | "encodeurl": "~1.0.2", 225 | "escape-html": "~1.0.3", 226 | "on-finished": "2.4.1", 227 | "parseurl": "~1.3.3", 228 | "statuses": "2.0.1", 229 | "unpipe": "~1.0.0" 230 | }, 231 | "engines": { 232 | "node": ">= 0.8" 233 | } 234 | }, 235 | "node_modules/express/node_modules/on-finished": { 236 | "version": "2.4.1", 237 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 238 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 239 | "dependencies": { 240 | "ee-first": "1.1.1" 241 | }, 242 | "engines": { 243 | "node": ">= 0.8" 244 | } 245 | }, 246 | "node_modules/express/node_modules/statuses": { 247 | "version": "2.0.1", 248 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 249 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 250 | "engines": { 251 | "node": ">= 0.8" 252 | } 253 | }, 254 | "node_modules/forwarded": { 255 | "version": "0.2.0", 256 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 257 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 258 | "engines": { 259 | "node": ">= 0.6" 260 | } 261 | }, 262 | "node_modules/fresh": { 263 | "version": "0.5.2", 264 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 265 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", 266 | "engines": { 267 | "node": ">= 0.6" 268 | } 269 | }, 270 | "node_modules/function-bind": { 271 | "version": "1.1.1", 272 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 273 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 274 | }, 275 | "node_modules/get-intrinsic": { 276 | "version": "1.1.3", 277 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", 278 | "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", 279 | "dependencies": { 280 | "function-bind": "^1.1.1", 281 | "has": "^1.0.3", 282 | "has-symbols": "^1.0.3" 283 | }, 284 | "funding": { 285 | "url": "https://github.com/sponsors/ljharb" 286 | } 287 | }, 288 | "node_modules/has": { 289 | "version": "1.0.3", 290 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 291 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 292 | "dependencies": { 293 | "function-bind": "^1.1.1" 294 | }, 295 | "engines": { 296 | "node": ">= 0.4.0" 297 | } 298 | }, 299 | "node_modules/has-symbols": { 300 | "version": "1.0.3", 301 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 302 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 303 | "engines": { 304 | "node": ">= 0.4" 305 | }, 306 | "funding": { 307 | "url": "https://github.com/sponsors/ljharb" 308 | } 309 | }, 310 | "node_modules/http-errors": { 311 | "version": "2.0.0", 312 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 313 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 314 | "dependencies": { 315 | "depd": "2.0.0", 316 | "inherits": "2.0.4", 317 | "setprototypeof": "1.2.0", 318 | "statuses": "2.0.1", 319 | "toidentifier": "1.0.1" 320 | }, 321 | "engines": { 322 | "node": ">= 0.8" 323 | } 324 | }, 325 | "node_modules/http-errors/node_modules/depd": { 326 | "version": "2.0.0", 327 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 328 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 329 | "engines": { 330 | "node": ">= 0.8" 331 | } 332 | }, 333 | "node_modules/http-errors/node_modules/statuses": { 334 | "version": "2.0.1", 335 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 336 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 337 | "engines": { 338 | "node": ">= 0.8" 339 | } 340 | }, 341 | "node_modules/iconv-lite": { 342 | "version": "0.4.24", 343 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 344 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 345 | "dependencies": { 346 | "safer-buffer": ">= 2.1.2 < 3" 347 | }, 348 | "engines": { 349 | "node": ">=0.10.0" 350 | } 351 | }, 352 | "node_modules/inherits": { 353 | "version": "2.0.4", 354 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 355 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 356 | }, 357 | "node_modules/ipaddr.js": { 358 | "version": "1.9.1", 359 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 360 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 361 | "engines": { 362 | "node": ">= 0.10" 363 | } 364 | }, 365 | "node_modules/media-typer": { 366 | "version": "0.3.0", 367 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 368 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 369 | "engines": { 370 | "node": ">= 0.6" 371 | } 372 | }, 373 | "node_modules/merge-descriptors": { 374 | "version": "1.0.1", 375 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 376 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 377 | }, 378 | "node_modules/methods": { 379 | "version": "1.1.2", 380 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 381 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", 382 | "engines": { 383 | "node": ">= 0.6" 384 | } 385 | }, 386 | "node_modules/mime": { 387 | "version": "1.6.0", 388 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 389 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 390 | "bin": { 391 | "mime": "cli.js" 392 | }, 393 | "engines": { 394 | "node": ">=4" 395 | } 396 | }, 397 | "node_modules/mime-db": { 398 | "version": "1.52.0", 399 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 400 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 401 | "engines": { 402 | "node": ">= 0.6" 403 | } 404 | }, 405 | "node_modules/mime-types": { 406 | "version": "2.1.35", 407 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 408 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 409 | "dependencies": { 410 | "mime-db": "1.52.0" 411 | }, 412 | "engines": { 413 | "node": ">= 0.6" 414 | } 415 | }, 416 | "node_modules/ms": { 417 | "version": "2.0.0", 418 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 419 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 420 | }, 421 | "node_modules/negotiator": { 422 | "version": "0.6.3", 423 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 424 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 425 | "engines": { 426 | "node": ">= 0.6" 427 | } 428 | }, 429 | "node_modules/object-inspect": { 430 | "version": "1.12.2", 431 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", 432 | "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", 433 | "funding": { 434 | "url": "https://github.com/sponsors/ljharb" 435 | } 436 | }, 437 | "node_modules/parseurl": { 438 | "version": "1.3.3", 439 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 440 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 441 | "engines": { 442 | "node": ">= 0.8" 443 | } 444 | }, 445 | "node_modules/path-to-regexp": { 446 | "version": "0.1.7", 447 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 448 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 449 | }, 450 | "node_modules/proxy-addr": { 451 | "version": "2.0.7", 452 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 453 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 454 | "dependencies": { 455 | "forwarded": "0.2.0", 456 | "ipaddr.js": "1.9.1" 457 | }, 458 | "engines": { 459 | "node": ">= 0.10" 460 | } 461 | }, 462 | "node_modules/qs": { 463 | "version": "6.11.0", 464 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 465 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 466 | "dependencies": { 467 | "side-channel": "^1.0.4" 468 | }, 469 | "engines": { 470 | "node": ">=0.6" 471 | }, 472 | "funding": { 473 | "url": "https://github.com/sponsors/ljharb" 474 | } 475 | }, 476 | "node_modules/range-parser": { 477 | "version": "1.2.1", 478 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 479 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 480 | "engines": { 481 | "node": ">= 0.6" 482 | } 483 | }, 484 | "node_modules/raw-body": { 485 | "version": "2.5.1", 486 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", 487 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", 488 | "dependencies": { 489 | "bytes": "3.1.2", 490 | "http-errors": "2.0.0", 491 | "iconv-lite": "0.4.24", 492 | "unpipe": "1.0.0" 493 | }, 494 | "engines": { 495 | "node": ">= 0.8" 496 | } 497 | }, 498 | "node_modules/safe-buffer": { 499 | "version": "5.2.1", 500 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 501 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 502 | "funding": [ 503 | { 504 | "type": "github", 505 | "url": "https://github.com/sponsors/feross" 506 | }, 507 | { 508 | "type": "patreon", 509 | "url": "https://www.patreon.com/feross" 510 | }, 511 | { 512 | "type": "consulting", 513 | "url": "https://feross.org/support" 514 | } 515 | ] 516 | }, 517 | "node_modules/safer-buffer": { 518 | "version": "2.1.2", 519 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 520 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 521 | }, 522 | "node_modules/send": { 523 | "version": "0.18.0", 524 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 525 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 526 | "dependencies": { 527 | "debug": "2.6.9", 528 | "depd": "2.0.0", 529 | "destroy": "1.2.0", 530 | "encodeurl": "~1.0.2", 531 | "escape-html": "~1.0.3", 532 | "etag": "~1.8.1", 533 | "fresh": "0.5.2", 534 | "http-errors": "2.0.0", 535 | "mime": "1.6.0", 536 | "ms": "2.1.3", 537 | "on-finished": "2.4.1", 538 | "range-parser": "~1.2.1", 539 | "statuses": "2.0.1" 540 | }, 541 | "engines": { 542 | "node": ">= 0.8.0" 543 | } 544 | }, 545 | "node_modules/send/node_modules/depd": { 546 | "version": "2.0.0", 547 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 548 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 549 | "engines": { 550 | "node": ">= 0.8" 551 | } 552 | }, 553 | "node_modules/send/node_modules/destroy": { 554 | "version": "1.2.0", 555 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 556 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 557 | "engines": { 558 | "node": ">= 0.8", 559 | "npm": "1.2.8000 || >= 1.4.16" 560 | } 561 | }, 562 | "node_modules/send/node_modules/ms": { 563 | "version": "2.1.3", 564 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 565 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 566 | }, 567 | "node_modules/send/node_modules/on-finished": { 568 | "version": "2.4.1", 569 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 570 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 571 | "dependencies": { 572 | "ee-first": "1.1.1" 573 | }, 574 | "engines": { 575 | "node": ">= 0.8" 576 | } 577 | }, 578 | "node_modules/send/node_modules/statuses": { 579 | "version": "2.0.1", 580 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 581 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 582 | "engines": { 583 | "node": ">= 0.8" 584 | } 585 | }, 586 | "node_modules/serve-static": { 587 | "version": "1.15.0", 588 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 589 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 590 | "dependencies": { 591 | "encodeurl": "~1.0.2", 592 | "escape-html": "~1.0.3", 593 | "parseurl": "~1.3.3", 594 | "send": "0.18.0" 595 | }, 596 | "engines": { 597 | "node": ">= 0.8.0" 598 | } 599 | }, 600 | "node_modules/setprototypeof": { 601 | "version": "1.2.0", 602 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 603 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 604 | }, 605 | "node_modules/side-channel": { 606 | "version": "1.0.4", 607 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 608 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 609 | "dependencies": { 610 | "call-bind": "^1.0.0", 611 | "get-intrinsic": "^1.0.2", 612 | "object-inspect": "^1.9.0" 613 | }, 614 | "funding": { 615 | "url": "https://github.com/sponsors/ljharb" 616 | } 617 | }, 618 | "node_modules/toidentifier": { 619 | "version": "1.0.1", 620 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 621 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 622 | "engines": { 623 | "node": ">=0.6" 624 | } 625 | }, 626 | "node_modules/type-is": { 627 | "version": "1.6.18", 628 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 629 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 630 | "dependencies": { 631 | "media-typer": "0.3.0", 632 | "mime-types": "~2.1.24" 633 | }, 634 | "engines": { 635 | "node": ">= 0.6" 636 | } 637 | }, 638 | "node_modules/unpipe": { 639 | "version": "1.0.0", 640 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 641 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", 642 | "engines": { 643 | "node": ">= 0.8" 644 | } 645 | }, 646 | "node_modules/utils-merge": { 647 | "version": "1.0.1", 648 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 649 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", 650 | "engines": { 651 | "node": ">= 0.4.0" 652 | } 653 | }, 654 | "node_modules/vary": { 655 | "version": "1.1.2", 656 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 657 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", 658 | "engines": { 659 | "node": ">= 0.8" 660 | } 661 | } 662 | }, 663 | "dependencies": { 664 | "accepts": { 665 | "version": "1.3.8", 666 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 667 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 668 | "requires": { 669 | "mime-types": "~2.1.34", 670 | "negotiator": "0.6.3" 671 | } 672 | }, 673 | "array-flatten": { 674 | "version": "1.1.1", 675 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 676 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 677 | }, 678 | "body-parser": { 679 | "version": "1.20.1", 680 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", 681 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", 682 | "requires": { 683 | "bytes": "3.1.2", 684 | "content-type": "~1.0.4", 685 | "debug": "2.6.9", 686 | "depd": "2.0.0", 687 | "destroy": "1.2.0", 688 | "http-errors": "2.0.0", 689 | "iconv-lite": "0.4.24", 690 | "on-finished": "2.4.1", 691 | "qs": "6.11.0", 692 | "raw-body": "2.5.1", 693 | "type-is": "~1.6.18", 694 | "unpipe": "1.0.0" 695 | }, 696 | "dependencies": { 697 | "depd": { 698 | "version": "2.0.0", 699 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 700 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" 701 | }, 702 | "destroy": { 703 | "version": "1.2.0", 704 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 705 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" 706 | }, 707 | "on-finished": { 708 | "version": "2.4.1", 709 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 710 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 711 | "requires": { 712 | "ee-first": "1.1.1" 713 | } 714 | } 715 | } 716 | }, 717 | "bytes": { 718 | "version": "3.1.2", 719 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 720 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" 721 | }, 722 | "call-bind": { 723 | "version": "1.0.2", 724 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 725 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 726 | "requires": { 727 | "function-bind": "^1.1.1", 728 | "get-intrinsic": "^1.0.2" 729 | } 730 | }, 731 | "content-disposition": { 732 | "version": "0.5.4", 733 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 734 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 735 | "requires": { 736 | "safe-buffer": "5.2.1" 737 | } 738 | }, 739 | "content-type": { 740 | "version": "1.0.4", 741 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 742 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 743 | }, 744 | "cookie": { 745 | "version": "0.5.0", 746 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 747 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" 748 | }, 749 | "cookie-signature": { 750 | "version": "1.0.6", 751 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 752 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 753 | }, 754 | "debug": { 755 | "version": "2.6.9", 756 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 757 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 758 | "requires": { 759 | "ms": "2.0.0" 760 | } 761 | }, 762 | "ee-first": { 763 | "version": "1.1.1", 764 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 765 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 766 | }, 767 | "encodeurl": { 768 | "version": "1.0.2", 769 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 770 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 771 | }, 772 | "escape-html": { 773 | "version": "1.0.3", 774 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 775 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 776 | }, 777 | "etag": { 778 | "version": "1.8.1", 779 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 780 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 781 | }, 782 | "express": { 783 | "version": "4.18.2", 784 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", 785 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", 786 | "requires": { 787 | "accepts": "~1.3.8", 788 | "array-flatten": "1.1.1", 789 | "body-parser": "1.20.1", 790 | "content-disposition": "0.5.4", 791 | "content-type": "~1.0.4", 792 | "cookie": "0.5.0", 793 | "cookie-signature": "1.0.6", 794 | "debug": "2.6.9", 795 | "depd": "2.0.0", 796 | "encodeurl": "~1.0.2", 797 | "escape-html": "~1.0.3", 798 | "etag": "~1.8.1", 799 | "finalhandler": "1.2.0", 800 | "fresh": "0.5.2", 801 | "http-errors": "2.0.0", 802 | "merge-descriptors": "1.0.1", 803 | "methods": "~1.1.2", 804 | "on-finished": "2.4.1", 805 | "parseurl": "~1.3.3", 806 | "path-to-regexp": "0.1.7", 807 | "proxy-addr": "~2.0.7", 808 | "qs": "6.11.0", 809 | "range-parser": "~1.2.1", 810 | "safe-buffer": "5.2.1", 811 | "send": "0.18.0", 812 | "serve-static": "1.15.0", 813 | "setprototypeof": "1.2.0", 814 | "statuses": "2.0.1", 815 | "type-is": "~1.6.18", 816 | "utils-merge": "1.0.1", 817 | "vary": "~1.1.2" 818 | }, 819 | "dependencies": { 820 | "depd": { 821 | "version": "2.0.0", 822 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 823 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" 824 | }, 825 | "finalhandler": { 826 | "version": "1.2.0", 827 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 828 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 829 | "requires": { 830 | "debug": "2.6.9", 831 | "encodeurl": "~1.0.2", 832 | "escape-html": "~1.0.3", 833 | "on-finished": "2.4.1", 834 | "parseurl": "~1.3.3", 835 | "statuses": "2.0.1", 836 | "unpipe": "~1.0.0" 837 | } 838 | }, 839 | "on-finished": { 840 | "version": "2.4.1", 841 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 842 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 843 | "requires": { 844 | "ee-first": "1.1.1" 845 | } 846 | }, 847 | "statuses": { 848 | "version": "2.0.1", 849 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 850 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" 851 | } 852 | } 853 | }, 854 | "forwarded": { 855 | "version": "0.2.0", 856 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 857 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" 858 | }, 859 | "fresh": { 860 | "version": "0.5.2", 861 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 862 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 863 | }, 864 | "function-bind": { 865 | "version": "1.1.1", 866 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 867 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 868 | }, 869 | "get-intrinsic": { 870 | "version": "1.1.3", 871 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", 872 | "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", 873 | "requires": { 874 | "function-bind": "^1.1.1", 875 | "has": "^1.0.3", 876 | "has-symbols": "^1.0.3" 877 | } 878 | }, 879 | "has": { 880 | "version": "1.0.3", 881 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 882 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 883 | "requires": { 884 | "function-bind": "^1.1.1" 885 | } 886 | }, 887 | "has-symbols": { 888 | "version": "1.0.3", 889 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 890 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" 891 | }, 892 | "http-errors": { 893 | "version": "2.0.0", 894 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 895 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 896 | "requires": { 897 | "depd": "2.0.0", 898 | "inherits": "2.0.4", 899 | "setprototypeof": "1.2.0", 900 | "statuses": "2.0.1", 901 | "toidentifier": "1.0.1" 902 | }, 903 | "dependencies": { 904 | "depd": { 905 | "version": "2.0.0", 906 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 907 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" 908 | }, 909 | "statuses": { 910 | "version": "2.0.1", 911 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 912 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" 913 | } 914 | } 915 | }, 916 | "iconv-lite": { 917 | "version": "0.4.24", 918 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 919 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 920 | "requires": { 921 | "safer-buffer": ">= 2.1.2 < 3" 922 | } 923 | }, 924 | "inherits": { 925 | "version": "2.0.4", 926 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 927 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 928 | }, 929 | "ipaddr.js": { 930 | "version": "1.9.1", 931 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 932 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" 933 | }, 934 | "media-typer": { 935 | "version": "0.3.0", 936 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 937 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" 938 | }, 939 | "merge-descriptors": { 940 | "version": "1.0.1", 941 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 942 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 943 | }, 944 | "methods": { 945 | "version": "1.1.2", 946 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 947 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 948 | }, 949 | "mime": { 950 | "version": "1.6.0", 951 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 952 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 953 | }, 954 | "mime-db": { 955 | "version": "1.52.0", 956 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 957 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" 958 | }, 959 | "mime-types": { 960 | "version": "2.1.35", 961 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 962 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 963 | "requires": { 964 | "mime-db": "1.52.0" 965 | } 966 | }, 967 | "ms": { 968 | "version": "2.0.0", 969 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 970 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 971 | }, 972 | "negotiator": { 973 | "version": "0.6.3", 974 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 975 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" 976 | }, 977 | "object-inspect": { 978 | "version": "1.12.2", 979 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", 980 | "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" 981 | }, 982 | "parseurl": { 983 | "version": "1.3.3", 984 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 985 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 986 | }, 987 | "path-to-regexp": { 988 | "version": "0.1.7", 989 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 990 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 991 | }, 992 | "proxy-addr": { 993 | "version": "2.0.7", 994 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 995 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 996 | "requires": { 997 | "forwarded": "0.2.0", 998 | "ipaddr.js": "1.9.1" 999 | } 1000 | }, 1001 | "qs": { 1002 | "version": "6.11.0", 1003 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 1004 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 1005 | "requires": { 1006 | "side-channel": "^1.0.4" 1007 | } 1008 | }, 1009 | "range-parser": { 1010 | "version": "1.2.1", 1011 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1012 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 1013 | }, 1014 | "raw-body": { 1015 | "version": "2.5.1", 1016 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", 1017 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", 1018 | "requires": { 1019 | "bytes": "3.1.2", 1020 | "http-errors": "2.0.0", 1021 | "iconv-lite": "0.4.24", 1022 | "unpipe": "1.0.0" 1023 | } 1024 | }, 1025 | "safe-buffer": { 1026 | "version": "5.2.1", 1027 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1028 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 1029 | }, 1030 | "safer-buffer": { 1031 | "version": "2.1.2", 1032 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1033 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 1034 | }, 1035 | "send": { 1036 | "version": "0.18.0", 1037 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 1038 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 1039 | "requires": { 1040 | "debug": "2.6.9", 1041 | "depd": "2.0.0", 1042 | "destroy": "1.2.0", 1043 | "encodeurl": "~1.0.2", 1044 | "escape-html": "~1.0.3", 1045 | "etag": "~1.8.1", 1046 | "fresh": "0.5.2", 1047 | "http-errors": "2.0.0", 1048 | "mime": "1.6.0", 1049 | "ms": "2.1.3", 1050 | "on-finished": "2.4.1", 1051 | "range-parser": "~1.2.1", 1052 | "statuses": "2.0.1" 1053 | }, 1054 | "dependencies": { 1055 | "depd": { 1056 | "version": "2.0.0", 1057 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 1058 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" 1059 | }, 1060 | "destroy": { 1061 | "version": "1.2.0", 1062 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 1063 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" 1064 | }, 1065 | "ms": { 1066 | "version": "2.1.3", 1067 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1068 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1069 | }, 1070 | "on-finished": { 1071 | "version": "2.4.1", 1072 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 1073 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 1074 | "requires": { 1075 | "ee-first": "1.1.1" 1076 | } 1077 | }, 1078 | "statuses": { 1079 | "version": "2.0.1", 1080 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1081 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" 1082 | } 1083 | } 1084 | }, 1085 | "serve-static": { 1086 | "version": "1.15.0", 1087 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1088 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1089 | "requires": { 1090 | "encodeurl": "~1.0.2", 1091 | "escape-html": "~1.0.3", 1092 | "parseurl": "~1.3.3", 1093 | "send": "0.18.0" 1094 | } 1095 | }, 1096 | "setprototypeof": { 1097 | "version": "1.2.0", 1098 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1099 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 1100 | }, 1101 | "side-channel": { 1102 | "version": "1.0.4", 1103 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 1104 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 1105 | "requires": { 1106 | "call-bind": "^1.0.0", 1107 | "get-intrinsic": "^1.0.2", 1108 | "object-inspect": "^1.9.0" 1109 | } 1110 | }, 1111 | "toidentifier": { 1112 | "version": "1.0.1", 1113 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1114 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" 1115 | }, 1116 | "type-is": { 1117 | "version": "1.6.18", 1118 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1119 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1120 | "requires": { 1121 | "media-typer": "0.3.0", 1122 | "mime-types": "~2.1.24" 1123 | } 1124 | }, 1125 | "unpipe": { 1126 | "version": "1.0.0", 1127 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1128 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 1129 | }, 1130 | "utils-merge": { 1131 | "version": "1.0.1", 1132 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1133 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 1134 | }, 1135 | "vary": { 1136 | "version": "1.1.2", 1137 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1138 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 1139 | } 1140 | } 1141 | } 1142 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ngrok-webhook-nodejs-sample", 3 | "version": "1.0.0", 4 | "description": "Sample webhook listener using NodeJS and ExpressJS", 5 | "scripts": { 6 | "start": "node app.js", 7 | "startSlack": "node appSlack.js", 8 | "startFacebook": "node appFB.js", 9 | "startDropbox": "node appDropbox.js" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/ngrok/ngrok-webhook-nodejs-sample.git" 14 | }, 15 | "license": "Apache-2.0", 16 | "bugs": { 17 | "url": "https://github.com/ngrok/ngrok-webhook-nodejs-sample/issues" 18 | }, 19 | "homepage": "https://github.com/ngrok/ngrok-webhook-nodejs-sample#readme", 20 | "dependencies": { 21 | "express": "^4.18.1" 22 | } 23 | } 24 | --------------------------------------------------------------------------------