├── .gitattributes ├── .env.template ├── public └── favicon.ico ├── src ├── res │ ├── imgs │ │ ├── tshirt.jpg │ │ ├── stickers.jpg │ │ ├── flutter-book.jpg │ │ ├── raspberry_pi.jpeg │ │ └── default.svg │ ├── shop.yaml │ ├── yotas.yaml │ └── osscameroon_issues.json ├── helpers │ ├── github.ts │ └── handlebars.ts ├── views │ ├── partials │ │ ├── tabs.hbs │ │ ├── shop.hbs │ │ ├── issues.hbs │ │ ├── contributors.hbs │ │ └── pagination.hbs │ ├── index.hbs │ ├── layouts │ │ └── main.hbs │ └── media │ │ └── oss.svg ├── yotas.ts ├── issues.ts ├── shop.ts └── index.ts ├── .github └── workflows │ ├── update_osscameroon_issues │ ├── get_yotas_issues.sh │ └── get_opened_issues.sh │ ├── notify_on_pull_request_open.yaml │ ├── update_osscameroon_issues.yaml │ └── miniyotas-deploy.yml ├── scripts ├── create_labels │ ├── labels.txt │ └── create_labels.sh └── get_user_contributions.sh ├── Dockerfile ├── Dockerfile.prod ├── LICENSE ├── README.md ├── package.json ├── .gitignore ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-language=typescript 2 | -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- 1 | SERVICE_ACCOUNT_CONFIG= 2 | GOOGLE_ANALYTICS_ID= -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscameroon/miniyotas/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/res/imgs/tshirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscameroon/miniyotas/HEAD/src/res/imgs/tshirt.jpg -------------------------------------------------------------------------------- /src/res/imgs/stickers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscameroon/miniyotas/HEAD/src/res/imgs/stickers.jpg -------------------------------------------------------------------------------- /src/res/imgs/flutter-book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscameroon/miniyotas/HEAD/src/res/imgs/flutter-book.jpg -------------------------------------------------------------------------------- /src/res/imgs/raspberry_pi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscameroon/miniyotas/HEAD/src/res/imgs/raspberry_pi.jpeg -------------------------------------------------------------------------------- /.github/workflows/update_osscameroon_issues/get_yotas_issues.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | ./get_opened_issues.sh > opened_issues.json 6 | cat opened_issues.json | jq -s '. | flatten' 7 | -------------------------------------------------------------------------------- /src/helpers/github.ts: -------------------------------------------------------------------------------- 1 | export const extractHandleFromGitHubUrl = (url: string): string => { 2 | const urlArray: string[] = url?.split("/"); 3 | return urlArray[urlArray.length - 1]; 4 | }; 5 | -------------------------------------------------------------------------------- /.github/workflows/notify_on_pull_request_open.yaml: -------------------------------------------------------------------------------- 1 | name: notify of pull_request creation 2 | on: 3 | pull_request_target: 4 | types: [ opened ] 5 | branches: 6 | - main 7 | 8 | jobs: 9 | notify: 10 | uses: osscameroon/global-github-actions/.github/workflows/notify_on_pull_request_open.yaml@main 11 | secrets: 12 | telegram_channel_id: ${{ secrets.TELEGRAM_OSSCAMEROON_CHANNEL_ID }} 13 | telegram_token: ${{ secrets.TELEGRAM_BOT_TOKEN }} -------------------------------------------------------------------------------- /scripts/create_labels/labels.txt: -------------------------------------------------------------------------------- 1 | {"name":"5 Yotas","color":"1DB4E9", "description": "will provide you 5 yotas"} 2 | {"name":"10 Yotas","color":"019A79", "description": "will provide you 10 yotas"} 3 | {"name":"15 Yotas","color":"A86542", "description": "will provide you 15 yotas"} 4 | {"name":"25 Yotas","color":"F97221", "description": "will provide you 25 yotas"} 5 | {"name":"40 Yotas","color":"6AC41A", "description": "will provide you 40 yotas (Assign this label exceptionnally)"} 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | #pull the image 2 | FROM node:15.12.0-alpine 3 | 4 | # set the working directory in the container 5 | RUN mkdir /app 6 | 7 | #change mode of the container directory 8 | RUN chmod 777 /app 9 | 10 | # set the working directory in the container 11 | WORKDIR /app 12 | 13 | #copy the files to the container directory 14 | COPY package.json /app/package.json 15 | COPY . /app 16 | 17 | # install dependencies 18 | RUN yarn install 19 | 20 | # expose the port 21 | EXPOSE 3000 22 | 23 | # run the container 24 | CMD ["yarn", "dev"] 25 | -------------------------------------------------------------------------------- /src/views/partials/tabs.hbs: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /scripts/create_labels/create_labels.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | #get_org_repos print out organisation list of repositories 4 | #param: organisation name 5 | get_org_repos() { 6 | org=$1 7 | curl -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/orgs/$org/repos 2>/dev/null | jq '.[].url' -r 8 | } 9 | 10 | LABELS_PATH=./labels.txt 11 | ORG=osscameroon 12 | REPOSITORIES=$(get_org_repos $ORG) 13 | 14 | #create labels for every repository 15 | for repo in $REPOSITORIES; do 16 | while IFS= read -r line; do 17 | echo "l: $line" 18 | curl -X POST $repo/labels -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" -d ''"$line"'' 19 | #sleep to not break the GitHub api limit 20 | sleep 1 21 | done < $LABELS_PATH 22 | 23 | #sleep to not break the GitHub api limit 24 | sleep 1 25 | done 26 | -------------------------------------------------------------------------------- /Dockerfile.prod: -------------------------------------------------------------------------------- 1 | FROM node:16-buster as builder 2 | 3 | RUN mkdir /app && chmod 777 /app 4 | 5 | WORKDIR /app 6 | 7 | COPY package.json . 8 | 9 | RUN yarn install 10 | 11 | COPY src ./src/ 12 | COPY public ./public/ 13 | COPY src tsconfig.json ./ 14 | 15 | RUN yarn build 16 | 17 | FROM node:16-alpine as dependencies 18 | WORKDIR /app 19 | COPY --from=builder /app/package.json /app/yarn.lock ./ 20 | RUN yarn install --production 21 | 22 | FROM node:16-alpine AS production 23 | ENV NODE_ENV=production 24 | WORKDIR /app 25 | COPY --chown=node:node --from=dependencies /app/package.json /app/yarn.lock ./ 26 | COPY --chown=node:node --from=dependencies /app/node_modules ./node_modules 27 | RUN mkdir public src && chown node:node -R public 28 | COPY --chown=node:node --from=builder /app/dist ./src 29 | COPY --chown=node:node --from=builder /app/public ./public 30 | 31 | EXPOSE 3000 32 | 33 | CMD ["node", "src/index.js"] -------------------------------------------------------------------------------- /src/yotas.ts: -------------------------------------------------------------------------------- 1 | import YAML from "yaml"; 2 | import {extractHandleFromGitHubUrl} from "./helpers/github"; 3 | 4 | import * as fs from "fs"; 5 | 6 | const yotasFilePath = __dirname + "/res/yotas.yaml"; 7 | 8 | export type Record = { 9 | github_account: string; 10 | github_handle: string; 11 | yotas: number; 12 | grade: string; 13 | }; 14 | 15 | export const getYotas = async (): Promise => { 16 | const file = fs.readFileSync(yotasFilePath, "utf8"); 17 | const records: Record[] = YAML.parse(file); 18 | return records 19 | .map((e: any): Record => { 20 | return { 21 | github_account: e.github_account, 22 | yotas: e.yotas || 0, 23 | github_handle: extractHandleFromGitHubUrl(e.github_account), 24 | grade: e.grade, 25 | }; 26 | }) 27 | .sort((a: Record, b: Record): number => 28 | a.github_handle.toLowerCase() > b.github_handle.toLowerCase() ? 1 : -1 29 | ); 30 | }; 31 | -------------------------------------------------------------------------------- /.github/workflows/update_osscameroon_issues.yaml: -------------------------------------------------------------------------------- 1 | name: update osscameroon issues 2 | on: 3 | schedule: 4 | - cron: "0 */20 * * *" 5 | 6 | jobs: 7 | update-osscameroon-issues: 8 | defaults: 9 | run: 10 | working-directory: ./.github/workflows/update_osscameroon_issues 11 | 12 | name: Build 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | with: 17 | token: ${{ secrets.GA_WORKFLOW_DEPLOYMENTS_TOKEN }} 18 | 19 | - name: get yotas issues 20 | shell: bash 21 | env: 22 | GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} 23 | 24 | run: | 25 | ./get_yotas_issues.sh > osscameroon_issues.json 26 | pwd 27 | rm -rf ../../../src/res/osscameroon_issues.json 28 | cp osscameroon_issues.json ../../../src/res/ 29 | 30 | git config user.name "GitHub Actions" 31 | git config user.email "actions@users.noreply.github.com" 32 | git add ../../../src/res/osscameroon_issues.json 33 | git commit -m 'chore: update osscameroon_issues.json' 34 | git push 35 | -------------------------------------------------------------------------------- /src/issues.ts: -------------------------------------------------------------------------------- 1 | import * as fs from "fs"; 2 | 3 | const issuesFilePath = __dirname + "/res/osscameroon_issues.json"; 4 | 5 | export interface Issue { 6 | title?: string, 7 | labels?: Array, 8 | author?: string, 9 | issue?: string 10 | } 11 | 12 | const filterIssues = (items: Issue[]): Issue[] => { 13 | items.sort((a, b) => { 14 | let y1 = a.labels?.filter((label) => label.toLowerCase().includes("yotas"))[0]?.split(" ")[0] 15 | let y2 = b.labels?.filter((label) => label.toLowerCase().includes("yotas"))[0]?.split(" ")[0] 16 | 17 | // if y1 or y2 is undefined or null give it a big number to put him in last 18 | return Number(y1 ?? '2000') - Number(y2 ?? '2000'); 19 | }) 20 | 21 | return items; 22 | } 23 | 24 | export const getIssues = async (): Promise => { 25 | try { 26 | const file = fs.readFileSync(issuesFilePath, "utf8"); 27 | const issues: Issue[] = JSON.parse(file); 28 | 29 | return filterIssues(issues); 30 | } catch (error) { 31 | console.error("Failed to get issues", error) 32 | } 33 | 34 | return []; 35 | } 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 OSS Cameroon 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 | # miniyotas 2 | minimalistic version of our reward system, yotas. 3 | 4 | website: [miniyotas.osscameroon.com](https://miniyotas.osscameroon.com) 5 | 6 | ## Dependency 7 | You might need to install `yarn` and a `node` version >= 15 8 | 9 | ## How to add yotas 10 | Yotas are set by one of OSS Cameroon admin on the `./src/res/yotas.yaml` file. 11 | 12 | ## How to run locally 13 | - install the dependencies with `yarn install` 14 | 15 | - Run `yarn dev` 16 | 17 | ## How to run on docker environment 18 | 19 | - build docker image 20 | ``` 21 | docker build -t miniyotas:latest /path/to/project/ 22 | ``` 23 | 24 | - run docker container 25 | ``` 26 | docker run -d -p 3000:3000 miniyotas 27 | ``` 28 | 29 | ## How do you earn yotas 30 | 31 | A contributor can earn yotas by contributing on our open source projects. 32 | He can raise an Issue, or submit a pull request to any of our project and potentially earn yotas. 33 | 34 | ** Yotas distribution grid ** 35 | - `1 Yota` for raising an `Issue` 36 | - `5 Yotas`, `10 yotas`, `15 yotas`, `25 yotas`, `40 yotas` depending on the effort required to raise a `Pull request` or `solve an Issue` 37 | -------------------------------------------------------------------------------- /src/shop.ts: -------------------------------------------------------------------------------- 1 | import YAML from "yaml"; 2 | import { extractHandleFromGitHubUrl } from "./helpers/github"; 3 | import * as fs from "fs"; 4 | 5 | const shopFilePath = __dirname + "/res/shop.yaml"; 6 | 7 | export interface Item { 8 | title?: string; 9 | description?: string; 10 | price?: number; 11 | count?: number; 12 | available?: boolean; 13 | image?: string; 14 | 15 | //the github_handle field is used to display 16 | //an image of one of the mentors providing 17 | //developer support 18 | github_handle?: string; 19 | }; 20 | 21 | export interface Shop { 22 | items?: Item[]; 23 | }; 24 | 25 | const formatItems = (shop :Shop): Item[] | undefined => { 26 | let items = shop?.items?.map((i: Item): Item => ({ 27 | ...i, 28 | image: "/res/imgs/"+ i.image, 29 | github_handle: extractHandleFromGitHubUrl(i.github_handle ?? ""), 30 | })); 31 | 32 | items?.sort((a, b) => { 33 | return Number(b?.available) - Number(a?.available); 34 | }); 35 | 36 | return items 37 | } 38 | 39 | export const getShop = (): Shop => { 40 | try { 41 | const file = fs.readFileSync(shopFilePath, "utf8"); 42 | const shop = YAML.parse(file); 43 | return { 44 | items: formatItems(shop), 45 | }; 46 | } catch (err) { 47 | //replace this with a proper log 48 | //and proper http error handling 49 | console.error("Failed to parse file:", err); 50 | } 51 | 52 | return {}; 53 | }; 54 | -------------------------------------------------------------------------------- /.github/workflows/update_osscameroon_issues/get_opened_issues.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | #get_org_repos print out organisation list of repositories 6 | #param: organisation name 7 | get_org_repos() { 8 | org=$1 9 | curl -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/orgs/$org/repos 2>/dev/null | jq '.[].url' -r 10 | } 11 | 12 | #get_repository_issues print out organisation list of repositories 13 | # param: repository name 14 | get_repository_opened_issues() { 15 | repo=$1 16 | page=$2 17 | curl -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" $repo/issues\?state\=open\&per_page\=100\&page\=$page 2>/dev/null | jq 'map(select(.pull_request == null)) | map({issue: .html_url, title: .title, author: .user.login, labels: (if (.labels != null) then [.labels[].name] else null end) })' 18 | } 19 | 20 | ORG=osscameroon 21 | REPOSITORIES=$(get_org_repos $ORG) 22 | 23 | #get repositories issues 24 | for repo in $REPOSITORIES; do 25 | # echo "Getting issues for repository: $repo" 26 | 27 | page=1 28 | while true; do 29 | # echo "page: $page" 30 | # echo "repo: $repo" 31 | ret=$(get_repository_opened_issues $repo $page) 32 | if [[ -z "$ret" ]]; then 33 | break 34 | fi 35 | if [[ "$ret" = "[]" ]]; then 36 | break 37 | fi 38 | 39 | echo "$ret" 40 | ((page++)) 41 | 42 | #sleep to not break the GitHub api limit 43 | sleep 1 44 | done 45 | 46 | #sleep to not break the GitHub api limit 47 | sleep 1 48 | done 49 | -------------------------------------------------------------------------------- /src/views/partials/shop.hbs: -------------------------------------------------------------------------------- 1 |
2 |
3 | {{#each items}} 4 |
5 |
6 | {{#if this.github_account}} 7 | image 8 | {{else}} 9 | image 10 | {{/if}} 11 |
12 |
{{this.title}}
13 |

{{this.description}}

14 |
15 | 25 |
26 |
27 | {{/each}} 28 |
29 |
30 | 31 | {{#if (isLower 0 pages)}} 32 | {{>pagination}} 33 | {{/if}} -------------------------------------------------------------------------------- /src/views/index.hbs: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | OSS logo 5 |

6 | Miniyotas 7 |

8 |
9 | 10 |
11 | 12 | 13 | 14 |
15 | 16 |
17 |

Make a contribution to any of OSS Cameroon GitHub project and earn some Yotas.

18 |
19 | 20 | {{>tabs}} 21 | {{#if (isLink link "contributors") }} 22 | {{>contributors}} 23 | {{/if}} 24 | {{#if (isLink link "shop") }} 25 | {{>shop}} 26 | {{/if}} 27 | {{#if (isLink link "issues") }} 28 | {{>issues}} 29 | {{/if}} 30 |
31 |
32 |
33 | 34 |
35 |
36 |

© {{currentYear}} OSS Cameroon, All rights reserved.

37 |
38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "miniyotas", 3 | "version": "1.0.0", 4 | "description": "minimalistic version of OSS Cameroon recognition system", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "yarn build && node ./dist", 8 | "dev": "cross-env GOOGLE_ANALYTICS_ID= nodemon ./src/index.ts", 9 | "build": "rm -rf ./dist/views ./dist/res; tsc --project ./; cp -R ./src/views ./src/res ./dist/", 10 | "package": "docker build -t miniyotas:latest -f .", 11 | "package:prod": "docker build -t miniyotas-prod:latest -f Dockerfile.prod .", 12 | "package:run:prod": "docker run -it -p 3000:3000 --env-file .env --name miniyotas_prod miniyotas-prod", 13 | "test": "echo \"Error: no test specified\" && exit 1" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "git+https://github.com/osscameroon/miniyotas.git" 18 | }, 19 | "author": "osscameroon", 20 | "license": "MIT", 21 | "bugs": { 22 | "url": "https://github.com/osscameroon/miniyotas/issues" 23 | }, 24 | "homepage": "https://github.com/osscameroon/miniyotas#readme", 25 | "dependencies": { 26 | "express": "^4.17.1", 27 | "express-handlebars": "^5.3.2", 28 | "fuse.js": "^6.4.6", 29 | "google-spreadsheet": "^3.1.15", 30 | "yaml": "^1.10.2" 31 | }, 32 | "devDependencies": { 33 | "@types/express": "^4.17.12", 34 | "@types/express-handlebars": "^5.3.0", 35 | "@types/google-spreadsheet": "^3.1.2", 36 | "@types/node": "^15.12.2", 37 | "cross-env": "^7.0.3", 38 | "nodemon": "^2.0.7", 39 | "ts-node": "^10.0.0", 40 | "typescript": "^4.3.2" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/helpers/handlebars.ts: -------------------------------------------------------------------------------- 1 | export const isLink = (exp: string, got: string): boolean => { 2 | return exp === got; 3 | }; 4 | 5 | export const isLower = (v1: number,v2: number): boolean => { 6 | return v1 < v2; 7 | }; 8 | 9 | export const ifEqual = (a: number, b: number,extra: number): boolean => { 10 | return a === (b+extra); 11 | }; 12 | 13 | export const eq = (a: string, b: string): boolean => { 14 | return a === b; 15 | }; 16 | 17 | export const ifDifferent = (a: number, b: number): boolean => { 18 | return a !== b; 19 | }; 20 | 21 | export const displayPagesNumber = (interval: number,current: number, pages: number ): Array => { 22 | let result = []; 23 | for (; interval <= (current+ 4) && interval <= pages; interval++){ 24 | result.push(interval); 25 | } 26 | return result; 27 | }; 28 | 29 | export const constructUrl = (url: string, param: string): string => { 30 | let data = url.includes("&") ? url.split("&") : url.split("?"); 31 | for(let i = 0; i< data.length;i++){ 32 | if(data[i].includes("page")){ 33 | data[i] = "page="+param; 34 | } 35 | } 36 | return url.includes("&") ? data.join("&") : data.join("?"); 37 | }; 38 | 39 | export const contains = (a: string, b:string): boolean => { 40 | return a.includes(b); 41 | }; 42 | 43 | export const or = (v1: boolean, v2: boolean): boolean => { 44 | return v1 || v2; 45 | }; 46 | 47 | export const repoName = (v1: string): string => { 48 | const part: Array = v1.split('/'); 49 | return `${part[3]}/${part[4]}`; 50 | }; 51 | 52 | export const addClassIfEqual = (v1: number, v2: number, extra: number, v3: string): string => { 53 | return v1 === (v2+extra) ? v3 : ''; 54 | }; -------------------------------------------------------------------------------- /src/views/layouts/main.hbs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Miniyotas 8 | 9 | 10 | 11 | 12 | 13 | {{#if gtag }} 14 | 15 | 22 | {{/if}} 23 | 24 | 25 | 32 | 33 | 34 | {{{body}}} 35 | 36 | 37 | -------------------------------------------------------------------------------- /.github/workflows/miniyotas-deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy miniyotas in prod 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | env: 9 | REGISTRY: ghcr.io 10 | IMAGE_NAME: ${{ github.repository }} 11 | 12 | jobs: 13 | build-and-push-prod: 14 | runs-on: ubuntu-latest 15 | permissions: 16 | contents: read 17 | packages: write 18 | 19 | steps: 20 | - name: Checkout repository 21 | uses: actions/checkout@v2 22 | 23 | - name: Log in to the Container registry 24 | uses: docker/login-action@v1 25 | with: 26 | registry: ${{ env.REGISTRY }} 27 | username: ${{ github.actor }} 28 | password: ${{ secrets.GITHUB_TOKEN }} 29 | 30 | - name: Extract metadata (tags, labels) for Docker 31 | id: meta 32 | uses: docker/metadata-action@v3 33 | with: 34 | images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} 35 | tags: | 36 | type=sha,enable=true,priority=100,prefix=,suffix=,format=long 37 | - name: Build and push Docker image 38 | uses: docker/build-push-action@v2 39 | with: 40 | context: . 41 | file: Dockerfile.prod 42 | push: true 43 | tags: ${{ steps.meta.outputs.tags }} 44 | labels: ${{ steps.meta.outputs.labels }} 45 | 46 | - name: Deploy in production 47 | uses: osscameroon/sammy-actions@v1.5 48 | with: 49 | service: miniyotas 50 | type: compose 51 | env: prod 52 | patch-field: ".services.webapp.image" 53 | patch-value: ${{ steps.meta.outputs.tags }} 54 | file: miniyotas-prod-stack.yml 55 | gh-token: ${{ secrets.GA_WORKFLOW_DEPLOYMENTS_TOKEN }} -------------------------------------------------------------------------------- /src/views/media/oss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/views/partials/issues.hbs: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{#each items}} 6 |
7 |
8 |
9 | 10 | {{repoName this.issue}} 11 |
12 |
14 | {{this.title}} 15 |
16 |
17 |

18 | {{#each this.labels}} 19 | {{this}} 20 | {{/each}} 21 |

22 |

23 | By {{this.author}} 25 |

26 |
27 |
28 |
29 |
30 | {{/each}} 31 |
32 |
33 |
34 |
35 | 36 | {{#if (isLower 0 pages)}} 37 | {{>pagination}} 38 | {{/if}} 39 | -------------------------------------------------------------------------------- /scripts/get_user_contributions.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | #get_org_repos print out organisation list of repositories 4 | #param: organisation name 5 | get_org_repos() { 6 | org=$1 7 | curl -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/orgs/$org/repos 2>/dev/null | jq '.[].url' -r 8 | } 9 | 10 | #get_repository_pull_requests print out organisation list of repositories 11 | # param: repository name 12 | get_repository_pull_requests() { 13 | repo=$1 14 | page=$2 15 | curl -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" $repo/pulls\?state\=all\&per_page\=100\&page\=$page 2>/dev/null | jq '.[] | {pull_request: .url, user: .user.login}' 16 | } 17 | 18 | #get_repository_issues print out organisation list of repositories 19 | # param: repository name 20 | get_repository_issues() { 21 | repo=$1 22 | page=$2 23 | curl -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" $repo/issues\?state\=all\&per_page\=100\&page\=$page 2>/dev/null | jq '.[] | {issue: .url, user: .user.login}' 24 | } 25 | 26 | ORG=osscameroon 27 | REPOSITORIES=$(get_org_repos $ORG) 28 | 29 | #get repositories pull requests 30 | for repo in $REPOSITORIES; do 31 | # echo "Getting pull request for repository: $repo" 32 | 33 | page=1 34 | while true; do 35 | # echo "page: $page" 36 | ret=$(get_repository_pull_requests $repo $page) 37 | echo "$ret" 38 | if [[ -z "$ret" ]]; then 39 | break 40 | fi 41 | ((page++)) 42 | 43 | #sleep to not break the GitHub api limit 44 | sleep 1 45 | done 46 | 47 | #sleep to not break the GitHub api limit 48 | sleep 1 49 | done 50 | 51 | 52 | #get repositories issues 53 | for repo in $REPOSITORIES; do 54 | # echo "Getting issues for repository: $repo" 55 | 56 | page=1 57 | while true; do 58 | # echo "page: $page" 59 | ret=$(get_repository_issues $repo $page) 60 | echo "$ret" 61 | if [[ -z "$ret" ]]; then 62 | break 63 | fi 64 | ((page++)) 65 | 66 | #sleep to not break the GitHub api limit 67 | sleep 1 68 | done 69 | 70 | #sleep to not break the GitHub api limit 71 | sleep 1 72 | done 73 | -------------------------------------------------------------------------------- /.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 | 106 | #mac 107 | .DS_Store 108 | 109 | #vim 110 | .*.sw* 111 | 112 | #secrets 113 | secrets/ 114 | 115 | .idea 116 | -------------------------------------------------------------------------------- /src/views/partials/contributors.hbs: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 | 11 | 14 |
15 |
16 | 17 |
18 |
19 | {{#each records}} 20 |
21 |
22 | 23 | 24 | 25 | 26 |
27 | 32 |
33 | {{this.grade}} 34 |
35 |
36 |
37 | 38 | {{this.yotas}} Yts 39 | 40 |
41 |
42 | {{/each}} 43 |
44 |
45 | 46 | {{#if (isLower 0 pages)}} 47 | {{>pagination}} 48 | {{/if}} 49 | 50 | 55 | -------------------------------------------------------------------------------- /src/views/partials/pagination.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/res/shop.yaml: -------------------------------------------------------------------------------- 1 | items: 2 | - title: Oss cameroon t-shirt 3 | description: | 4 | You will get an osscameroon t-shirt 5 | price: 150 6 | count: 4 7 | available: true 8 | image: tshirt.jpg 9 | 10 | - title: Oss cameroon stickers 11 | description: | 12 | A bundle of 4 osscameroon stickers 13 | price: 50 14 | count: 4 15 | available: true 16 | image: stickers.jpg 17 | 18 | - title: Join OSS Cameroon admin meeting 19 | description: | 20 | We give you the opportunity to join one of OSS Cameroon's weekly meetings. 21 | you will meet us and can ask any question you want. 22 | price: 50 23 | count: 4 24 | available: true 25 | image: default.svg 26 | 27 | - title: 1h Mentoring session with Sanix 28 | description: | 29 | Get a mentoring session with Sanix Darker, in Python, Javascript, React, C/C++. 30 | price: 20 31 | available: true 32 | image: default.svg 33 | github_handle: Sanix-Darker 34 | github_account: https://github.com/Sanix-Darker 35 | 36 | - title: 1h Mentoring session with Eric 37 | description: | 38 | Get a mentoring session with Eric in, Java, Javascript, Typescript, React, CI/CD, devOps. 39 | price: 20 40 | available: true 41 | image: default.svg 42 | github_handle: tericcabrel 43 | github_account: https://github.com/tericcabrel 44 | 45 | - title: 1h Mentoring session with Gtindo 46 | description: | 47 | Get a mentoring session with Yvan, in Python, Django, Typescript, Javascript, React, Golang. 48 | price: 20 49 | available: true 50 | image: default.svg 51 | github_handle: gtindo 52 | github_account: https://github.com/gtindo 53 | 54 | - title: Yotas stickers 55 | description: | 56 | Get our Yotas stickers 57 | price: N/A 58 | count: 5 59 | image: default.svg 60 | available: false 61 | 62 | - title: Oss Cameroon Sweat shirt 63 | description: | 64 | Get an Oss Cameroon t-shirt 65 | price: N/A 66 | count: 5 67 | image: default.svg 68 | available: false 69 | 70 | - title: Raspberry PI 71 | description: | 72 | A Raspberry PI you can use for your experiments 73 | price: N/A 74 | count: 5 75 | image: raspberry_pi.jpeg 76 | available: false 77 | 78 | - title: 1 month of internet connection 79 | description: | 80 | We offer you a internet connection subsciption for a full month 81 | price: 100 82 | count: 5 83 | image: default.svg 84 | available: true 85 | 86 | - title: 1 coworking place at ActiveSpace Douala 87 | description: | 88 | Coworking place at ActiveSpace Douala 89 | price: 90 90 | count: 3 91 | image: default.svg 92 | available: true 93 | 94 | - title: Choose your own grade for OSS Cameroon 95 | description: | 96 | You can set your own grade at OSS Cameroon 97 | price: 120 98 | image: default.svg 99 | available: true 100 | 101 | - title: Flutter Book (French) 102 | description: | 103 | Développez vos applications mobiles multiplateformes avec Dart (470 pages) 104 | price: 50 105 | image: flutter-book.jpg 106 | available: true 107 | -------------------------------------------------------------------------------- /src/res/yotas.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - github_account: https://github.com/jefcolbi 3 | yotas: 15 4 | grade: god 5 | - github_account: https://github.com/elhmn 6 | yotas: 0 7 | grade: admin 8 | - github_account: https://github.com/Sanix-Darker 9 | yotas: 0 10 | grade: admin 11 | - github_account: https://github.com/simo97 12 | yotas: 5 13 | grade: member 14 | - github_account: https://github.com/Theryx 15 | yotas: 20 16 | grade: member 17 | - github_account: https://github.com/mty-tidjani 18 | yotas: 15 19 | grade: member 20 | - github_account: https://github.com/afranck64 21 | yotas: 10 22 | grade: member 23 | - github_account: https://github.com/BorisGautier 24 | yotas: 0 25 | grade: member 26 | - github_account: https://github.com/emmxl 27 | yotas: 5 28 | grade: member 29 | - github_account: https://github.com/Hawawou 30 | yotas: 5 31 | grade: admin 32 | - github_account: https://github.com/Zaker237 33 | yotas: 15 34 | grade: member 35 | - github_account: https://github.com/sherlockwisdom 36 | yotas: 0 37 | grade: admin 38 | - github_account: https://github.com/stefmedjo 39 | yotas: 0 40 | grade: member 41 | - github_account: https://github.com/RMPR 42 | yotas: 30 43 | grade: member 44 | - github_account: https://github.com/FanJups 45 | yotas: 0 46 | grade: member 47 | - github_account: https://github.com/DipandaAser 48 | yotas: 0 49 | grade: member 50 | - github_account: https://github.com/tericcabrel 51 | yotas: 0 52 | grade: admin 53 | - github_account: https://github.com/gabriel-TheCode 54 | yotas: 0 55 | grade: member 56 | - github_account: https://github.com/gtindo 57 | yotas: 0 58 | grade: admin 59 | - github_account: https://github.com/iceking237 60 | yotas: 5 61 | grade: member 62 | - github_account: https://github.com/himanshu007-creator 63 | yotas: 5 64 | grade: member 65 | - github_account: https://github.com/Doking517 66 | yotas: 5 67 | grade: member 68 | - github_account: https://github.com/abdounasser202 69 | yotas: 40 70 | grade: member 71 | - github_account: https://github.com/sidikfaha 72 | yotas: 91 73 | grade: member 74 | - github_account: https://github.com/wilcoln 75 | yotas: 1 76 | grade: member 77 | - github_account: https://github.com/youngdevps 78 | yotas: 1 79 | grade: member 80 | - github_account: https://github.com/guediagael 81 | yotas: 1 82 | grade: member 83 | - github_account: https://github.com/Geekles007 84 | yotas: 1 85 | grade: member 86 | - github_account: https://github.com/GenjiruSUchiwa 87 | yotas: 20 88 | grade: member 89 | - github_account: https://github.com/wdjopa 90 | yotas: 5 91 | grade: member 92 | - github_account: https://github.com/darixsamani 93 | yotas: 62 94 | grade: member 95 | - github_account: https://github.com/geek3000 96 | yotas: 5 97 | grade: member 98 | - github_account: https://github.com/rigole 99 | yotas: 5 100 | grade: member 101 | - github_account: https://github.com/SherlockHolmes2045 102 | yotas: 15 103 | grade: member 104 | - github_account: https://github.com/SHABA-Rex 105 | yotas: 35 106 | grade: member 107 | - github_account: https://github.com/dy05 108 | yotas: 10 109 | grade: member 110 | - github_account: https://github.com/will-oracions 111 | yotas: 100 112 | grade: member 113 | - github_account: https://github.com/valerymelou 114 | yotas: 70 115 | grade: member 116 | - github_account: https://github.com/AIRALPHA 117 | yotas: 70 118 | grade: member 119 | - github_account: https://github.com/J-Purple 120 | yotas: 10 121 | grade: member 122 | - github_account: https://github.com/delia-pixel 123 | yotas: 10 124 | grade: member 125 | - github_account: https://github.com/Dorian21-prog 126 | yotas: 10 127 | grade: member 128 | - github_account: https://github.com/dev-liro 129 | yotas: 25 130 | grade: member 131 | - github_account: https://github.com/ln-dev7 132 | yotas: 10 133 | grade: member 134 | - github_account: https://github.com/yokwejuste 135 | yotas: 10 136 | grade: member 137 | - github_account: https://github.com/main-c 138 | yotas: 10 139 | grade: member 140 | - github_account: https://github.com/sikatikenmogne 141 | yotas: 20 142 | grade: member 143 | - github_account: https://github.com/noumendarryl 144 | yotas: 15 145 | grade: member 146 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import path from "path"; 2 | import express, { Request, Response } from "express"; 3 | import exphbs from "express-handlebars"; 4 | import Fuse from "fuse.js"; 5 | import * as helpers from "./helpers/handlebars"; 6 | import { getYotas, Record } from "./yotas"; 7 | import { getShop, Item, Shop } from "./shop"; 8 | import { getIssues, Issue } from "./issues"; 9 | 10 | const port = 3000; 11 | const limit = 12; 12 | const app = express(); 13 | 14 | const getCurrentYear = () => { 15 | const d = new Date(); 16 | return d.getFullYear(); 17 | } 18 | 19 | app.locals.gtag = process.env.GOOGLE_ANALYTICS_ID; 20 | 21 | // Set view path 22 | app.set("views", __dirname + "/views"); 23 | app.engine( 24 | ".hbs", 25 | exphbs({ 26 | extname: ".hbs", 27 | defaultLayout: "main", 28 | layoutsDir: __dirname + "/views/layouts/", 29 | partialsDir: __dirname + "/views/partials/", 30 | helpers: helpers, 31 | }) 32 | ); 33 | app.set("view engine", ".hbs"); 34 | 35 | const getRecordsMatchingQuery = (query: string, records: Record[]): Record[] => { 36 | if (query === "") { 37 | return records; 38 | } 39 | 40 | const f: Fuse = new Fuse(records, { 41 | distance: 100, 42 | threshold: 0.3, 43 | keys: ["github_handle", "grade"], 44 | }); 45 | return f.search(query)?.map((e: Fuse.FuseResult): Record => { 46 | return e.item; 47 | }); 48 | }; 49 | 50 | const paginate = (items: Item[], page: number) => { 51 | const count = items.length; 52 | const startIndex = (page - 1) * limit; 53 | const endIndex = page * limit; 54 | items = items.slice(startIndex,endIndex); 55 | const interval = (Number(page) > 5 ? Number(page) - 4 : 1); 56 | return {count,items,interval}; 57 | }; 58 | 59 | const handleContributors = async (req: Request, res: Response) => { 60 | const query = req.query.query as string | undefined ; 61 | const sort = req.query.sort as string | undefined; // Get the sort option 62 | const page = req.query.page as string | undefined ; 63 | let records: Record[] = await getYotas(); 64 | 65 | records = getRecordsMatchingQuery(query ?? "", records); 66 | 67 | // Apply sorting based on the selected sort option 68 | if (sort === "yotas_asc") { 69 | records.sort((a, b) => a.yotas - b.yotas); 70 | } else if (sort === "yotas_desc") { 71 | records.sort((a, b) => b.yotas - a.yotas); 72 | } 73 | 74 | const { count, items, interval } = paginate(records, parseInt(page ?? "1")); 75 | const fullUrl = req.originalUrl; 76 | 77 | res.render("index", { 78 | fullUrl, 79 | records: items, 80 | link: "contributors", 81 | query, 82 | sort, 83 | currentYear: getCurrentYear(), 84 | count, 85 | interval, 86 | hasParams: fullUrl.includes('?'), 87 | current: parseInt(page ?? "1"), 88 | pages: Math.ceil(count / limit), 89 | }); 90 | }; 91 | 92 | app.get("/", handleContributors); 93 | 94 | app.get("/contributors", handleContributors); 95 | 96 | app.get("/v1/api/records", async (req, res) => { 97 | let records: Record[] = await getYotas(); 98 | 99 | res.setHeader('Content-Type', 'application/json'); 100 | res.end(JSON.stringify(records, null, 3)); 101 | }); 102 | 103 | app.get("/shop", async (req, res) => { 104 | const shop: Shop = getShop(); 105 | const shopItems: Item[] = shop?.items ?? []; 106 | const query = req.query.query || ""; 107 | const page = req.query.page as string | undefined ; 108 | const { count, items, interval } = paginate(shopItems,parseInt(page ?? "1") || 1); 109 | const fullUrl = req.originalUrl; 110 | 111 | res.render("index", { 112 | fullUrl, 113 | query, 114 | items, 115 | link: "shop", 116 | currentYear: getCurrentYear(), 117 | count, 118 | interval, 119 | hasParams: fullUrl.includes('?'), 120 | current: parseInt(page ?? "1"), 121 | pages: Math.ceil(count/limit), 122 | }); 123 | }); 124 | 125 | app.get("/issues", async (req: Request, res: Response) => { 126 | const fullUrl = req.originalUrl; 127 | const issues: Issue[] = await getIssues(); 128 | const query = req.query.query || ""; 129 | const page = req.query.page as string | undefined ; 130 | 131 | const { count, items, interval } = paginate(issues,parseInt(page ?? "1")); 132 | 133 | res.render("index", { 134 | fullUrl, 135 | query, 136 | items, 137 | link: "issues", 138 | currentYear: getCurrentYear(), 139 | count, 140 | interval, 141 | hasParams: fullUrl.includes('?'), 142 | current: parseInt(page ?? "1"), 143 | pages: Math.ceil(count / limit), 144 | }); 145 | }); 146 | 147 | app.use('/views', express.static(__dirname + "/views")); 148 | app.use('/res', express.static(__dirname + "/res")); 149 | app.use(express.static(path.resolve(__dirname, '../public'))); 150 | app.listen(port, () => { 151 | console.log(`Application started on URL http://localhost:${port} 🎉`); 152 | }); 153 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Visit https://aka.ms/tsconfig.json to read more about this file */ 4 | 5 | /* Basic Options */ 6 | // "incremental": true, /* Enable incremental compilation */ 7 | "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ 8 | "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ 9 | // "lib": [], /* Specify library files to be included in the compilation. */ 10 | // "allowJs": true, /* Allow javascript files to be compiled. */ 11 | // "checkJs": true, /* Report errors in .js files. */ 12 | // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', 'react', 'react-jsx' or 'react-jsxdev'. */ 13 | // "declaration": true, /* Generates corresponding '.d.ts' file. */ 14 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ 15 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 16 | // "outFile": "./", /* Concatenate and emit output to single file. */ 17 | "outDir": "./dist/", /* Redirect output structure to the directory. */ 18 | "rootDir": "./src/", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 19 | // "composite": true, /* Enable project compilation */ 20 | // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ 21 | // "removeComments": true, /* Do not emit comments to output. */ 22 | // "noEmit": true, /* Do not emit outputs. */ 23 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 24 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 25 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 26 | 27 | /* Strict Type-Checking Options */ 28 | "strict": true, /* Enable all strict type-checking options. */ 29 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 30 | // "strictNullChecks": true, /* Enable strict null checks. */ 31 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 32 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ 33 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 34 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 35 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 36 | 37 | /* Additional Checks */ 38 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 39 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 40 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 41 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 42 | // "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */ 43 | // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an 'override' modifier. */ 44 | // "noPropertyAccessFromIndexSignature": true, /* Require undeclared properties from index signatures to use element accesses. */ 45 | 46 | /* Module Resolution Options */ 47 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 48 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 49 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 50 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 51 | // "typeRoots": [], /* List of folders to include type definitions from. */ 52 | // "types": [], /* Type declaration files to be included in compilation. */ 53 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 54 | "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ 55 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 56 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 57 | 58 | /* Source Map Options */ 59 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 60 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 61 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 62 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 63 | 64 | /* Experimental Options */ 65 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 66 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 67 | 68 | /* Advanced Options */ 69 | "skipLibCheck": true, /* Skip type checking of declaration files. */ 70 | "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/res/osscameroon_issues.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/223", 4 | "title": "Add link in the footer", 5 | "author": "Theryx", 6 | "labels": [ 7 | "5 Yotas" 8 | ] 9 | }, 10 | { 11 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/180", 12 | "title": "Try to send out a message to a telegram channel. Maybe for the beginning send the message to a dummy channel", 13 | "author": "elhmn", 14 | "labels": [ 15 | "backend" 16 | ] 17 | }, 18 | { 19 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/179", 20 | "title": "Fetch the data from the `gcloud/datastore`.", 21 | "author": "elhmn", 22 | "labels": [ 23 | "backend" 24 | ] 25 | }, 26 | { 27 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/178", 28 | "title": "Write a recommendation algorithm that choose an opensource project from the list and then send out a message to a dummy channel depending on certain criterias.", 29 | "author": "elhmn", 30 | "labels": [ 31 | "backend" 32 | ] 33 | }, 34 | { 35 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/177", 36 | "title": "Setup the recommendation-bot repository. the bot source code shoulbe stored in the `./bots` folder right at the root of the `osscameroon-website` github repository.", 37 | "author": "elhmn", 38 | "labels": [ 39 | "backend" 40 | ] 41 | }, 42 | { 43 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/155", 44 | "title": "[Join US] button should invite visitor to provide his github username", 45 | "author": "wilcoln", 46 | "labels": [ 47 | "feature", 48 | "backend", 49 | "frontend" 50 | ] 51 | }, 52 | { 53 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/141", 54 | "title": "Return proper error http status, this will be useful for integration tests and frontend integration", 55 | "author": "elhmn", 56 | "labels": [ 57 | "backend" 58 | ] 59 | }, 60 | { 61 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/124", 62 | "title": "Get a list of language used by github users", 63 | "author": "elhmn", 64 | "labels": [ 65 | "feature", 66 | "backend" 67 | ] 68 | }, 69 | { 70 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/123", 71 | "title": "add documentation for the api that describes its dependencies and how to set it up", 72 | "author": "elhmn", 73 | "labels": [ 74 | "backend" 75 | ] 76 | }, 77 | { 78 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/97", 79 | "title": "Live Chart of the growing of the hashtag", 80 | "author": "Sanix-Darker", 81 | "labels": [ 82 | "backend" 83 | ] 84 | }, 85 | { 86 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/96", 87 | "title": "Top tweet Endpoint from the api", 88 | "author": "Sanix-Darker", 89 | "labels": [ 90 | "feature", 91 | "backend" 92 | ] 93 | }, 94 | { 95 | "issue": "https://github.com/osscameroon/osscameroon-website/issues/78", 96 | "title": "Update Search section on home page with advanced filters", 97 | "author": "gtindo", 98 | "labels": [ 99 | "good first issue", 100 | "frontend", 101 | "15 Yotas" 102 | ] 103 | }, 104 | { 105 | "issue": "https://github.com/osscameroon/project-ideas/issues/35", 106 | "title": "Twitter blog bot", 107 | "author": "carleii", 108 | "labels": [] 109 | }, 110 | { 111 | "issue": "https://github.com/osscameroon/project-ideas/issues/34", 112 | "title": "Autorunner", 113 | "author": "Trixy20", 114 | "labels": [] 115 | }, 116 | { 117 | "issue": "https://github.com/osscameroon/project-ideas/issues/33", 118 | "title": "Proposition d'une Idée de manifesto pour www.osscameroon.com, à afficher de façon facilement accessible.", 119 | "author": "rorosan", 120 | "labels": [] 121 | }, 122 | { 123 | "issue": "https://github.com/osscameroon/project-ideas/issues/31", 124 | "title": "Code Battle", 125 | "author": "FanJups", 126 | "labels": [] 127 | }, 128 | { 129 | "issue": "https://github.com/osscameroon/project-ideas/issues/30", 130 | "title": "Google Play Store and AppStore Download Ranking of Cameroonian Apps", 131 | "author": "leonzo", 132 | "labels": [] 133 | }, 134 | { 135 | "issue": "https://github.com/osscameroon/project-ideas/issues/23", 136 | "title": "Quizo", 137 | "author": "Sanix-Darker", 138 | "labels": [ 139 | "Started" 140 | ] 141 | }, 142 | { 143 | "issue": "https://github.com/osscameroon/project-ideas/issues/22", 144 | "title": "osscameroon bug hunting monthly challenge", 145 | "author": "elhmn", 146 | "labels": [] 147 | }, 148 | { 149 | "issue": "https://github.com/osscameroon/project-ideas/issues/21", 150 | "title": "osscameroon games telegram group", 151 | "author": "elhmn", 152 | "labels": [ 153 | "Started" 154 | ] 155 | }, 156 | { 157 | "issue": "https://github.com/osscameroon/project-ideas/issues/20", 158 | "title": "Links.cm", 159 | "author": "wdjopa", 160 | "labels": [ 161 | "Stalled" 162 | ] 163 | }, 164 | { 165 | "issue": "https://github.com/osscameroon/project-ideas/issues/12", 166 | "title": "Django Builder", 167 | "author": "jefcolbi", 168 | "labels": [ 169 | "Started" 170 | ] 171 | }, 172 | { 173 | "issue": "https://github.com/osscameroon/project-ideas/issues/8", 174 | "title": "Broken Link Checker", 175 | "author": "tericcabrel", 176 | "labels": [ 177 | "Started" 178 | ] 179 | }, 180 | { 181 | "issue": "https://github.com/osscameroon/project-ideas/issues/7", 182 | "title": "Data-requester (tbc?)", 183 | "author": "afranck64", 184 | "labels": [ 185 | "Started" 186 | ] 187 | }, 188 | { 189 | "issue": "https://github.com/osscameroon/project-ideas/issues/5", 190 | "title": "Camer online PII management (or something else...I'm not good with names)", 191 | "author": "guediagael", 192 | "labels": [ 193 | "Stalled" 194 | ] 195 | }, 196 | { 197 | "issue": "https://github.com/osscameroon/project-ideas/issues/4", 198 | "title": "Yotas", 199 | "author": "elhmn", 200 | "labels": [ 201 | "Started" 202 | ] 203 | }, 204 | { 205 | "issue": "https://github.com/osscameroon/project-ideas/issues/3", 206 | "title": "On nous a cut", 207 | "author": "elhmn", 208 | "labels": [ 209 | "Started" 210 | ] 211 | }, 212 | { 213 | "issue": "https://github.com/osscameroon/project-ideas/issues/2", 214 | "title": "CM AppStore", 215 | "author": "Geekles007", 216 | "labels": [ 217 | "Started" 218 | ] 219 | }, 220 | { 221 | "issue": "https://github.com/osscameroon/project-ideas/issues/1", 222 | "title": "jsGenerator", 223 | "author": "FanJups", 224 | "labels": [ 225 | "Started" 226 | ] 227 | }, 228 | { 229 | "issue": "https://github.com/osscameroon/js-generator/issues/78", 230 | "title": "Add illustrations to jsgenerator webapp", 231 | "author": "FanJups", 232 | "labels": [] 233 | }, 234 | { 235 | "issue": "https://github.com/osscameroon/js-generator/issues/77", 236 | "title": "Maintain Open Source Project", 237 | "author": "FanJups", 238 | "labels": [] 239 | }, 240 | { 241 | "issue": "https://github.com/osscameroon/js-generator/issues/75", 242 | "title": "Use Maven to publish Java packages to a registry as part of your continuous integration (CI) workflow", 243 | "author": "FanJups", 244 | "labels": [] 245 | }, 246 | { 247 | "issue": "https://github.com/osscameroon/js-generator/issues/74", 248 | "title": "Configure Apache Maven to publish packages to GitHub Packages and to use packages stored on GitHub Packages as dependencies in a Java project", 249 | "author": "FanJups", 250 | "labels": [] 251 | }, 252 | { 253 | "issue": "https://github.com/osscameroon/js-generator/issues/71", 254 | "title": "Create an option to accept custom tags", 255 | "author": "FanJups", 256 | "labels": [] 257 | }, 258 | { 259 | "issue": "https://github.com/osscameroon/js-generator/issues/66", 260 | "title": "How to deal with html code with only TextNodes ?", 261 | "author": "FanJups", 262 | "labels": [] 263 | }, 264 | { 265 | "issue": "https://github.com/osscameroon/js-generator/issues/65", 266 | "title": "Syntax Hightlighting Github md", 267 | "author": "FanJups", 268 | "labels": [] 269 | }, 270 | { 271 | "issue": "https://github.com/osscameroon/js-generator/issues/62", 272 | "title": "Handle GitHub Actions", 273 | "author": "FanJups", 274 | "labels": [] 275 | }, 276 | { 277 | "issue": "https://github.com/osscameroon/js-generator/issues/59", 278 | "title": "java regex to validate an html file name", 279 | "author": "FanJups", 280 | "labels": [] 281 | }, 282 | { 283 | "issue": "https://github.com/osscameroon/js-generator/issues/56", 284 | "title": "Make an article on osscameroon blog about jsgenerator", 285 | "author": "FanJups", 286 | "labels": [] 287 | }, 288 | { 289 | "issue": "https://github.com/osscameroon/js-generator/issues/54", 290 | "title": "Commits , Releases Changelog updates Automation", 291 | "author": "FanJups", 292 | "labels": [] 293 | }, 294 | { 295 | "issue": "https://github.com/osscameroon/js-generator/issues/51", 296 | "title": "Javadoc", 297 | "author": "FanJups", 298 | "labels": [] 299 | }, 300 | { 301 | "issue": "https://github.com/osscameroon/js-generator/issues/48", 302 | "title": "Handle Exceptions in Java", 303 | "author": "FanJups", 304 | "labels": [] 305 | }, 306 | { 307 | "issue": "https://github.com/osscameroon/js-generator/issues/47", 308 | "title": "Migrate from java 11 to 17", 309 | "author": "FanJups", 310 | "labels": [] 311 | }, 312 | { 313 | "issue": "https://github.com/osscameroon/js-generator/issues/41", 314 | "title": "Self Closing Tag Issue", 315 | "author": "FanJups", 316 | "labels": [] 317 | }, 318 | { 319 | "issue": "https://github.com/osscameroon/js-generator/issues/38", 320 | "title": "Make an Open Source project popular", 321 | "author": "FanJups", 322 | "labels": [] 323 | }, 324 | { 325 | "issue": "https://github.com/osscameroon/js-generator/issues/33", 326 | "title": "how to create maven plugin ?", 327 | "author": "FanJups", 328 | "labels": [] 329 | }, 330 | { 331 | "issue": "https://github.com/osscameroon/js-generator/issues/32", 332 | "title": "how to create maven dependency ?", 333 | "author": "FanJups", 334 | "labels": [] 335 | }, 336 | { 337 | "issue": "https://github.com/osscameroon/js-generator/issues/31", 338 | "title": "Test", 339 | "author": "FanJups", 340 | "labels": [] 341 | }, 342 | { 343 | "issue": "https://github.com/osscameroon/js-generator/issues/22", 344 | "title": "Useful links to create a site documentation with maven site plugin and Github", 345 | "author": "FanJups", 346 | "labels": [] 347 | }, 348 | { 349 | "issue": "https://github.com/osscameroon/js-generator/issues/12", 350 | "title": "Steps for the Whole Project to follow", 351 | "author": "FanJups", 352 | "labels": [] 353 | }, 354 | { 355 | "issue": "https://github.com/osscameroon/js-generator/issues/6", 356 | "title": "Create a web app translating from Html to Js", 357 | "author": "elroykanye", 358 | "labels": [] 359 | }, 360 | { 361 | "issue": "https://github.com/osscameroon/yotas/issues/85", 362 | "title": "Design the organization creation page", 363 | "author": "gtindo", 364 | "labels": [ 365 | "Design" 366 | ] 367 | }, 368 | { 369 | "issue": "https://github.com/osscameroon/yotas/issues/83", 370 | "title": "As a user I want to view a list of articles of an organisation on the home page.", 371 | "author": "gtindo", 372 | "labels": [] 373 | }, 374 | { 375 | "issue": "https://github.com/osscameroon/yotas/issues/82", 376 | "title": "As a user I want to authenticate with my github account", 377 | "author": "gtindo", 378 | "labels": [] 379 | }, 380 | { 381 | "issue": "https://github.com/osscameroon/yotas/issues/81", 382 | "title": "A a user I want to view a list of organisations on the home page", 383 | "author": "gtindo", 384 | "labels": [ 385 | "Frontend", 386 | "Backend" 387 | ] 388 | }, 389 | { 390 | "issue": "https://github.com/osscameroon/yotas/issues/76", 391 | "title": "Integration of the Hompage following the figma design", 392 | "author": "gtindo", 393 | "labels": [ 394 | "Frontend" 395 | ] 396 | }, 397 | { 398 | "issue": "https://github.com/osscameroon/yotas/issues/60", 399 | "title": "Linter error", 400 | "author": "Sanix-Darker", 401 | "labels": [ 402 | "bug" 403 | ] 404 | }, 405 | { 406 | "issue": "https://github.com/osscameroon/yotas/issues/50", 407 | "title": "Design for authentication, articles, order management and organisation creation", 408 | "author": "gtindo", 409 | "labels": [] 410 | }, 411 | { 412 | "issue": "https://github.com/osscameroon/yotas/issues/49", 413 | "title": "Endpoints for authentication, articles, order management and organisation creation", 414 | "author": "gtindo", 415 | "labels": [] 416 | }, 417 | { 418 | "issue": "https://github.com/osscameroon/yotas/issues/41", 419 | "title": "Specifications of the API", 420 | "author": "gtindo", 421 | "labels": [ 422 | "Docs" 423 | ] 424 | }, 425 | { 426 | "issue": "https://github.com/osscameroon/yotas/issues/34", 427 | "title": "Wireframes and proper design following flow charts", 428 | "author": "gtindo", 429 | "labels": [ 430 | "UI/UX" 431 | ] 432 | }, 433 | { 434 | "issue": "https://github.com/osscameroon/yotas/issues/31", 435 | "title": "Make the flow chart for all users stories", 436 | "author": "gtindo", 437 | "labels": [ 438 | "Roadmap", 439 | "UI/UX", 440 | "Design" 441 | ] 442 | }, 443 | { 444 | "issue": "https://github.com/osscameroon/yotas/issues/30", 445 | "title": "Design The API", 446 | "author": "gtindo", 447 | "labels": [ 448 | "Roadmap", 449 | "Design" 450 | ] 451 | }, 452 | { 453 | "issue": "https://github.com/osscameroon/yotas/issues/29", 454 | "title": "CI/CD pipelines setup", 455 | "author": "gtindo", 456 | "labels": [ 457 | "Roadmap", 458 | "DevOps" 459 | ] 460 | }, 461 | { 462 | "issue": "https://github.com/osscameroon/yotas/issues/25", 463 | "title": "A clear schema(image) of the Database", 464 | "author": "Sanix-Darker", 465 | "labels": [] 466 | }, 467 | { 468 | "issue": "https://github.com/osscameroon/yotas/issues/24", 469 | "title": "Setup integration tests for the api", 470 | "author": "elhmn", 471 | "labels": [ 472 | "Backend", 473 | "DevOps" 474 | ] 475 | }, 476 | { 477 | "issue": "https://github.com/osscameroon/yotas/issues/23", 478 | "title": "Add setup a docker-compose file to run the api locally with along with its postgres sql database", 479 | "author": "elhmn", 480 | "labels": [ 481 | "Backend", 482 | "DevOps" 483 | ] 484 | }, 485 | { 486 | "issue": "https://github.com/osscameroon/yotas/issues/22", 487 | "title": "Add api docker image to build and push the api container image", 488 | "author": "elhmn", 489 | "labels": [ 490 | "DevOps" 491 | ] 492 | }, 493 | { 494 | "issue": "https://github.com/osscameroon/yotas/issues/21", 495 | "title": "Add Frontend Docker image build and push workflow", 496 | "author": "elhmn", 497 | "labels": [ 498 | "DevOps" 499 | ] 500 | }, 501 | { 502 | "issue": "https://github.com/osscameroon/yotas/issues/20", 503 | "title": "Setup frontend tests", 504 | "author": "elhmn", 505 | "labels": [ 506 | "DevOps" 507 | ] 508 | }, 509 | { 510 | "issue": "https://github.com/osscameroon/yotas/issues/19", 511 | "title": "Setup frontend linter and frontend lint action", 512 | "author": "elhmn", 513 | "labels": [ 514 | "DevOps" 515 | ] 516 | }, 517 | { 518 | "issue": "https://github.com/osscameroon/yotas/issues/14", 519 | "title": "Set up the connection between yotas-api and yotas-webhook", 520 | "author": "Sanix-Darker", 521 | "labels": [ 522 | "Backend" 523 | ] 524 | }, 525 | { 526 | "issue": "https://github.com/osscameroon/yotas/issues/13", 527 | "title": "Add Yotas-WebHook to the project", 528 | "author": "Sanix-Darker", 529 | "labels": [ 530 | "Backend" 531 | ] 532 | }, 533 | { 534 | "issue": "https://github.com/osscameroon/yotas/issues/11", 535 | "title": "Create Migrations", 536 | "author": "Sanix-Darker", 537 | "labels": [ 538 | "Backend", 539 | "Database" 540 | ] 541 | }, 542 | { 543 | "issue": "https://github.com/osscameroon/yotas/issues/9", 544 | "title": "Organization creation and Link to Github accounts", 545 | "author": "gtindo", 546 | "labels": [ 547 | "Roadmap", 548 | "Frontend", 549 | "Backend" 550 | ] 551 | }, 552 | { 553 | "issue": "https://github.com/osscameroon/yotas/issues/8", 554 | "title": "Users authentication and account creation", 555 | "author": "gtindo", 556 | "labels": [ 557 | "Roadmap", 558 | "Frontend", 559 | "Backend" 560 | ] 561 | }, 562 | { 563 | "issue": "https://github.com/osscameroon/osscameroon-blog/issues/50", 564 | "title": "We should post a message when a new article is added to the blog", 565 | "author": "elhmn", 566 | "labels": [ 567 | "25 Yotas" 568 | ] 569 | }, 570 | { 571 | "issue": "https://github.com/osscameroon/osscameroon-blog/issues/33", 572 | "title": "Implement a link validation github action for blog posts", 573 | "author": "elhmn", 574 | "labels": [ 575 | "25 Yotas" 576 | ] 577 | }, 578 | { 579 | "issue": "https://github.com/osscameroon/osscameroon-blog/issues/22", 580 | "title": "Write a blog article and share it with the community", 581 | "author": "elhmn", 582 | "labels": [ 583 | "good first issue", 584 | "15 Yotas" 585 | ] 586 | }, 587 | { 588 | "issue": "https://github.com/osscameroon/osscameroon-blog/issues/16", 589 | "title": "Say Hi to the osscameroon community", 590 | "author": "elhmn", 591 | "labels": [ 592 | "good first issue", 593 | "5 Yotas" 594 | ] 595 | }, 596 | { 597 | "issue": "https://github.com/osscameroon/hawaBot/issues/5", 598 | "title": "Use json or Js object instead of the DB", 599 | "author": "elhmn", 600 | "labels": [] 601 | }, 602 | { 603 | "issue": "https://github.com/osscameroon/hawaBot/issues/1", 604 | "title": "Development", 605 | "author": "Sanix-Darker", 606 | "labels": [] 607 | }, 608 | { 609 | "issue": "https://github.com/osscameroon/onacut/issues/104", 610 | "title": "update project README", 611 | "author": "Sanix-Darker", 612 | "labels": [ 613 | "documentation", 614 | "good first issue" 615 | ] 616 | }, 617 | { 618 | "issue": "https://github.com/osscameroon/onacut/issues/97", 619 | "title": "Add the show on map button to see the position on the map", 620 | "author": "Asam237", 621 | "labels": [ 622 | "frontend" 623 | ] 624 | }, 625 | { 626 | "issue": "https://github.com/osscameroon/onacut/issues/96", 627 | "title": "Display the number of alerts per region on the list", 628 | "author": "Asam237", 629 | "labels": [ 630 | "frontend" 631 | ] 632 | }, 633 | { 634 | "issue": "https://github.com/osscameroon/onacut/issues/90", 635 | "title": "Add instructions to run the backend in a README.md", 636 | "author": "elhmn", 637 | "labels": [ 638 | "backend" 639 | ] 640 | }, 641 | { 642 | "issue": "https://github.com/osscameroon/onacut/issues/77", 643 | "title": "Writte api e2e test", 644 | "author": "Zaker237", 645 | "labels": [] 646 | }, 647 | { 648 | "issue": "https://github.com/osscameroon/onacut/issues/76", 649 | "title": "Github action to check PEP spec", 650 | "author": "Zaker237", 651 | "labels": [] 652 | }, 653 | { 654 | "issue": "https://github.com/osscameroon/onacut/issues/60", 655 | "title": "implement en endpoint to post new alerts", 656 | "author": "Zaker237", 657 | "labels": [ 658 | "backend" 659 | ] 660 | }, 661 | { 662 | "issue": "https://github.com/osscameroon/onacut/issues/49", 663 | "title": "dockerise the dev env", 664 | "author": "Zaker237", 665 | "labels": [ 666 | "backend" 667 | ] 668 | }, 669 | { 670 | "issue": "https://github.com/osscameroon/onacut/issues/44", 671 | "title": "Redesign the User Interface", 672 | "author": "Theryx", 673 | "labels": [] 674 | }, 675 | { 676 | "issue": "https://github.com/osscameroon/onacut/issues/42", 677 | "title": "Is there a ROADMAP", 678 | "author": "Sanix-Darker", 679 | "labels": [] 680 | }, 681 | { 682 | "issue": "https://github.com/osscameroon/onacut/issues/30", 683 | "title": "Setup automatic stage deployment on merge to master for the experimental server", 684 | "author": "elhmn", 685 | "labels": [] 686 | }, 687 | { 688 | "issue": "https://github.com/osscameroon/onacut/issues/29", 689 | "title": "Deploy application frontend in osscameroon experimental droplet", 690 | "author": "elhmn", 691 | "labels": [] 692 | }, 693 | { 694 | "issue": "https://github.com/osscameroon/onacut/issues/21", 695 | "title": "Addition of the coordinates of the various cities of Cameroon", 696 | "author": "Asam237", 697 | "labels": [] 698 | }, 699 | { 700 | "issue": "https://github.com/osscameroon/onacut/issues/8", 701 | "title": "Add a map showing location of outages in cameroon", 702 | "author": "elhmn", 703 | "labels": [] 704 | }, 705 | { 706 | "issue": "https://github.com/osscameroon/miniyotas/issues/26", 707 | "title": "Dockerise miniyotas", 708 | "author": "elhmn", 709 | "labels": [] 710 | }, 711 | { 712 | "issue": "https://github.com/osscameroon/miniyotas/issues/24", 713 | "title": "The current page is not highlighted", 714 | "author": "elhmn", 715 | "labels": [ 716 | "5 Yotas" 717 | ] 718 | }, 719 | { 720 | "issue": "https://github.com/osscameroon/miniyotas/issues/7", 721 | "title": "Add sort by select button", 722 | "author": "elhmn", 723 | "labels": [ 724 | "good first issue", 725 | "15 Yotas" 726 | ] 727 | }, 728 | { 729 | "issue": "https://github.com/osscameroon/camerapps.com/issues/41", 730 | "title": "Application should be submitted using issue forms", 731 | "author": "elhmn", 732 | "labels": [ 733 | "40 Yotas" 734 | ] 735 | }, 736 | { 737 | "issue": "https://github.com/osscameroon/camerapps.com/issues/40", 738 | "title": "The current page is not highlighted", 739 | "author": "elhmn", 740 | "labels": [ 741 | "5 Yotas" 742 | ] 743 | }, 744 | { 745 | "issue": "https://github.com/osscameroon/camerapps.com/issues/5", 746 | "title": "add few apps suggested by the osscameroon community", 747 | "author": "elhmn", 748 | "labels": [ 749 | "15 Yotas" 750 | ] 751 | }, 752 | { 753 | "issue": "https://github.com/osscameroon/camerapps.com/issues/1", 754 | "title": "Add new cameroonian applications, telegram, facebook groups ", 755 | "author": "elhmn", 756 | "labels": [ 757 | "good first issue", 758 | "5 Yotas" 759 | ] 760 | }, 761 | { 762 | "issue": "https://github.com/osscameroon/hackaton-octobre-2021/issues/1", 763 | "title": "On site hackaton Idea", 764 | "author": "elhmn", 765 | "labels": [] 766 | }, 767 | { 768 | "issue": "https://github.com/osscameroon/global-github-actions/issues/87", 769 | "title": "test: add some tests for the social_send_contribution service", 770 | "author": "Sanix-Darker", 771 | "labels": [] 772 | }, 773 | { 774 | "issue": "https://github.com/osscameroon/global-github-actions/issues/83", 775 | "title": "The `notify_on_pull_request_open` GitHub Action does not work for this repository", 776 | "author": "elhmn", 777 | "labels": [] 778 | }, 779 | { 780 | "issue": "https://github.com/osscameroon/global-github-actions/issues/77", 781 | "title": "PR Notification failed due to long description", 782 | "author": "FanJups", 783 | "labels": [] 784 | }, 785 | { 786 | "issue": "https://github.com/osscameroon/global-github-actions/issues/66", 787 | "title": "feat(report quiz): multiple choice", 788 | "author": "pythonbrad", 789 | "labels": [] 790 | }, 791 | { 792 | "issue": "https://github.com/osscameroon/global-github-actions/issues/60", 793 | "title": "fix(report job): report fail", 794 | "author": "pythonbrad", 795 | "labels": [] 796 | }, 797 | { 798 | "issue": "https://github.com/osscameroon/Branding/issues/1", 799 | "title": "Add the osscameroon branding `pdf` and `logos`", 800 | "author": "elhmn", 801 | "labels": [] 802 | }, 803 | { 804 | "issue": "https://github.com/osscameroon/jobsika/issues/338", 805 | "title": "Force the user to enter a real salary when contributing", 806 | "author": "Zaker237", 807 | "labels": [ 808 | "bug", 809 | "backend", 810 | "frontend" 811 | ] 812 | }, 813 | { 814 | "issue": "https://github.com/osscameroon/jobsika/issues/336", 815 | "title": "Add City to the hidden filter", 816 | "author": "DipandaAser", 817 | "labels": [ 818 | "backend" 819 | ] 820 | }, 821 | { 822 | "issue": "https://github.com/osscameroon/jobsika/issues/327", 823 | "title": "Add possibility to mention with contract or not while contributing", 824 | "author": "valerymelou", 825 | "labels": [] 826 | }, 827 | { 828 | "issue": "https://github.com/osscameroon/jobsika/issues/318", 829 | "title": "Currently there is no way to share a url of jobsika with the filters", 830 | "author": "elhmn", 831 | "labels": [ 832 | "frontend", 833 | "curation" 834 | ] 835 | }, 836 | { 837 | "issue": "https://github.com/osscameroon/jobsika/issues/309", 838 | "title": "writte a preview that will be show for the app on external app", 839 | "author": "Zaker237", 840 | "labels": [ 841 | "frontend", 842 | "curation" 843 | ] 844 | }, 845 | { 846 | "issue": "https://github.com/osscameroon/jobsika/issues/305", 847 | "title": "Setup cors and rate limits on traefik", 848 | "author": "elhmn", 849 | "labels": [ 850 | "backend" 851 | ] 852 | }, 853 | { 854 | "issue": "https://github.com/osscameroon/jobsika/issues/250", 855 | "title": "Optimize filters on mobile", 856 | "author": "Theryx", 857 | "labels": [ 858 | "bug", 859 | "frontend" 860 | ] 861 | }, 862 | { 863 | "issue": "https://github.com/osscameroon/jobsika/issues/233", 864 | "title": "Update filter dropdown", 865 | "author": "Theryx", 866 | "labels": [ 867 | "frontend" 868 | ] 869 | }, 870 | { 871 | "issue": "https://github.com/osscameroon/jobsika/issues/148", 872 | "title": "Ability to calculate your NET or Gross salary", 873 | "author": "Theryx", 874 | "labels": [ 875 | "enhancement" 876 | ] 877 | }, 878 | { 879 | "issue": "https://github.com/osscameroon/jobsika/issues/145", 880 | "title": "Update ReadMe doc about Jobsika", 881 | "author": "Theryx", 882 | "labels": [ 883 | "documentation" 884 | ] 885 | }, 886 | { 887 | "issue": "https://github.com/osscameroon/sami/issues/8", 888 | "title": "As a dev i have a formated CLI !", 889 | "author": "Sanix-Darker", 890 | "labels": [] 891 | }, 892 | { 893 | "issue": "https://github.com/osscameroon/sami/issues/7", 894 | "title": "As a dev i can parse sami-yml file and validate content", 895 | "author": "Sanix-Darker", 896 | "labels": [] 897 | }, 898 | { 899 | "issue": "https://github.com/osscameroon/sami/issues/6", 900 | "title": "As a dev i can run a 'sami deploy'", 901 | "author": "Sanix-Darker", 902 | "labels": [] 903 | }, 904 | { 905 | "issue": "https://github.com/osscameroon/sami/issues/5", 906 | "title": "As a dev i can run 'sami logs'", 907 | "author": "Sanix-Darker", 908 | "labels": [] 909 | }, 910 | { 911 | "issue": "https://github.com/osscameroon/sami/issues/4", 912 | "title": "As a dev i can run 'sami oob'", 913 | "author": "Sanix-Darker", 914 | "labels": [] 915 | }, 916 | { 917 | "issue": "https://github.com/osscameroon/sami/issues/3", 918 | "title": "As a dev i can run 'sami status'", 919 | "author": "Sanix-Darker", 920 | "labels": [] 921 | }, 922 | { 923 | "issue": "https://github.com/osscameroon/broken_link_checker/issues/58", 924 | "title": "feat: full fetch even for js generated websites", 925 | "author": "Sanix-Darker", 926 | "labels": [] 927 | }, 928 | { 929 | "issue": "https://github.com/osscameroon/broken_link_checker/issues/36", 930 | "title": "extend Python versions support", 931 | "author": "afranck64", 932 | "labels": [] 933 | }, 934 | { 935 | "issue": "https://github.com/osscameroon/broken_link_checker/issues/33", 936 | "title": "fix: problem of http status_code", 937 | "author": "pythonbrad", 938 | "labels": [] 939 | }, 940 | { 941 | "issue": "https://github.com/osscameroon/podcasts/issues/39", 942 | "title": "make the current view responsive", 943 | "author": "yokwejuste", 944 | "labels": [] 945 | }, 946 | { 947 | "issue": "https://github.com/osscameroon/podcasts/issues/38", 948 | "title": "Setup linting checks (using github actions)", 949 | "author": "yokwejuste", 950 | "labels": [] 951 | }, 952 | { 953 | "issue": "https://github.com/osscameroon/podcasts/issues/35", 954 | "title": "Fetch the list of podcasts from an actual yaml file", 955 | "author": "godsakani", 956 | "labels": [] 957 | } 958 | ] 959 | -------------------------------------------------------------------------------- /src/res/imgs/default.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@sindresorhus/is@^0.14.0": 6 | version "0.14.0" 7 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 8 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 9 | 10 | "@szmarczak/http-timer@^1.1.2": 11 | version "1.1.2" 12 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 13 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 14 | dependencies: 15 | defer-to-connect "^1.0.1" 16 | 17 | "@tsconfig/node10@^1.0.7": 18 | version "1.0.8" 19 | resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" 20 | integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== 21 | 22 | "@tsconfig/node12@^1.0.7": 23 | version "1.0.9" 24 | resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.9.tgz#62c1f6dee2ebd9aead80dc3afa56810e58e1a04c" 25 | integrity sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw== 26 | 27 | "@tsconfig/node14@^1.0.0": 28 | version "1.0.1" 29 | resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" 30 | integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== 31 | 32 | "@tsconfig/node16@^1.0.1": 33 | version "1.0.1" 34 | resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.1.tgz#a6ca6a9a0ff366af433f42f5f0e124794ff6b8f1" 35 | integrity sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA== 36 | 37 | "@types/body-parser@*": 38 | version "1.19.0" 39 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f" 40 | integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ== 41 | dependencies: 42 | "@types/connect" "*" 43 | "@types/node" "*" 44 | 45 | "@types/connect@*": 46 | version "3.4.34" 47 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.34.tgz#170a40223a6d666006d93ca128af2beb1d9b1901" 48 | integrity sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ== 49 | dependencies: 50 | "@types/node" "*" 51 | 52 | "@types/express-handlebars@^5.3.0": 53 | version "5.3.0" 54 | resolved "https://registry.yarnpkg.com/@types/express-handlebars/-/express-handlebars-5.3.0.tgz#41103ebe07e44897a02558ee09580a96bfe7ae8c" 55 | integrity sha512-OO3lcUW9Dw0mmqja8D7sUL3LKfHi5WlgK4jH2yS53dmX9mnWLCWJUlkn0E9t7u6Qp3h9b7lrNQt4j50BubmLYw== 56 | 57 | "@types/express-serve-static-core@^4.17.18": 58 | version "4.17.22" 59 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.22.tgz#e011c55de3f17ddf1161f790042a15c5a218744d" 60 | integrity sha512-WdqmrUsRS4ootGha6tVwk/IVHM1iorU8tGehftQD2NWiPniw/sm7xdJOIlXLwqdInL9wBw/p7oO8vaYEF3NDmA== 61 | dependencies: 62 | "@types/node" "*" 63 | "@types/qs" "*" 64 | "@types/range-parser" "*" 65 | 66 | "@types/express@^4.17.12": 67 | version "4.17.12" 68 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.12.tgz#4bc1bf3cd0cfe6d3f6f2853648b40db7d54de350" 69 | integrity sha512-pTYas6FrP15B1Oa0bkN5tQMNqOcVXa9j4FTFtO8DWI9kppKib+6NJtfTOOLcwxuuYvcX2+dVG6et1SxW/Kc17Q== 70 | dependencies: 71 | "@types/body-parser" "*" 72 | "@types/express-serve-static-core" "^4.17.18" 73 | "@types/qs" "*" 74 | "@types/serve-static" "*" 75 | 76 | "@types/google-spreadsheet@^3.1.2": 77 | version "3.1.3" 78 | resolved "https://registry.yarnpkg.com/@types/google-spreadsheet/-/google-spreadsheet-3.1.3.tgz#4ce5aae1ab918109f1719e3ff996e8dba91acd45" 79 | integrity sha512-AIcCmQIcMbNIcKTb638pztV3Zsd9Q3iyZKwKkZZOyKs+YpNIbHJ5zbAn67keCE/HeMNbUBja0ICcGjsIYbUjvw== 80 | 81 | "@types/mime@^1": 82 | version "1.3.2" 83 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" 84 | integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== 85 | 86 | "@types/node@*", "@types/node@^15.12.2": 87 | version "15.12.5" 88 | resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.5.tgz#9a78318a45d75c9523d2396131bd3cca54b2d185" 89 | integrity sha512-se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg== 90 | 91 | "@types/qs@*": 92 | version "6.9.6" 93 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1" 94 | integrity sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA== 95 | 96 | "@types/range-parser@*": 97 | version "1.2.3" 98 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" 99 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== 100 | 101 | "@types/serve-static@*": 102 | version "1.13.9" 103 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz#aacf28a85a05ee29a11fb7c3ead935ac56f33e4e" 104 | integrity sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA== 105 | dependencies: 106 | "@types/mime" "^1" 107 | "@types/node" "*" 108 | 109 | abbrev@1: 110 | version "1.1.1" 111 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 112 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 113 | 114 | abort-controller@^3.0.0: 115 | version "3.0.0" 116 | resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" 117 | integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== 118 | dependencies: 119 | event-target-shim "^5.0.0" 120 | 121 | accepts@~1.3.7: 122 | version "1.3.7" 123 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 124 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 125 | dependencies: 126 | mime-types "~2.1.24" 127 | negotiator "0.6.2" 128 | 129 | agent-base@6: 130 | version "6.0.2" 131 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 132 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 133 | dependencies: 134 | debug "4" 135 | 136 | ansi-align@^3.0.0: 137 | version "3.0.0" 138 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" 139 | integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw== 140 | dependencies: 141 | string-width "^3.0.0" 142 | 143 | ansi-regex@^4.1.0: 144 | version "4.1.0" 145 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 146 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 147 | 148 | ansi-regex@^5.0.0: 149 | version "5.0.0" 150 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 151 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 152 | 153 | ansi-styles@^4.1.0: 154 | version "4.3.0" 155 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 156 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 157 | dependencies: 158 | color-convert "^2.0.1" 159 | 160 | anymatch@~3.1.2: 161 | version "3.1.2" 162 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 163 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 164 | dependencies: 165 | normalize-path "^3.0.0" 166 | picomatch "^2.0.4" 167 | 168 | arg@^4.1.0: 169 | version "4.1.3" 170 | resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" 171 | integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== 172 | 173 | array-flatten@1.1.1: 174 | version "1.1.1" 175 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 176 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 177 | 178 | arrify@^2.0.0: 179 | version "2.0.1" 180 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" 181 | integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== 182 | 183 | axios@^0.21.1: 184 | version "0.21.1" 185 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8" 186 | integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== 187 | dependencies: 188 | follow-redirects "^1.10.0" 189 | 190 | balanced-match@^1.0.0: 191 | version "1.0.2" 192 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 193 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 194 | 195 | base64-js@^1.3.0: 196 | version "1.5.1" 197 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 198 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 199 | 200 | bignumber.js@^9.0.0: 201 | version "9.0.1" 202 | resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.1.tgz#8d7ba124c882bfd8e43260c67475518d0689e4e5" 203 | integrity sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA== 204 | 205 | binary-extensions@^2.0.0: 206 | version "2.2.0" 207 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 208 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 209 | 210 | body-parser@1.19.0: 211 | version "1.19.0" 212 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" 213 | integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== 214 | dependencies: 215 | bytes "3.1.0" 216 | content-type "~1.0.4" 217 | debug "2.6.9" 218 | depd "~1.1.2" 219 | http-errors "1.7.2" 220 | iconv-lite "0.4.24" 221 | on-finished "~2.3.0" 222 | qs "6.7.0" 223 | raw-body "2.4.0" 224 | type-is "~1.6.17" 225 | 226 | boxen@^4.2.0: 227 | version "4.2.0" 228 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" 229 | integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ== 230 | dependencies: 231 | ansi-align "^3.0.0" 232 | camelcase "^5.3.1" 233 | chalk "^3.0.0" 234 | cli-boxes "^2.2.0" 235 | string-width "^4.1.0" 236 | term-size "^2.1.0" 237 | type-fest "^0.8.1" 238 | widest-line "^3.1.0" 239 | 240 | brace-expansion@^1.1.7: 241 | version "1.1.11" 242 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 243 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 244 | dependencies: 245 | balanced-match "^1.0.0" 246 | concat-map "0.0.1" 247 | 248 | braces@~3.0.2: 249 | version "3.0.2" 250 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 251 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 252 | dependencies: 253 | fill-range "^7.0.1" 254 | 255 | buffer-equal-constant-time@1.0.1: 256 | version "1.0.1" 257 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 258 | integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= 259 | 260 | buffer-from@^1.0.0: 261 | version "1.1.1" 262 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 263 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 264 | 265 | bytes@3.1.0: 266 | version "3.1.0" 267 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 268 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 269 | 270 | cacheable-request@^6.0.0: 271 | version "6.1.0" 272 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 273 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 274 | dependencies: 275 | clone-response "^1.0.2" 276 | get-stream "^5.1.0" 277 | http-cache-semantics "^4.0.0" 278 | keyv "^3.0.0" 279 | lowercase-keys "^2.0.0" 280 | normalize-url "^4.1.0" 281 | responselike "^1.0.2" 282 | 283 | camelcase@^5.3.1: 284 | version "5.3.1" 285 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 286 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 287 | 288 | chalk@^3.0.0: 289 | version "3.0.0" 290 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 291 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 292 | dependencies: 293 | ansi-styles "^4.1.0" 294 | supports-color "^7.1.0" 295 | 296 | chokidar@^3.2.2: 297 | version "3.5.2" 298 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" 299 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== 300 | dependencies: 301 | anymatch "~3.1.2" 302 | braces "~3.0.2" 303 | glob-parent "~5.1.2" 304 | is-binary-path "~2.1.0" 305 | is-glob "~4.0.1" 306 | normalize-path "~3.0.0" 307 | readdirp "~3.6.0" 308 | optionalDependencies: 309 | fsevents "~2.3.2" 310 | 311 | ci-info@^2.0.0: 312 | version "2.0.0" 313 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 314 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 315 | 316 | cli-boxes@^2.2.0: 317 | version "2.2.1" 318 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 319 | integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 320 | 321 | clone-response@^1.0.2: 322 | version "1.0.2" 323 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 324 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 325 | dependencies: 326 | mimic-response "^1.0.0" 327 | 328 | color-convert@^2.0.1: 329 | version "2.0.1" 330 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 331 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 332 | dependencies: 333 | color-name "~1.1.4" 334 | 335 | color-name@~1.1.4: 336 | version "1.1.4" 337 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 338 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 339 | 340 | concat-map@0.0.1: 341 | version "0.0.1" 342 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 343 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 344 | 345 | configstore@^5.0.1: 346 | version "5.0.1" 347 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 348 | integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== 349 | dependencies: 350 | dot-prop "^5.2.0" 351 | graceful-fs "^4.1.2" 352 | make-dir "^3.0.0" 353 | unique-string "^2.0.0" 354 | write-file-atomic "^3.0.0" 355 | xdg-basedir "^4.0.0" 356 | 357 | content-disposition@0.5.3: 358 | version "0.5.3" 359 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 360 | integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== 361 | dependencies: 362 | safe-buffer "5.1.2" 363 | 364 | content-type@~1.0.4: 365 | version "1.0.4" 366 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 367 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 368 | 369 | cookie-signature@1.0.6: 370 | version "1.0.6" 371 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 372 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 373 | 374 | cookie@0.4.0: 375 | version "0.4.0" 376 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" 377 | integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== 378 | 379 | create-require@^1.1.0: 380 | version "1.1.1" 381 | resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" 382 | integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== 383 | 384 | cross-env@^7.0.3: 385 | version "7.0.3" 386 | resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" 387 | integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== 388 | dependencies: 389 | cross-spawn "^7.0.1" 390 | 391 | cross-spawn@^7.0.1: 392 | version "7.0.3" 393 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 394 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 395 | dependencies: 396 | path-key "^3.1.0" 397 | shebang-command "^2.0.0" 398 | which "^2.0.1" 399 | 400 | crypto-random-string@^2.0.0: 401 | version "2.0.0" 402 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 403 | integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 404 | 405 | debug@2.6.9, debug@^2.2.0: 406 | version "2.6.9" 407 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 408 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 409 | dependencies: 410 | ms "2.0.0" 411 | 412 | debug@4: 413 | version "4.3.1" 414 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 415 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 416 | dependencies: 417 | ms "2.1.2" 418 | 419 | debug@^3.2.6: 420 | version "3.2.7" 421 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 422 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 423 | dependencies: 424 | ms "^2.1.1" 425 | 426 | decompress-response@^3.3.0: 427 | version "3.3.0" 428 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 429 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 430 | dependencies: 431 | mimic-response "^1.0.0" 432 | 433 | deep-extend@^0.6.0: 434 | version "0.6.0" 435 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 436 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 437 | 438 | defer-to-connect@^1.0.1: 439 | version "1.1.3" 440 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 441 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 442 | 443 | depd@~1.1.2: 444 | version "1.1.2" 445 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 446 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 447 | 448 | destroy@~1.0.4: 449 | version "1.0.4" 450 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 451 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 452 | 453 | diff@^4.0.1: 454 | version "4.0.2" 455 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" 456 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== 457 | 458 | dot-prop@^5.2.0: 459 | version "5.3.0" 460 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 461 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 462 | dependencies: 463 | is-obj "^2.0.0" 464 | 465 | duplexer3@^0.1.4: 466 | version "0.1.4" 467 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 468 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 469 | 470 | ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11: 471 | version "1.0.11" 472 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" 473 | integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== 474 | dependencies: 475 | safe-buffer "^5.0.1" 476 | 477 | ee-first@1.1.1: 478 | version "1.1.1" 479 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 480 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 481 | 482 | emoji-regex@^7.0.1: 483 | version "7.0.3" 484 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 485 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 486 | 487 | emoji-regex@^8.0.0: 488 | version "8.0.0" 489 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 490 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 491 | 492 | encodeurl@~1.0.2: 493 | version "1.0.2" 494 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 495 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 496 | 497 | end-of-stream@^1.1.0: 498 | version "1.4.4" 499 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 500 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 501 | dependencies: 502 | once "^1.4.0" 503 | 504 | escape-goat@^2.0.0: 505 | version "2.1.1" 506 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 507 | integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 508 | 509 | escape-html@~1.0.3: 510 | version "1.0.3" 511 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 512 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 513 | 514 | etag@~1.8.1: 515 | version "1.8.1" 516 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 517 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 518 | 519 | event-target-shim@^5.0.0: 520 | version "5.0.1" 521 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" 522 | integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== 523 | 524 | express-handlebars@^5.3.2: 525 | version "5.3.2" 526 | resolved "https://registry.yarnpkg.com/express-handlebars/-/express-handlebars-5.3.2.tgz#4c1a809a039cd7d3659f06401c37d9905e3d5cd9" 527 | integrity sha512-iGR7HXP+x+SfJQo9m00ocqcr7hU8ZzcssTLE/4wBX+jsqcblO6sFJEbEAEFjiNze3XMz9Y26Zs1WN5Bb4zxivQ== 528 | dependencies: 529 | glob "^7.1.7" 530 | graceful-fs "^4.2.6" 531 | handlebars "^4.7.7" 532 | 533 | express@^4.17.1: 534 | version "4.17.1" 535 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" 536 | integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== 537 | dependencies: 538 | accepts "~1.3.7" 539 | array-flatten "1.1.1" 540 | body-parser "1.19.0" 541 | content-disposition "0.5.3" 542 | content-type "~1.0.4" 543 | cookie "0.4.0" 544 | cookie-signature "1.0.6" 545 | debug "2.6.9" 546 | depd "~1.1.2" 547 | encodeurl "~1.0.2" 548 | escape-html "~1.0.3" 549 | etag "~1.8.1" 550 | finalhandler "~1.1.2" 551 | fresh "0.5.2" 552 | merge-descriptors "1.0.1" 553 | methods "~1.1.2" 554 | on-finished "~2.3.0" 555 | parseurl "~1.3.3" 556 | path-to-regexp "0.1.7" 557 | proxy-addr "~2.0.5" 558 | qs "6.7.0" 559 | range-parser "~1.2.1" 560 | safe-buffer "5.1.2" 561 | send "0.17.1" 562 | serve-static "1.14.1" 563 | setprototypeof "1.1.1" 564 | statuses "~1.5.0" 565 | type-is "~1.6.18" 566 | utils-merge "1.0.1" 567 | vary "~1.1.2" 568 | 569 | extend@^3.0.2: 570 | version "3.0.2" 571 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 572 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 573 | 574 | fast-text-encoding@^1.0.0: 575 | version "1.0.3" 576 | resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.3.tgz#ec02ac8e01ab8a319af182dae2681213cfe9ce53" 577 | integrity sha512-dtm4QZH9nZtcDt8qJiOH9fcQd1NAgi+K1O2DbE6GG1PPCK/BWfOH3idCTRQ4ImXRUOyopDEgDEnVEE7Y/2Wrig== 578 | 579 | fill-range@^7.0.1: 580 | version "7.0.1" 581 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 582 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 583 | dependencies: 584 | to-regex-range "^5.0.1" 585 | 586 | finalhandler@~1.1.2: 587 | version "1.1.2" 588 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 589 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 590 | dependencies: 591 | debug "2.6.9" 592 | encodeurl "~1.0.2" 593 | escape-html "~1.0.3" 594 | on-finished "~2.3.0" 595 | parseurl "~1.3.3" 596 | statuses "~1.5.0" 597 | unpipe "~1.0.0" 598 | 599 | follow-redirects@^1.10.0: 600 | version "1.14.1" 601 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43" 602 | integrity sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg== 603 | 604 | forwarded@0.2.0: 605 | version "0.2.0" 606 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" 607 | integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== 608 | 609 | fresh@0.5.2: 610 | version "0.5.2" 611 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 612 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 613 | 614 | fs.realpath@^1.0.0: 615 | version "1.0.0" 616 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 617 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 618 | 619 | fsevents@~2.3.2: 620 | version "2.3.2" 621 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 622 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 623 | 624 | fuse.js@^6.4.6: 625 | version "6.4.6" 626 | resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.4.6.tgz#62f216c110e5aa22486aff20be7896d19a059b79" 627 | integrity sha512-/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw== 628 | 629 | gaxios@^4.0.0: 630 | version "4.3.0" 631 | resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-4.3.0.tgz#ad4814d89061f85b97ef52aed888c5dbec32f774" 632 | integrity sha512-pHplNbslpwCLMyII/lHPWFQbJWOX0B3R1hwBEOvzYi1GmdKZruuEHK4N9V6f7tf1EaPYyF80mui1+344p6SmLg== 633 | dependencies: 634 | abort-controller "^3.0.0" 635 | extend "^3.0.2" 636 | https-proxy-agent "^5.0.0" 637 | is-stream "^2.0.0" 638 | node-fetch "^2.3.0" 639 | 640 | gcp-metadata@^4.2.0: 641 | version "4.3.0" 642 | resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-4.3.0.tgz#0423d06becdbfb9cbb8762eaacf14d5324997900" 643 | integrity sha512-L9XQUpvKJCM76YRSmcxrR4mFPzPGsgZUH+GgHMxAET8qc6+BhRJq63RLhWakgEO2KKVgeSDVfyiNjkGSADwNTA== 644 | dependencies: 645 | gaxios "^4.0.0" 646 | json-bigint "^1.0.0" 647 | 648 | get-stream@^4.1.0: 649 | version "4.1.0" 650 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 651 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 652 | dependencies: 653 | pump "^3.0.0" 654 | 655 | get-stream@^5.1.0: 656 | version "5.2.0" 657 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 658 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 659 | dependencies: 660 | pump "^3.0.0" 661 | 662 | glob-parent@~5.1.2: 663 | version "5.1.2" 664 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 665 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 666 | dependencies: 667 | is-glob "^4.0.1" 668 | 669 | glob@^7.1.7: 670 | version "7.1.7" 671 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 672 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 673 | dependencies: 674 | fs.realpath "^1.0.0" 675 | inflight "^1.0.4" 676 | inherits "2" 677 | minimatch "^3.0.4" 678 | once "^1.3.0" 679 | path-is-absolute "^1.0.0" 680 | 681 | global-dirs@^2.0.1: 682 | version "2.1.0" 683 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.1.0.tgz#e9046a49c806ff04d6c1825e196c8f0091e8df4d" 684 | integrity sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ== 685 | dependencies: 686 | ini "1.3.7" 687 | 688 | google-auth-library@^6.1.3: 689 | version "6.1.6" 690 | resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-6.1.6.tgz#deacdcdb883d9ed6bac78bb5d79a078877fdf572" 691 | integrity sha512-Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ== 692 | dependencies: 693 | arrify "^2.0.0" 694 | base64-js "^1.3.0" 695 | ecdsa-sig-formatter "^1.0.11" 696 | fast-text-encoding "^1.0.0" 697 | gaxios "^4.0.0" 698 | gcp-metadata "^4.2.0" 699 | gtoken "^5.0.4" 700 | jws "^4.0.0" 701 | lru-cache "^6.0.0" 702 | 703 | google-p12-pem@^3.0.3: 704 | version "3.1.0" 705 | resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-3.1.0.tgz#a1421b432fcc926812e3835289807170768a9885" 706 | integrity sha512-JUtEHXL4DY/N+xhlm7TC3qL797RPAtk0ZGXNs3/gWyiDHYoA/8Rjes0pztkda+sZv4ej1EoO2KhWgW5V9KTrSQ== 707 | dependencies: 708 | node-forge "^0.10.0" 709 | 710 | google-spreadsheet@^3.1.15: 711 | version "3.1.15" 712 | resolved "https://registry.yarnpkg.com/google-spreadsheet/-/google-spreadsheet-3.1.15.tgz#e7a86f750d8166faaa3e16929561baceb807bf5a" 713 | integrity sha512-S5477f3Gf3Mz6AXgCw7dbaYnzu5aHou1AX4sDqrGboQWnAytkxqJGKQiXN+zzRTTcYzSTJCe0g7KqCPZO9xiOw== 714 | dependencies: 715 | axios "^0.21.1" 716 | google-auth-library "^6.1.3" 717 | lodash "^4.17.20" 718 | 719 | got@^9.6.0: 720 | version "9.6.0" 721 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 722 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 723 | dependencies: 724 | "@sindresorhus/is" "^0.14.0" 725 | "@szmarczak/http-timer" "^1.1.2" 726 | cacheable-request "^6.0.0" 727 | decompress-response "^3.3.0" 728 | duplexer3 "^0.1.4" 729 | get-stream "^4.1.0" 730 | lowercase-keys "^1.0.1" 731 | mimic-response "^1.0.1" 732 | p-cancelable "^1.0.0" 733 | to-readable-stream "^1.0.0" 734 | url-parse-lax "^3.0.0" 735 | 736 | graceful-fs@^4.1.2, graceful-fs@^4.2.6: 737 | version "4.2.6" 738 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 739 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 740 | 741 | gtoken@^5.0.4: 742 | version "5.3.0" 743 | resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-5.3.0.tgz#6536eb2880d9829f0b9d78f756795d4d9064b217" 744 | integrity sha512-mCcISYiaRZrJpfqOs0QWa6lfEM/C1V9ASkzFmuz43XBb5s1Vynh+CZy1ECeeJXVGx2PRByjYzb4Y4/zr1byr0w== 745 | dependencies: 746 | gaxios "^4.0.0" 747 | google-p12-pem "^3.0.3" 748 | jws "^4.0.0" 749 | 750 | handlebars@^4.7.7: 751 | version "4.7.7" 752 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 753 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 754 | dependencies: 755 | minimist "^1.2.5" 756 | neo-async "^2.6.0" 757 | source-map "^0.6.1" 758 | wordwrap "^1.0.0" 759 | optionalDependencies: 760 | uglify-js "^3.1.4" 761 | 762 | has-flag@^3.0.0: 763 | version "3.0.0" 764 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 765 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 766 | 767 | has-flag@^4.0.0: 768 | version "4.0.0" 769 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 770 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 771 | 772 | has-yarn@^2.1.0: 773 | version "2.1.0" 774 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 775 | integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== 776 | 777 | http-cache-semantics@^4.0.0: 778 | version "4.1.0" 779 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 780 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 781 | 782 | http-errors@1.7.2: 783 | version "1.7.2" 784 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 785 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 786 | dependencies: 787 | depd "~1.1.2" 788 | inherits "2.0.3" 789 | setprototypeof "1.1.1" 790 | statuses ">= 1.5.0 < 2" 791 | toidentifier "1.0.0" 792 | 793 | http-errors@~1.7.2: 794 | version "1.7.3" 795 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 796 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== 797 | dependencies: 798 | depd "~1.1.2" 799 | inherits "2.0.4" 800 | setprototypeof "1.1.1" 801 | statuses ">= 1.5.0 < 2" 802 | toidentifier "1.0.0" 803 | 804 | https-proxy-agent@^5.0.0: 805 | version "5.0.0" 806 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 807 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 808 | dependencies: 809 | agent-base "6" 810 | debug "4" 811 | 812 | iconv-lite@0.4.24: 813 | version "0.4.24" 814 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 815 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 816 | dependencies: 817 | safer-buffer ">= 2.1.2 < 3" 818 | 819 | ignore-by-default@^1.0.1: 820 | version "1.0.1" 821 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 822 | integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= 823 | 824 | import-lazy@^2.1.0: 825 | version "2.1.0" 826 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 827 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 828 | 829 | imurmurhash@^0.1.4: 830 | version "0.1.4" 831 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 832 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 833 | 834 | inflight@^1.0.4: 835 | version "1.0.6" 836 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 837 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 838 | dependencies: 839 | once "^1.3.0" 840 | wrappy "1" 841 | 842 | inherits@2, inherits@2.0.4: 843 | version "2.0.4" 844 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 845 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 846 | 847 | inherits@2.0.3: 848 | version "2.0.3" 849 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 850 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 851 | 852 | ini@1.3.7: 853 | version "1.3.7" 854 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 855 | integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== 856 | 857 | ini@~1.3.0: 858 | version "1.3.8" 859 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 860 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 861 | 862 | ipaddr.js@1.9.1: 863 | version "1.9.1" 864 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 865 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 866 | 867 | is-binary-path@~2.1.0: 868 | version "2.1.0" 869 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 870 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 871 | dependencies: 872 | binary-extensions "^2.0.0" 873 | 874 | is-ci@^2.0.0: 875 | version "2.0.0" 876 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 877 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 878 | dependencies: 879 | ci-info "^2.0.0" 880 | 881 | is-extglob@^2.1.1: 882 | version "2.1.1" 883 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 884 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 885 | 886 | is-fullwidth-code-point@^2.0.0: 887 | version "2.0.0" 888 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 889 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 890 | 891 | is-fullwidth-code-point@^3.0.0: 892 | version "3.0.0" 893 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 894 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 895 | 896 | is-glob@^4.0.1, is-glob@~4.0.1: 897 | version "4.0.1" 898 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 899 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 900 | dependencies: 901 | is-extglob "^2.1.1" 902 | 903 | is-installed-globally@^0.3.1: 904 | version "0.3.2" 905 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141" 906 | integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g== 907 | dependencies: 908 | global-dirs "^2.0.1" 909 | is-path-inside "^3.0.1" 910 | 911 | is-npm@^4.0.0: 912 | version "4.0.0" 913 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" 914 | integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig== 915 | 916 | is-number@^7.0.0: 917 | version "7.0.0" 918 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 919 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 920 | 921 | is-obj@^2.0.0: 922 | version "2.0.0" 923 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 924 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 925 | 926 | is-path-inside@^3.0.1: 927 | version "3.0.3" 928 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 929 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 930 | 931 | is-stream@^2.0.0: 932 | version "2.0.0" 933 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 934 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 935 | 936 | is-typedarray@^1.0.0: 937 | version "1.0.0" 938 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 939 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 940 | 941 | is-yarn-global@^0.3.0: 942 | version "0.3.0" 943 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 944 | integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== 945 | 946 | isexe@^2.0.0: 947 | version "2.0.0" 948 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 949 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 950 | 951 | json-bigint@^1.0.0: 952 | version "1.0.0" 953 | resolved "https://registry.yarnpkg.com/json-bigint/-/json-bigint-1.0.0.tgz#ae547823ac0cad8398667f8cd9ef4730f5b01ff1" 954 | integrity sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ== 955 | dependencies: 956 | bignumber.js "^9.0.0" 957 | 958 | json-buffer@3.0.0: 959 | version "3.0.0" 960 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 961 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 962 | 963 | jwa@^2.0.0: 964 | version "2.0.0" 965 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-2.0.0.tgz#a7e9c3f29dae94027ebcaf49975c9345593410fc" 966 | integrity sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA== 967 | dependencies: 968 | buffer-equal-constant-time "1.0.1" 969 | ecdsa-sig-formatter "1.0.11" 970 | safe-buffer "^5.0.1" 971 | 972 | jws@^4.0.0: 973 | version "4.0.0" 974 | resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.0.tgz#2d4e8cf6a318ffaa12615e9dec7e86e6c97310f4" 975 | integrity sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg== 976 | dependencies: 977 | jwa "^2.0.0" 978 | safe-buffer "^5.0.1" 979 | 980 | keyv@^3.0.0: 981 | version "3.1.0" 982 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 983 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 984 | dependencies: 985 | json-buffer "3.0.0" 986 | 987 | latest-version@^5.0.0: 988 | version "5.1.0" 989 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 990 | integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== 991 | dependencies: 992 | package-json "^6.3.0" 993 | 994 | lodash@^4.17.20: 995 | version "4.17.21" 996 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 997 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 998 | 999 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1000 | version "1.0.1" 1001 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1002 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1003 | 1004 | lowercase-keys@^2.0.0: 1005 | version "2.0.0" 1006 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1007 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1008 | 1009 | lru-cache@^6.0.0: 1010 | version "6.0.0" 1011 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1012 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1013 | dependencies: 1014 | yallist "^4.0.0" 1015 | 1016 | make-dir@^3.0.0: 1017 | version "3.1.0" 1018 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1019 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1020 | dependencies: 1021 | semver "^6.0.0" 1022 | 1023 | make-error@^1.1.1: 1024 | version "1.3.6" 1025 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1026 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1027 | 1028 | media-typer@0.3.0: 1029 | version "0.3.0" 1030 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1031 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 1032 | 1033 | merge-descriptors@1.0.1: 1034 | version "1.0.1" 1035 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1036 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 1037 | 1038 | methods@~1.1.2: 1039 | version "1.1.2" 1040 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1041 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 1042 | 1043 | mime-db@1.48.0: 1044 | version "1.48.0" 1045 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" 1046 | integrity sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ== 1047 | 1048 | mime-types@~2.1.24: 1049 | version "2.1.31" 1050 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.31.tgz#a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b" 1051 | integrity sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg== 1052 | dependencies: 1053 | mime-db "1.48.0" 1054 | 1055 | mime@1.6.0: 1056 | version "1.6.0" 1057 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1058 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 1059 | 1060 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1061 | version "1.0.1" 1062 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1063 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1064 | 1065 | minimatch@^3.0.4: 1066 | version "3.0.4" 1067 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1068 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1069 | dependencies: 1070 | brace-expansion "^1.1.7" 1071 | 1072 | minimist@^1.2.0, minimist@^1.2.5: 1073 | version "1.2.5" 1074 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1075 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1076 | 1077 | ms@2.0.0: 1078 | version "2.0.0" 1079 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1080 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1081 | 1082 | ms@2.1.1: 1083 | version "2.1.1" 1084 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1085 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1086 | 1087 | ms@2.1.2: 1088 | version "2.1.2" 1089 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1090 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1091 | 1092 | ms@^2.1.1: 1093 | version "2.1.3" 1094 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1095 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1096 | 1097 | negotiator@0.6.2: 1098 | version "0.6.2" 1099 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 1100 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 1101 | 1102 | neo-async@^2.6.0: 1103 | version "2.6.2" 1104 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 1105 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 1106 | 1107 | node-fetch@^2.3.0: 1108 | version "2.6.1" 1109 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 1110 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 1111 | 1112 | node-forge@^0.10.0: 1113 | version "0.10.0" 1114 | resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" 1115 | integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== 1116 | 1117 | nodemon@^2.0.7: 1118 | version "2.0.7" 1119 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.7.tgz#6f030a0a0ebe3ea1ba2a38f71bf9bab4841ced32" 1120 | integrity sha512-XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA== 1121 | dependencies: 1122 | chokidar "^3.2.2" 1123 | debug "^3.2.6" 1124 | ignore-by-default "^1.0.1" 1125 | minimatch "^3.0.4" 1126 | pstree.remy "^1.1.7" 1127 | semver "^5.7.1" 1128 | supports-color "^5.5.0" 1129 | touch "^3.1.0" 1130 | undefsafe "^2.0.3" 1131 | update-notifier "^4.1.0" 1132 | 1133 | nopt@~1.0.10: 1134 | version "1.0.10" 1135 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1136 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 1137 | dependencies: 1138 | abbrev "1" 1139 | 1140 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1141 | version "3.0.0" 1142 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1143 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1144 | 1145 | normalize-url@^4.1.0: 1146 | version "4.5.1" 1147 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 1148 | integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== 1149 | 1150 | on-finished@~2.3.0: 1151 | version "2.3.0" 1152 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1153 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 1154 | dependencies: 1155 | ee-first "1.1.1" 1156 | 1157 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1158 | version "1.4.0" 1159 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1160 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1161 | dependencies: 1162 | wrappy "1" 1163 | 1164 | p-cancelable@^1.0.0: 1165 | version "1.1.0" 1166 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 1167 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 1168 | 1169 | package-json@^6.3.0: 1170 | version "6.5.0" 1171 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 1172 | integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== 1173 | dependencies: 1174 | got "^9.6.0" 1175 | registry-auth-token "^4.0.0" 1176 | registry-url "^5.0.0" 1177 | semver "^6.2.0" 1178 | 1179 | parseurl@~1.3.3: 1180 | version "1.3.3" 1181 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 1182 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 1183 | 1184 | path-is-absolute@^1.0.0: 1185 | version "1.0.1" 1186 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1187 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1188 | 1189 | path-key@^3.1.0: 1190 | version "3.1.1" 1191 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1192 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1193 | 1194 | path-to-regexp@0.1.7: 1195 | version "0.1.7" 1196 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1197 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 1198 | 1199 | picomatch@^2.0.4, picomatch@^2.2.1: 1200 | version "2.3.0" 1201 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 1202 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 1203 | 1204 | prepend-http@^2.0.0: 1205 | version "2.0.0" 1206 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 1207 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 1208 | 1209 | proxy-addr@~2.0.5: 1210 | version "2.0.7" 1211 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" 1212 | integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== 1213 | dependencies: 1214 | forwarded "0.2.0" 1215 | ipaddr.js "1.9.1" 1216 | 1217 | pstree.remy@^1.1.7: 1218 | version "1.1.8" 1219 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" 1220 | integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== 1221 | 1222 | pump@^3.0.0: 1223 | version "3.0.0" 1224 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1225 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1226 | dependencies: 1227 | end-of-stream "^1.1.0" 1228 | once "^1.3.1" 1229 | 1230 | pupa@^2.0.1: 1231 | version "2.1.1" 1232 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" 1233 | integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== 1234 | dependencies: 1235 | escape-goat "^2.0.0" 1236 | 1237 | qs@6.7.0: 1238 | version "6.7.0" 1239 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" 1240 | integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== 1241 | 1242 | range-parser@~1.2.1: 1243 | version "1.2.1" 1244 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 1245 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 1246 | 1247 | raw-body@2.4.0: 1248 | version "2.4.0" 1249 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" 1250 | integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== 1251 | dependencies: 1252 | bytes "3.1.0" 1253 | http-errors "1.7.2" 1254 | iconv-lite "0.4.24" 1255 | unpipe "1.0.0" 1256 | 1257 | rc@^1.2.8: 1258 | version "1.2.8" 1259 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1260 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1261 | dependencies: 1262 | deep-extend "^0.6.0" 1263 | ini "~1.3.0" 1264 | minimist "^1.2.0" 1265 | strip-json-comments "~2.0.1" 1266 | 1267 | readdirp@~3.6.0: 1268 | version "3.6.0" 1269 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1270 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1271 | dependencies: 1272 | picomatch "^2.2.1" 1273 | 1274 | registry-auth-token@^4.0.0: 1275 | version "4.2.1" 1276 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" 1277 | integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== 1278 | dependencies: 1279 | rc "^1.2.8" 1280 | 1281 | registry-url@^5.0.0: 1282 | version "5.1.0" 1283 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 1284 | integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== 1285 | dependencies: 1286 | rc "^1.2.8" 1287 | 1288 | responselike@^1.0.2: 1289 | version "1.0.2" 1290 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 1291 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 1292 | dependencies: 1293 | lowercase-keys "^1.0.0" 1294 | 1295 | safe-buffer@5.1.2: 1296 | version "5.1.2" 1297 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1298 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1299 | 1300 | safe-buffer@^5.0.1: 1301 | version "5.2.1" 1302 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1303 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1304 | 1305 | "safer-buffer@>= 2.1.2 < 3": 1306 | version "2.1.2" 1307 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1308 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1309 | 1310 | semver-diff@^3.1.1: 1311 | version "3.1.1" 1312 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 1313 | integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== 1314 | dependencies: 1315 | semver "^6.3.0" 1316 | 1317 | semver@^5.7.1: 1318 | version "5.7.1" 1319 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1320 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1321 | 1322 | semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 1323 | version "6.3.0" 1324 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1325 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1326 | 1327 | send@0.17.1: 1328 | version "0.17.1" 1329 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" 1330 | integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== 1331 | dependencies: 1332 | debug "2.6.9" 1333 | depd "~1.1.2" 1334 | destroy "~1.0.4" 1335 | encodeurl "~1.0.2" 1336 | escape-html "~1.0.3" 1337 | etag "~1.8.1" 1338 | fresh "0.5.2" 1339 | http-errors "~1.7.2" 1340 | mime "1.6.0" 1341 | ms "2.1.1" 1342 | on-finished "~2.3.0" 1343 | range-parser "~1.2.1" 1344 | statuses "~1.5.0" 1345 | 1346 | serve-static@1.14.1: 1347 | version "1.14.1" 1348 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" 1349 | integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== 1350 | dependencies: 1351 | encodeurl "~1.0.2" 1352 | escape-html "~1.0.3" 1353 | parseurl "~1.3.3" 1354 | send "0.17.1" 1355 | 1356 | setprototypeof@1.1.1: 1357 | version "1.1.1" 1358 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 1359 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 1360 | 1361 | shebang-command@^2.0.0: 1362 | version "2.0.0" 1363 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1364 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1365 | dependencies: 1366 | shebang-regex "^3.0.0" 1367 | 1368 | shebang-regex@^3.0.0: 1369 | version "3.0.0" 1370 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1371 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1372 | 1373 | signal-exit@^3.0.2: 1374 | version "3.0.3" 1375 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1376 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1377 | 1378 | source-map-support@^0.5.17: 1379 | version "0.5.19" 1380 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 1381 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 1382 | dependencies: 1383 | buffer-from "^1.0.0" 1384 | source-map "^0.6.0" 1385 | 1386 | source-map@^0.6.0, source-map@^0.6.1: 1387 | version "0.6.1" 1388 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1389 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1390 | 1391 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 1392 | version "1.5.0" 1393 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 1394 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 1395 | 1396 | string-width@^3.0.0: 1397 | version "3.1.0" 1398 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1399 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1400 | dependencies: 1401 | emoji-regex "^7.0.1" 1402 | is-fullwidth-code-point "^2.0.0" 1403 | strip-ansi "^5.1.0" 1404 | 1405 | string-width@^4.0.0, string-width@^4.1.0: 1406 | version "4.2.2" 1407 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 1408 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 1409 | dependencies: 1410 | emoji-regex "^8.0.0" 1411 | is-fullwidth-code-point "^3.0.0" 1412 | strip-ansi "^6.0.0" 1413 | 1414 | strip-ansi@^5.1.0: 1415 | version "5.2.0" 1416 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1417 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1418 | dependencies: 1419 | ansi-regex "^4.1.0" 1420 | 1421 | strip-ansi@^6.0.0: 1422 | version "6.0.0" 1423 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1424 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1425 | dependencies: 1426 | ansi-regex "^5.0.0" 1427 | 1428 | strip-json-comments@~2.0.1: 1429 | version "2.0.1" 1430 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1431 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1432 | 1433 | supports-color@^5.5.0: 1434 | version "5.5.0" 1435 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1436 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1437 | dependencies: 1438 | has-flag "^3.0.0" 1439 | 1440 | supports-color@^7.1.0: 1441 | version "7.2.0" 1442 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1443 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1444 | dependencies: 1445 | has-flag "^4.0.0" 1446 | 1447 | term-size@^2.1.0: 1448 | version "2.2.1" 1449 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" 1450 | integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== 1451 | 1452 | to-readable-stream@^1.0.0: 1453 | version "1.0.0" 1454 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 1455 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 1456 | 1457 | to-regex-range@^5.0.1: 1458 | version "5.0.1" 1459 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1460 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1461 | dependencies: 1462 | is-number "^7.0.0" 1463 | 1464 | toidentifier@1.0.0: 1465 | version "1.0.0" 1466 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 1467 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 1468 | 1469 | touch@^3.1.0: 1470 | version "3.1.0" 1471 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 1472 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 1473 | dependencies: 1474 | nopt "~1.0.10" 1475 | 1476 | ts-node@^10.0.0: 1477 | version "10.0.0" 1478 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.0.0.tgz#05f10b9a716b0b624129ad44f0ea05dac84ba3be" 1479 | integrity sha512-ROWeOIUvfFbPZkoDis0L/55Fk+6gFQNZwwKPLinacRl6tsxstTF1DbAcLKkovwnpKMVvOMHP1TIbnwXwtLg1gg== 1480 | dependencies: 1481 | "@tsconfig/node10" "^1.0.7" 1482 | "@tsconfig/node12" "^1.0.7" 1483 | "@tsconfig/node14" "^1.0.0" 1484 | "@tsconfig/node16" "^1.0.1" 1485 | arg "^4.1.0" 1486 | create-require "^1.1.0" 1487 | diff "^4.0.1" 1488 | make-error "^1.1.1" 1489 | source-map-support "^0.5.17" 1490 | yn "3.1.1" 1491 | 1492 | type-fest@^0.8.1: 1493 | version "0.8.1" 1494 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1495 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1496 | 1497 | type-is@~1.6.17, type-is@~1.6.18: 1498 | version "1.6.18" 1499 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 1500 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 1501 | dependencies: 1502 | media-typer "0.3.0" 1503 | mime-types "~2.1.24" 1504 | 1505 | typedarray-to-buffer@^3.1.5: 1506 | version "3.1.5" 1507 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 1508 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 1509 | dependencies: 1510 | is-typedarray "^1.0.0" 1511 | 1512 | typescript@^4.3.2: 1513 | version "4.3.4" 1514 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.4.tgz#3f85b986945bcf31071decdd96cf8bfa65f9dcbc" 1515 | integrity sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew== 1516 | 1517 | uglify-js@^3.1.4: 1518 | version "3.13.10" 1519 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.10.tgz#a6bd0d28d38f592c3adb6b180ea6e07e1e540a8d" 1520 | integrity sha512-57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg== 1521 | 1522 | undefsafe@^2.0.3: 1523 | version "2.0.3" 1524 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" 1525 | integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A== 1526 | dependencies: 1527 | debug "^2.2.0" 1528 | 1529 | unique-string@^2.0.0: 1530 | version "2.0.0" 1531 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 1532 | integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== 1533 | dependencies: 1534 | crypto-random-string "^2.0.0" 1535 | 1536 | unpipe@1.0.0, unpipe@~1.0.0: 1537 | version "1.0.0" 1538 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 1539 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 1540 | 1541 | update-notifier@^4.1.0: 1542 | version "4.1.3" 1543 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3" 1544 | integrity sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A== 1545 | dependencies: 1546 | boxen "^4.2.0" 1547 | chalk "^3.0.0" 1548 | configstore "^5.0.1" 1549 | has-yarn "^2.1.0" 1550 | import-lazy "^2.1.0" 1551 | is-ci "^2.0.0" 1552 | is-installed-globally "^0.3.1" 1553 | is-npm "^4.0.0" 1554 | is-yarn-global "^0.3.0" 1555 | latest-version "^5.0.0" 1556 | pupa "^2.0.1" 1557 | semver-diff "^3.1.1" 1558 | xdg-basedir "^4.0.0" 1559 | 1560 | url-parse-lax@^3.0.0: 1561 | version "3.0.0" 1562 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 1563 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 1564 | dependencies: 1565 | prepend-http "^2.0.0" 1566 | 1567 | utils-merge@1.0.1: 1568 | version "1.0.1" 1569 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 1570 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 1571 | 1572 | vary@~1.1.2: 1573 | version "1.1.2" 1574 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 1575 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 1576 | 1577 | which@^2.0.1: 1578 | version "2.0.2" 1579 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1580 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1581 | dependencies: 1582 | isexe "^2.0.0" 1583 | 1584 | widest-line@^3.1.0: 1585 | version "3.1.0" 1586 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 1587 | integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 1588 | dependencies: 1589 | string-width "^4.0.0" 1590 | 1591 | wordwrap@^1.0.0: 1592 | version "1.0.0" 1593 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1594 | integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= 1595 | 1596 | wrappy@1: 1597 | version "1.0.2" 1598 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1599 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1600 | 1601 | write-file-atomic@^3.0.0: 1602 | version "3.0.3" 1603 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 1604 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 1605 | dependencies: 1606 | imurmurhash "^0.1.4" 1607 | is-typedarray "^1.0.0" 1608 | signal-exit "^3.0.2" 1609 | typedarray-to-buffer "^3.1.5" 1610 | 1611 | xdg-basedir@^4.0.0: 1612 | version "4.0.0" 1613 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 1614 | integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== 1615 | 1616 | yallist@^4.0.0: 1617 | version "4.0.0" 1618 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1619 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1620 | 1621 | yaml@^1.10.2: 1622 | version "1.10.2" 1623 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 1624 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 1625 | 1626 | yn@3.1.1: 1627 | version "3.1.1" 1628 | resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" 1629 | integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== 1630 | --------------------------------------------------------------------------------