├── .dockerignore ├── .github └── workflows │ ├── docker-publish.yml │ └── heroku-deploy.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── package.json ├── packages ├── app │ ├── package.json │ ├── public │ │ └── index.html │ └── src │ │ ├── App.tsx │ │ └── index.tsx ├── common │ ├── package.json │ └── src │ │ └── index.ts └── server │ ├── package.json │ └── src │ └── index.ts ├── scripts └── build.ts ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | 3 | # Git 4 | .gitignore 5 | 6 | # Logs 7 | yarn-debug.log 8 | yarn-error.log 9 | 10 | # Binaries 11 | node_modules 12 | */*/node_modules 13 | 14 | # Builds 15 | */*/build 16 | */*/dist 17 | */*/script.js 18 | -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- 1 | name: Publish Docker image 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | - main 8 | 9 | jobs: 10 | push_to_registry: 11 | name: Push Docker image to GitHub Packages 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v2 16 | 17 | - name: Publish to GitHub Packages 18 | uses: docker/build-push-action@v1 19 | with: 20 | username: ${{ github.actor }} 21 | password: ${{ secrets.GITHUB_TOKEN }} 22 | registry: docker.pkg.github.com 23 | repository: halftheopposite/tutorial-app/tutorial-app 24 | tag_with_ref: true 25 | -------------------------------------------------------------------------------- /.github/workflows/heroku-deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to Heroku 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | - main 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v2 15 | 16 | # This action will automatically build our docker image using 17 | # the Dockerfile in the project's root, and publish it to our 18 | # Heroku application instance. 19 | - name: Deploy to Heroku 20 | id: heroku 21 | uses: jctaveras/heroku-deploy@v2.1.3 22 | with: 23 | email: ${{ secrets.HEROKU_EMAIL }} 24 | api_key: ${{ secrets.HEROKU_API_KEY }} 25 | app_name: ${{ secrets.HEROKU_APP_NAME }} 26 | dockerfile_path: "." 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | yarn-debug.log* 3 | yarn-error.log* 4 | 5 | # Binaries 6 | node_modules/ 7 | 8 | # Builds 9 | dist/ 10 | **/public/script.js -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:14.15.5-alpine 2 | 3 | WORKDIR /usr/src/app 4 | 5 | # Install dependencies early so that if some files in our app 6 | # change, Docker won't have to download the dependencies again, 7 | # and instead will start from the next step ("COPY . ."). 8 | COPY ./package.json . 9 | COPY ./yarn.lock . 10 | COPY ./packages/app/package.json ./packages/app/ 11 | COPY ./packages/common/package.json ./packages/common/ 12 | COPY ./packages/server/package.json ./packages/server/ 13 | RUN yarn 14 | 15 | # Copy all files of our app (except files specified in the .gitignore) 16 | COPY . . 17 | 18 | # Build app 19 | RUN yarn build 20 | 21 | # Port 22 | EXPOSE 3000 23 | 24 | # Serve 25 | CMD [ "yarn", "serve" ] 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Aymeric Chauvin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tutorial-app 2 | 3 | This repository is the result of a tutorial guiding you through setting up a basic web application using Yarn's workspace, TypeScript, esbuild, Express, and React. It also features containerization with Docker, and Continuous Integrations using GitHub Actions to publish Docker images and deploy to Heroku. 4 | 5 | **Links to articles:** 6 | 7 | 1. [Setting up the project (part 1)](https://halftheopposite.dev/post/app-yarn-typescript-esbuild-part-1) 8 | 2. [Adding code (part 2)](https://halftheopposite.dev/post/app-yarn-typescript-esbuild-part-2) 9 | 3. [Building the app (part 3)](https://halftheopposite.dev/post/app-yarn-typescript-esbuild-part-3) 10 | 4. [Going further (advanced)](https://halftheopposite.dev/post/app-yarn-typescript-esbuild-part-going-further) 11 | 12 | ## Commands 13 | 14 | A few commands for this project: 15 | 16 | - `yarn build` to build the whole application. 17 | - `yarn serve` to launch an Express server serving the React application. 18 | - `yarn docker` to create a Docker image. 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tutorial-app", 3 | "version": "1.0.0", 4 | "repository": "git@github.com:halftheopposite/tutorial-app.git", 5 | "author": "Aymeric Chauvin", 6 | "license": "MIT", 7 | "private": true, 8 | "workspaces": [ 9 | "packages/*" 10 | ], 11 | "devDependencies": { 12 | "esbuild": "^0.9.6", 13 | "ts-node": "^9.1.1", 14 | "typescript": "^4.2.3" 15 | }, 16 | "scripts": { 17 | "app": "yarn workspace @tutorial-app/app", 18 | "common": "yarn workspace @tutorial-app/common", 19 | "server": "yarn workspace @tutorial-app/server", 20 | "build": "ts-node ./scripts/build.ts", 21 | "serve": "node ./packages/server/dist/index.js", 22 | "docker": "docker build . -t tutorial-app" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@tutorial-app/app", 3 | "version": "0.1.0", 4 | "license": "UNLICENSED", 5 | "private": true, 6 | "dependencies": { 7 | "@tutorial-app/common": "^0.1.0", 8 | "react": "^17.0.1", 9 | "react-dom": "^17.0.1" 10 | }, 11 | "devDependencies": { 12 | "@types/react": "^17.0.3", 13 | "@types/react-dom": "^17.0.2" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /packages/app/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | tutorial-app 5 | 6 | 7 | 8 |
9 | 10 | 11 | -------------------------------------------------------------------------------- /packages/app/src/App.tsx: -------------------------------------------------------------------------------- 1 | import { APP_TITLE } from "@flipcards/common"; 2 | import * as React from "react"; 3 | 4 | export function App(): React.ReactElement { 5 | const [count, setCount] = React.useState(0); 6 | 7 | return ( 8 |
9 |

Welcome on {APP_TITLE}!

10 |

11 | This is the main page of our application where you can confirm that it 12 | is dynamic by clicking the button below. 13 |

14 | 15 |

Current count: {count}

16 | 17 |
18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /packages/app/src/index.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import * as ReactDOM from "react-dom"; 3 | import { App } from "./App"; 4 | 5 | ReactDOM.render(, document.getElementById("root")); 6 | -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@tutorial-app/common", 3 | "version": "0.1.0", 4 | "license": "UNLICENSED", 5 | "private": true, 6 | "main": "./src/index.ts" 7 | } 8 | -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- 1 | export const APP_TITLE = "tutorial-app"; 2 | -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@tutorial-app/server", 3 | "version": "0.1.0", 4 | "license": "UNLICENSED", 5 | "private": true, 6 | "dependencies": { 7 | "@tutorial-app/common": "^0.1.0", 8 | "cors": "^2.8.5", 9 | "express": "^4.17.1" 10 | }, 11 | "devDependencies": { 12 | "@types/cors": "^2.8.10", 13 | "@types/express": "^4.17.11" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /packages/server/src/index.ts: -------------------------------------------------------------------------------- 1 | import { APP_TITLE } from "@flipcards/common"; 2 | import cors from "cors"; 3 | import express from "express"; 4 | import { join } from "path"; 5 | 6 | const PORT = Number.parseInt(process.env.PORT) || 3000; 7 | 8 | const app = express(); 9 | app.use(cors()); 10 | 11 | // Serve static resources from the "public" folder 12 | app.use(express.static(join(__dirname, "../../app/public"))); 13 | 14 | // Serve the frontend client 15 | app.get("*", (req: any, res: any) => { 16 | res.sendFile(join(__dirname, "../../app/public", "index.html")); 17 | }); 18 | 19 | app.listen(PORT, () => { 20 | console.log(`${APP_TITLE}'s server listening at http://localhost:${PORT}`); 21 | }); 22 | -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- 1 | import { build } from "esbuild"; 2 | 3 | /** 4 | * Generic options passed during build. 5 | */ 6 | interface BuildOptions { 7 | env: "production" | "development"; 8 | } 9 | 10 | /** 11 | * A builder function for the app package. 12 | */ 13 | export async function buildApp(options: BuildOptions) { 14 | const { env } = options; 15 | 16 | await build({ 17 | entryPoints: ["packages/app/src/index.tsx"], 18 | outfile: "packages/app/public/script.js", 19 | define: { 20 | "process.env.NODE_ENV": `"${env}"`, 21 | }, 22 | bundle: true, 23 | minify: env === "production", 24 | sourcemap: env === "development", 25 | }); 26 | } 27 | 28 | /** 29 | * A builder function for the server package. 30 | */ 31 | export async function buildServer(options: BuildOptions) { 32 | const { env } = options; 33 | 34 | await build({ 35 | entryPoints: ["packages/server/src/index.ts"], 36 | outfile: "packages/server/dist/index.js", 37 | define: { 38 | "process.env.NODE_ENV": `"${env}"`, 39 | }, 40 | external: ["express"], 41 | platform: "node", 42 | target: "node14.15.5", 43 | bundle: true, 44 | minify: env === "production", 45 | sourcemap: env === "development", 46 | }); 47 | } 48 | 49 | /** 50 | * A builder function for all packages. 51 | */ 52 | async function buildAll() { 53 | await Promise.all([ 54 | buildApp({ 55 | env: "production", 56 | }), 57 | buildServer({ 58 | env: "production", 59 | }), 60 | ]); 61 | } 62 | 63 | // This method is executed when we run the script from the terminal with ts-node 64 | buildAll(); 65 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic */ 4 | "target": "es2017", 5 | "module": "CommonJS", 6 | "lib": ["ESNext", "DOM"], 7 | 8 | /* Modules Resolution */ 9 | "moduleResolution": "node", 10 | "esModuleInterop": true, 11 | 12 | /* Paths Resolution */ 13 | "baseUrl": "./", 14 | "paths": { 15 | "@flipcards/*": ["packages/*"] 16 | }, 17 | 18 | /* Advanced */ 19 | "jsx": "react", 20 | "experimentalDecorators": true, 21 | "resolveJsonModule": true 22 | }, 23 | "exclude": ["node_modules", "**/node_modules/*", "dist"] 24 | } 25 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/body-parser@*": 6 | version "1.19.0" 7 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f" 8 | integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ== 9 | dependencies: 10 | "@types/connect" "*" 11 | "@types/node" "*" 12 | 13 | "@types/connect@*": 14 | version "3.4.34" 15 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.34.tgz#170a40223a6d666006d93ca128af2beb1d9b1901" 16 | integrity sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ== 17 | dependencies: 18 | "@types/node" "*" 19 | 20 | "@types/cors@^2.8.10": 21 | version "2.8.10" 22 | resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.10.tgz#61cc8469849e5bcdd0c7044122265c39cec10cf4" 23 | integrity sha512-C7srjHiVG3Ey1nR6d511dtDkCEjxuN9W1HWAEjGq8kpcwmNM6JJkpC0xvabM7BXTG2wDq8Eu33iH9aQKa7IvLQ== 24 | 25 | "@types/express-serve-static-core@^4.17.18": 26 | version "4.17.19" 27 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz#00acfc1632e729acac4f1530e9e16f6dd1508a1d" 28 | integrity sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA== 29 | dependencies: 30 | "@types/node" "*" 31 | "@types/qs" "*" 32 | "@types/range-parser" "*" 33 | 34 | "@types/express@^4.17.11": 35 | version "4.17.11" 36 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.11.tgz#debe3caa6f8e5fcda96b47bd54e2f40c4ee59545" 37 | integrity sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg== 38 | dependencies: 39 | "@types/body-parser" "*" 40 | "@types/express-serve-static-core" "^4.17.18" 41 | "@types/qs" "*" 42 | "@types/serve-static" "*" 43 | 44 | "@types/mime@^1": 45 | version "1.3.2" 46 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" 47 | integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== 48 | 49 | "@types/node@*": 50 | version "14.14.35" 51 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.35.tgz#42c953a4e2b18ab931f72477e7012172f4ffa313" 52 | integrity sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag== 53 | 54 | "@types/prop-types@*": 55 | version "15.7.3" 56 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 57 | integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 58 | 59 | "@types/qs@*": 60 | version "6.9.6" 61 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1" 62 | integrity sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA== 63 | 64 | "@types/range-parser@*": 65 | version "1.2.3" 66 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" 67 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== 68 | 69 | "@types/react-dom@^17.0.2": 70 | version "17.0.2" 71 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.2.tgz#35654cf6c49ae162d5bc90843d5437dc38008d43" 72 | integrity sha512-Icd9KEgdnFfJs39KyRyr0jQ7EKhq8U6CcHRMGAS45fp5qgUvxL3ujUCfWFttUK2UErqZNj97t9gsVPNAqcwoCg== 73 | dependencies: 74 | "@types/react" "*" 75 | 76 | "@types/react@*", "@types/react@^17.0.3": 77 | version "17.0.3" 78 | resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.3.tgz#ba6e215368501ac3826951eef2904574c262cc79" 79 | integrity sha512-wYOUxIgs2HZZ0ACNiIayItyluADNbONl7kt8lkLjVK8IitMH5QMyAh75Fwhmo37r1m7L2JaFj03sIfxBVDvRAg== 80 | dependencies: 81 | "@types/prop-types" "*" 82 | "@types/scheduler" "*" 83 | csstype "^3.0.2" 84 | 85 | "@types/scheduler@*": 86 | version "0.16.1" 87 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275" 88 | integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA== 89 | 90 | "@types/serve-static@*": 91 | version "1.13.9" 92 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz#aacf28a85a05ee29a11fb7c3ead935ac56f33e4e" 93 | integrity sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA== 94 | dependencies: 95 | "@types/mime" "^1" 96 | "@types/node" "*" 97 | 98 | accepts@~1.3.7: 99 | version "1.3.7" 100 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 101 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 102 | dependencies: 103 | mime-types "~2.1.24" 104 | negotiator "0.6.2" 105 | 106 | arg@^4.1.0: 107 | version "4.1.3" 108 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 109 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 110 | 111 | array-flatten@1.1.1: 112 | version "1.1.1" 113 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 114 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 115 | 116 | body-parser@1.19.0: 117 | version "1.19.0" 118 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 119 | integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== 120 | dependencies: 121 | bytes "3.1.0" 122 | content-type "~1.0.4" 123 | debug "2.6.9" 124 | depd "~1.1.2" 125 | http-errors "1.7.2" 126 | iconv-lite "0.4.24" 127 | on-finished "~2.3.0" 128 | qs "6.7.0" 129 | raw-body "2.4.0" 130 | type-is "~1.6.17" 131 | 132 | buffer-from@^1.0.0: 133 | version "1.1.1" 134 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 135 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 136 | 137 | bytes@3.1.0: 138 | version "3.1.0" 139 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 140 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 141 | 142 | content-disposition@0.5.3: 143 | version "0.5.3" 144 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 145 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 146 | dependencies: 147 | safe-buffer "5.1.2" 148 | 149 | content-type@~1.0.4: 150 | version "1.0.4" 151 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 152 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 153 | 154 | cookie-signature@1.0.6: 155 | version "1.0.6" 156 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 157 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 158 | 159 | cookie@0.4.0: 160 | version "0.4.0" 161 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 162 | integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== 163 | 164 | cors@^2.8.5: 165 | version "2.8.5" 166 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" 167 | integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== 168 | dependencies: 169 | object-assign "^4" 170 | vary "^1" 171 | 172 | create-require@^1.1.0: 173 | version "1.1.1" 174 | resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" 175 | integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== 176 | 177 | csstype@^3.0.2: 178 | version "3.0.7" 179 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.7.tgz#2a5fb75e1015e84dd15692f71e89a1450290950b" 180 | integrity sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g== 181 | 182 | debug@2.6.9: 183 | version "2.6.9" 184 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 185 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 186 | dependencies: 187 | ms "2.0.0" 188 | 189 | depd@~1.1.2: 190 | version "1.1.2" 191 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 192 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 193 | 194 | destroy@~1.0.4: 195 | version "1.0.4" 196 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 197 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 198 | 199 | diff@^4.0.1: 200 | version "4.0.2" 201 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 202 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 203 | 204 | ee-first@1.1.1: 205 | version "1.1.1" 206 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 207 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 208 | 209 | encodeurl@~1.0.2: 210 | version "1.0.2" 211 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 212 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 213 | 214 | esbuild@^0.9.6: 215 | version "0.9.6" 216 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.9.6.tgz#2cae519e7ce2328ecf57ae738090d07ce7245850" 217 | integrity sha512-F6vASxU0wT/Davt9aj2qtDwDNSkQxh9VbyO56M7PDWD+D/Vgq/rmUDGDQo7te76W5auauVojjnQr/wTu3vpaUA== 218 | 219 | escape-html@~1.0.3: 220 | version "1.0.3" 221 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 222 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 223 | 224 | etag@~1.8.1: 225 | version "1.8.1" 226 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 227 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 228 | 229 | express@^4.17.1: 230 | version "4.17.1" 231 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 232 | integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== 233 | dependencies: 234 | accepts "~1.3.7" 235 | array-flatten "1.1.1" 236 | body-parser "1.19.0" 237 | content-disposition "0.5.3" 238 | content-type "~1.0.4" 239 | cookie "0.4.0" 240 | cookie-signature "1.0.6" 241 | debug "2.6.9" 242 | depd "~1.1.2" 243 | encodeurl "~1.0.2" 244 | escape-html "~1.0.3" 245 | etag "~1.8.1" 246 | finalhandler "~1.1.2" 247 | fresh "0.5.2" 248 | merge-descriptors "1.0.1" 249 | methods "~1.1.2" 250 | on-finished "~2.3.0" 251 | parseurl "~1.3.3" 252 | path-to-regexp "0.1.7" 253 | proxy-addr "~2.0.5" 254 | qs "6.7.0" 255 | range-parser "~1.2.1" 256 | safe-buffer "5.1.2" 257 | send "0.17.1" 258 | serve-static "1.14.1" 259 | setprototypeof "1.1.1" 260 | statuses "~1.5.0" 261 | type-is "~1.6.18" 262 | utils-merge "1.0.1" 263 | vary "~1.1.2" 264 | 265 | finalhandler@~1.1.2: 266 | version "1.1.2" 267 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 268 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 269 | dependencies: 270 | debug "2.6.9" 271 | encodeurl "~1.0.2" 272 | escape-html "~1.0.3" 273 | on-finished "~2.3.0" 274 | parseurl "~1.3.3" 275 | statuses "~1.5.0" 276 | unpipe "~1.0.0" 277 | 278 | forwarded@~0.1.2: 279 | version "0.1.2" 280 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 281 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= 282 | 283 | fresh@0.5.2: 284 | version "0.5.2" 285 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 286 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 287 | 288 | http-errors@1.7.2: 289 | version "1.7.2" 290 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 291 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 292 | dependencies: 293 | depd "~1.1.2" 294 | inherits "2.0.3" 295 | setprototypeof "1.1.1" 296 | statuses ">= 1.5.0 < 2" 297 | toidentifier "1.0.0" 298 | 299 | http-errors@~1.7.2: 300 | version "1.7.3" 301 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 302 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 303 | dependencies: 304 | depd "~1.1.2" 305 | inherits "2.0.4" 306 | setprototypeof "1.1.1" 307 | statuses ">= 1.5.0 < 2" 308 | toidentifier "1.0.0" 309 | 310 | iconv-lite@0.4.24: 311 | version "0.4.24" 312 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 313 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 314 | dependencies: 315 | safer-buffer ">= 2.1.2 < 3" 316 | 317 | inherits@2.0.3: 318 | version "2.0.3" 319 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 320 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 321 | 322 | inherits@2.0.4: 323 | version "2.0.4" 324 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 325 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 326 | 327 | ipaddr.js@1.9.1: 328 | version "1.9.1" 329 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 330 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 331 | 332 | "js-tokens@^3.0.0 || ^4.0.0": 333 | version "4.0.0" 334 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 335 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 336 | 337 | loose-envify@^1.1.0: 338 | version "1.4.0" 339 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 340 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 341 | dependencies: 342 | js-tokens "^3.0.0 || ^4.0.0" 343 | 344 | make-error@^1.1.1: 345 | version "1.3.6" 346 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 347 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 348 | 349 | media-typer@0.3.0: 350 | version "0.3.0" 351 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 352 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 353 | 354 | merge-descriptors@1.0.1: 355 | version "1.0.1" 356 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 357 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 358 | 359 | methods@~1.1.2: 360 | version "1.1.2" 361 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 362 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 363 | 364 | mime-db@1.46.0: 365 | version "1.46.0" 366 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee" 367 | integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ== 368 | 369 | mime-types@~2.1.24: 370 | version "2.1.29" 371 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2" 372 | integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ== 373 | dependencies: 374 | mime-db "1.46.0" 375 | 376 | mime@1.6.0: 377 | version "1.6.0" 378 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 379 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 380 | 381 | ms@2.0.0: 382 | version "2.0.0" 383 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 384 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 385 | 386 | ms@2.1.1: 387 | version "2.1.1" 388 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 389 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 390 | 391 | negotiator@0.6.2: 392 | version "0.6.2" 393 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 394 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 395 | 396 | object-assign@^4, object-assign@^4.1.1: 397 | version "4.1.1" 398 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 399 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 400 | 401 | on-finished@~2.3.0: 402 | version "2.3.0" 403 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 404 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 405 | dependencies: 406 | ee-first "1.1.1" 407 | 408 | parseurl@~1.3.3: 409 | version "1.3.3" 410 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 411 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 412 | 413 | path-to-regexp@0.1.7: 414 | version "0.1.7" 415 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 416 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 417 | 418 | proxy-addr@~2.0.5: 419 | version "2.0.6" 420 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" 421 | integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== 422 | dependencies: 423 | forwarded "~0.1.2" 424 | ipaddr.js "1.9.1" 425 | 426 | qs@6.7.0: 427 | version "6.7.0" 428 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 429 | integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 430 | 431 | range-parser@~1.2.1: 432 | version "1.2.1" 433 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 434 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 435 | 436 | raw-body@2.4.0: 437 | version "2.4.0" 438 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 439 | integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== 440 | dependencies: 441 | bytes "3.1.0" 442 | http-errors "1.7.2" 443 | iconv-lite "0.4.24" 444 | unpipe "1.0.0" 445 | 446 | react-dom@^17.0.1: 447 | version "17.0.1" 448 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6" 449 | integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== 450 | dependencies: 451 | loose-envify "^1.1.0" 452 | object-assign "^4.1.1" 453 | scheduler "^0.20.1" 454 | 455 | react@^17.0.1: 456 | version "17.0.1" 457 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127" 458 | integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== 459 | dependencies: 460 | loose-envify "^1.1.0" 461 | object-assign "^4.1.1" 462 | 463 | safe-buffer@5.1.2: 464 | version "5.1.2" 465 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 466 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 467 | 468 | "safer-buffer@>= 2.1.2 < 3": 469 | version "2.1.2" 470 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 471 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 472 | 473 | scheduler@^0.20.1: 474 | version "0.20.1" 475 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.1.tgz#da0b907e24026b01181ecbc75efdc7f27b5a000c" 476 | integrity sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw== 477 | dependencies: 478 | loose-envify "^1.1.0" 479 | object-assign "^4.1.1" 480 | 481 | send@0.17.1: 482 | version "0.17.1" 483 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 484 | integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== 485 | dependencies: 486 | debug "2.6.9" 487 | depd "~1.1.2" 488 | destroy "~1.0.4" 489 | encodeurl "~1.0.2" 490 | escape-html "~1.0.3" 491 | etag "~1.8.1" 492 | fresh "0.5.2" 493 | http-errors "~1.7.2" 494 | mime "1.6.0" 495 | ms "2.1.1" 496 | on-finished "~2.3.0" 497 | range-parser "~1.2.1" 498 | statuses "~1.5.0" 499 | 500 | serve-static@1.14.1: 501 | version "1.14.1" 502 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 503 | integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== 504 | dependencies: 505 | encodeurl "~1.0.2" 506 | escape-html "~1.0.3" 507 | parseurl "~1.3.3" 508 | send "0.17.1" 509 | 510 | setprototypeof@1.1.1: 511 | version "1.1.1" 512 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 513 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 514 | 515 | source-map-support@^0.5.17: 516 | version "0.5.19" 517 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 518 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 519 | dependencies: 520 | buffer-from "^1.0.0" 521 | source-map "^0.6.0" 522 | 523 | source-map@^0.6.0: 524 | version "0.6.1" 525 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 526 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 527 | 528 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 529 | version "1.5.0" 530 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 531 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 532 | 533 | toidentifier@1.0.0: 534 | version "1.0.0" 535 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 536 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 537 | 538 | ts-node@^9.1.1: 539 | version "9.1.1" 540 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d" 541 | integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg== 542 | dependencies: 543 | arg "^4.1.0" 544 | create-require "^1.1.0" 545 | diff "^4.0.1" 546 | make-error "^1.1.1" 547 | source-map-support "^0.5.17" 548 | yn "3.1.1" 549 | 550 | type-is@~1.6.17, type-is@~1.6.18: 551 | version "1.6.18" 552 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 553 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 554 | dependencies: 555 | media-typer "0.3.0" 556 | mime-types "~2.1.24" 557 | 558 | typescript@^4.2.3: 559 | version "4.2.3" 560 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3" 561 | integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw== 562 | 563 | unpipe@1.0.0, unpipe@~1.0.0: 564 | version "1.0.0" 565 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 566 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 567 | 568 | utils-merge@1.0.1: 569 | version "1.0.1" 570 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 571 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 572 | 573 | vary@^1, vary@~1.1.2: 574 | version "1.1.2" 575 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 576 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 577 | 578 | yn@3.1.1: 579 | version "3.1.1" 580 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 581 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 582 | --------------------------------------------------------------------------------