├── .gitignore ├── client ├── .gitignore ├── README.md ├── codegen.yml ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── components │ │ ├── Home.tsx │ │ ├── Layout.tsx │ │ ├── Login.tsx │ │ ├── Profile.tsx │ │ └── Register.tsx │ ├── contexts │ │ └── AuthContext.tsx │ ├── generated │ │ └── graphql.tsx │ ├── graphql │ │ ├── mutations │ │ │ ├── login.graphql │ │ │ ├── logout.graphql │ │ │ └── register.graphql │ │ └── queries │ │ │ ├── hello.graphql │ │ │ └── users.graphql │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ └── utils │ │ └── jwt.ts ├── tsconfig.json └── yarn.lock └── server ├── .env.example ├── package.json ├── src ├── entities │ └── User.ts ├── index.ts ├── middleware │ └── checkAuth.ts ├── resolvers │ ├── greeting.ts │ └── user.ts ├── routes │ └── refreshTokenRouter.ts ├── types │ ├── Context.ts │ ├── LoginInput.ts │ ├── MutationResponse.ts │ ├── RegisterInput.ts │ ├── UserAuthPayload.ts │ └── UserMutationResponse.ts └── utils │ └── auth.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | server/node_modules 2 | server/.env 3 | server/dist -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `yarn start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will also see any lint errors in the console. 16 | 17 | ### `yarn test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `yarn build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `yarn eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 35 | 36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 39 | 40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | -------------------------------------------------------------------------------- /client/codegen.yml: -------------------------------------------------------------------------------- 1 | overwrite: true 2 | schema: "http://localhost:4000/graphql" 3 | documents: "src/graphql/**/*.graphql" 4 | generates: 5 | src/generated/graphql.tsx: 6 | plugins: 7 | - "typescript" 8 | - "typescript-operations" 9 | - "typescript-react-apollo" 10 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "client", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@apollo/client": "^3.5.8", 7 | "@testing-library/jest-dom": "^5.14.1", 8 | "@testing-library/react": "^12.0.0", 9 | "@testing-library/user-event": "^13.2.1", 10 | "@types/jest": "^27.0.1", 11 | "@types/node": "^16.7.13", 12 | "@types/react": "^17.0.20", 13 | "@types/react-dom": "^17.0.9", 14 | "graphql": "^16.3.0", 15 | "jwt-decode": "^3.1.2", 16 | "react": "^17.0.2", 17 | "react-dom": "^17.0.2", 18 | "react-router-dom": "^6.2.1", 19 | "react-scripts": "5.0.0", 20 | "typescript": "^4.4.2", 21 | "web-vitals": "^2.1.0" 22 | }, 23 | "scripts": { 24 | "start": "react-scripts start", 25 | "build": "react-scripts build", 26 | "test": "react-scripts test", 27 | "eject": "react-scripts eject", 28 | "codegen": "graphql-codegen --config codegen.yml" 29 | }, 30 | "eslintConfig": { 31 | "extends": [ 32 | "react-app", 33 | "react-app/jest" 34 | ] 35 | }, 36 | "browserslist": { 37 | "production": [ 38 | ">0.2%", 39 | "not dead", 40 | "not op_mini all" 41 | ], 42 | "development": [ 43 | "last 1 chrome version", 44 | "last 1 firefox version", 45 | "last 1 safari version" 46 | ] 47 | }, 48 | "devDependencies": { 49 | "@graphql-codegen/cli": "2.5.0", 50 | "@graphql-codegen/typescript": "2.4.3", 51 | "@graphql-codegen/typescript-operations": "2.2.4", 52 | "@graphql-codegen/typescript-react-apollo": "3.2.5" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/full-stack-jwt-auth-tutorial/49f3fa7aafcfa576970851388a6ce749e657a909/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/full-stack-jwt-auth-tutorial/49f3fa7aafcfa576970851388a6ce749e657a909/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpredrum136/full-stack-jwt-auth-tutorial/49f3fa7aafcfa576970851388a6ce749e657a909/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /client/src/App.test.tsx: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react' 2 | import App from './App' 3 | 4 | test('renders learn react link', () => { 5 | render() 6 | const linkElement = screen.getByText(/learn react/i) 7 | expect(linkElement).toBeInTheDocument() 8 | }) 9 | -------------------------------------------------------------------------------- /client/src/App.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from 'react' 2 | import { BrowserRouter, Route, Routes } from 'react-router-dom' 3 | import './App.css' 4 | import Home from './components/Home' 5 | import Layout from './components/Layout' 6 | import Login from './components/Login' 7 | import Profile from './components/Profile' 8 | import Register from './components/Register' 9 | import { useAuthContext } from './contexts/AuthContext' 10 | 11 | function App() { 12 | const [loading, setLoading] = useState(true) 13 | const { checkAuth } = useAuthContext() 14 | 15 | useEffect(() => { 16 | const authenticate = async () => { 17 | await checkAuth() 18 | setLoading(false) 19 | } 20 | 21 | authenticate() 22 | }, [checkAuth]) 23 | 24 | if (loading) return

LOADING....

25 | return ( 26 |
27 | 28 | 29 | }> 30 | } /> 31 | } /> 32 | } /> 33 | } /> 34 | 35 | 36 | 37 |
38 | ) 39 | } 40 | 41 | export default App 42 | -------------------------------------------------------------------------------- /client/src/components/Home.tsx: -------------------------------------------------------------------------------- 1 | import { useUsersQuery } from '../generated/graphql' 2 | 3 | const Home = () => { 4 | const { data, loading } = useUsersQuery({ fetchPolicy: 'no-cache' }) 5 | 6 | if (loading) return

Loading...

7 | 8 | return ( 9 | 14 | ) 15 | } 16 | 17 | export default Home 18 | -------------------------------------------------------------------------------- /client/src/components/Layout.tsx: -------------------------------------------------------------------------------- 1 | import { Link, Outlet } from 'react-router-dom' 2 | import { useAuthContext } from '../contexts/AuthContext' 3 | import { useLogoutMutation } from '../generated/graphql' 4 | import JWTManager from '../utils/jwt' 5 | 6 | const Layout = () => { 7 | const { isAuthenticated, logoutClient } = useAuthContext() 8 | const [logoutServer, _] = useLogoutMutation() 9 | 10 | const logout = async () => { 11 | logoutClient() 12 | 13 | await logoutServer({ 14 | variables: { userId: JWTManager.getUserId()?.toString() as string } 15 | }) 16 | } 17 | 18 | return ( 19 |
20 |

JWT AUTHENTICATION FULL STACK

21 | 30 | 31 |
32 | ) 33 | } 34 | 35 | export default Layout 36 | -------------------------------------------------------------------------------- /client/src/components/Login.tsx: -------------------------------------------------------------------------------- 1 | import { FormEvent, useState } from 'react' 2 | import { useNavigate } from 'react-router-dom' 3 | import { useAuthContext } from '../contexts/AuthContext' 4 | import { useLoginMutation } from '../generated/graphql' 5 | import JWTManager from '../utils/jwt' 6 | 7 | const Login = () => { 8 | const { setIsAuthenticated } = useAuthContext() 9 | const [username, setUsername] = useState('') 10 | const [password, setPassword] = useState('') 11 | const [error, setError] = useState('') 12 | const navigate = useNavigate() 13 | 14 | const [login, _] = useLoginMutation() 15 | 16 | const onSubmit = async (event: FormEvent) => { 17 | event.preventDefault() 18 | const response = await login({ 19 | variables: { loginInput: { username, password } } 20 | }) 21 | 22 | if (response.data?.login.success) { 23 | JWTManager.setToken(response.data.login.accessToken as string) 24 | setIsAuthenticated(true) 25 | navigate('..') 26 | } else { 27 | if (response.data?.login.message) setError(response.data.login.message) 28 | } 29 | } 30 | 31 | return ( 32 | <> 33 | {error &&

{error}

} 34 |
35 | setUsername(event.target.value)} 40 | /> 41 | setPassword(event.target.value)} 46 | /> 47 | 48 |
49 | 50 | ) 51 | } 52 | 53 | export default Login 54 | -------------------------------------------------------------------------------- /client/src/components/Profile.tsx: -------------------------------------------------------------------------------- 1 | import { useHelloQuery } from '../generated/graphql' 2 | 3 | const Profile = () => { 4 | const { data, error, loading } = useHelloQuery({ fetchPolicy: 'no-cache' }) 5 | 6 | if (loading) return

Loading ....

7 | 8 | if (error) 9 | return

Error: {JSON.stringify(error)}

10 | 11 | return

{data?.hello}

12 | } 13 | 14 | export default Profile 15 | -------------------------------------------------------------------------------- /client/src/components/Register.tsx: -------------------------------------------------------------------------------- 1 | import { FormEvent, useState } from 'react' 2 | import { useNavigate } from 'react-router-dom' 3 | import { useRegisterMutation } from '../generated/graphql' 4 | 5 | const Register = () => { 6 | const [username, setUsername] = useState('') 7 | const [password, setPassword] = useState('') 8 | const navigate = useNavigate() 9 | 10 | const [register, _] = useRegisterMutation() 11 | 12 | const onSubmit = async (event: FormEvent) => { 13 | event.preventDefault() 14 | await register({ variables: { registerInput: { username, password } } }) 15 | navigate('..') 16 | } 17 | 18 | return ( 19 |
20 | setUsername(event.target.value)} 25 | /> 26 | setPassword(event.target.value)} 31 | /> 32 | 33 |
34 | ) 35 | } 36 | 37 | export default Register 38 | -------------------------------------------------------------------------------- /client/src/contexts/AuthContext.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | useState, 3 | Dispatch, 4 | SetStateAction, 5 | createContext, 6 | ReactNode, 7 | useContext, 8 | useCallback 9 | } from 'react' 10 | import JWTManager from '../utils/jwt' 11 | 12 | interface IAuthContext { 13 | isAuthenticated: boolean 14 | setIsAuthenticated: Dispatch> 15 | checkAuth: () => Promise 16 | logoutClient: () => void 17 | } 18 | 19 | const defaultIsAuthenticated = false 20 | 21 | export const AuthContext = createContext({ 22 | isAuthenticated: defaultIsAuthenticated, 23 | setIsAuthenticated: () => {}, 24 | checkAuth: () => Promise.resolve(), 25 | logoutClient: () => {} 26 | }) 27 | 28 | export const useAuthContext = () => useContext(AuthContext) 29 | 30 | const AuthContextProvider = ({ children }: { children: ReactNode }) => { 31 | const [isAuthenticated, setIsAuthenticated] = useState(defaultIsAuthenticated) 32 | 33 | const checkAuth = useCallback(async () => { 34 | const token = JWTManager.getToken() 35 | 36 | if (token) setIsAuthenticated(true) 37 | else { 38 | const success = await JWTManager.getRefreshToken() 39 | if (success) setIsAuthenticated(true) 40 | } 41 | }, []) 42 | 43 | const logoutClient = () => { 44 | JWTManager.deleteToken() 45 | setIsAuthenticated(false) 46 | } 47 | 48 | const authContextData = { 49 | isAuthenticated, 50 | setIsAuthenticated, 51 | checkAuth, 52 | logoutClient 53 | } 54 | 55 | return ( 56 | 57 | {children}{' '} 58 | 59 | ) 60 | } 61 | 62 | export default AuthContextProvider 63 | -------------------------------------------------------------------------------- /client/src/generated/graphql.tsx: -------------------------------------------------------------------------------- 1 | import { gql } from '@apollo/client'; 2 | import * as Apollo from '@apollo/client'; 3 | export type Maybe = T | null; 4 | export type InputMaybe = Maybe; 5 | export type Exact = { [K in keyof T]: T[K] }; 6 | export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; 7 | export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; 8 | const defaultOptions = {} as const; 9 | /** All built-in and custom scalars, mapped to their actual values */ 10 | export type Scalars = { 11 | ID: string; 12 | String: string; 13 | Boolean: boolean; 14 | Int: number; 15 | Float: number; 16 | }; 17 | 18 | export type IMutationResponse = { 19 | code: Scalars['Float']; 20 | message?: Maybe; 21 | success: Scalars['Boolean']; 22 | }; 23 | 24 | export type LoginInput = { 25 | password: Scalars['String']; 26 | username: Scalars['String']; 27 | }; 28 | 29 | export type Mutation = { 30 | __typename?: 'Mutation'; 31 | login: UserMutationResponse; 32 | logout: UserMutationResponse; 33 | register: UserMutationResponse; 34 | }; 35 | 36 | 37 | export type MutationLoginArgs = { 38 | loginInput: LoginInput; 39 | }; 40 | 41 | 42 | export type MutationLogoutArgs = { 43 | userId: Scalars['ID']; 44 | }; 45 | 46 | 47 | export type MutationRegisterArgs = { 48 | registerInput: RegisterInput; 49 | }; 50 | 51 | export type Query = { 52 | __typename?: 'Query'; 53 | hello: Scalars['String']; 54 | users: Array; 55 | }; 56 | 57 | export type RegisterInput = { 58 | password: Scalars['String']; 59 | username: Scalars['String']; 60 | }; 61 | 62 | export type User = { 63 | __typename?: 'User'; 64 | id: Scalars['ID']; 65 | username: Scalars['String']; 66 | }; 67 | 68 | export type UserMutationResponse = IMutationResponse & { 69 | __typename?: 'UserMutationResponse'; 70 | accessToken?: Maybe; 71 | code: Scalars['Float']; 72 | message?: Maybe; 73 | success: Scalars['Boolean']; 74 | user?: Maybe; 75 | }; 76 | 77 | export type LoginMutationVariables = Exact<{ 78 | loginInput: LoginInput; 79 | }>; 80 | 81 | 82 | export type LoginMutation = { __typename?: 'Mutation', login: { __typename?: 'UserMutationResponse', code: number, success: boolean, message?: string | null, accessToken?: string | null } }; 83 | 84 | export type LogoutMutationVariables = Exact<{ 85 | userId: Scalars['ID']; 86 | }>; 87 | 88 | 89 | export type LogoutMutation = { __typename?: 'Mutation', logout: { __typename?: 'UserMutationResponse', code: number, success: boolean } }; 90 | 91 | export type RegisterMutationVariables = Exact<{ 92 | registerInput: RegisterInput; 93 | }>; 94 | 95 | 96 | export type RegisterMutation = { __typename?: 'Mutation', register: { __typename?: 'UserMutationResponse', code: number, success: boolean } }; 97 | 98 | export type HelloQueryVariables = Exact<{ [key: string]: never; }>; 99 | 100 | 101 | export type HelloQuery = { __typename?: 'Query', hello: string }; 102 | 103 | export type UsersQueryVariables = Exact<{ [key: string]: never; }>; 104 | 105 | 106 | export type UsersQuery = { __typename?: 'Query', users: Array<{ __typename?: 'User', id: string, username: string }> }; 107 | 108 | 109 | export const LoginDocument = gql` 110 | mutation Login($loginInput: LoginInput!) { 111 | login(loginInput: $loginInput) { 112 | code 113 | success 114 | message 115 | accessToken 116 | } 117 | } 118 | `; 119 | export type LoginMutationFn = Apollo.MutationFunction; 120 | 121 | /** 122 | * __useLoginMutation__ 123 | * 124 | * To run a mutation, you first call `useLoginMutation` within a React component and pass it any options that fit your needs. 125 | * When your component renders, `useLoginMutation` returns a tuple that includes: 126 | * - A mutate function that you can call at any time to execute the mutation 127 | * - An object with fields that represent the current status of the mutation's execution 128 | * 129 | * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; 130 | * 131 | * @example 132 | * const [loginMutation, { data, loading, error }] = useLoginMutation({ 133 | * variables: { 134 | * loginInput: // value for 'loginInput' 135 | * }, 136 | * }); 137 | */ 138 | export function useLoginMutation(baseOptions?: Apollo.MutationHookOptions) { 139 | const options = {...defaultOptions, ...baseOptions} 140 | return Apollo.useMutation(LoginDocument, options); 141 | } 142 | export type LoginMutationHookResult = ReturnType; 143 | export type LoginMutationResult = Apollo.MutationResult; 144 | export type LoginMutationOptions = Apollo.BaseMutationOptions; 145 | export const LogoutDocument = gql` 146 | mutation Logout($userId: ID!) { 147 | logout(userId: $userId) { 148 | code 149 | success 150 | } 151 | } 152 | `; 153 | export type LogoutMutationFn = Apollo.MutationFunction; 154 | 155 | /** 156 | * __useLogoutMutation__ 157 | * 158 | * To run a mutation, you first call `useLogoutMutation` within a React component and pass it any options that fit your needs. 159 | * When your component renders, `useLogoutMutation` returns a tuple that includes: 160 | * - A mutate function that you can call at any time to execute the mutation 161 | * - An object with fields that represent the current status of the mutation's execution 162 | * 163 | * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; 164 | * 165 | * @example 166 | * const [logoutMutation, { data, loading, error }] = useLogoutMutation({ 167 | * variables: { 168 | * userId: // value for 'userId' 169 | * }, 170 | * }); 171 | */ 172 | export function useLogoutMutation(baseOptions?: Apollo.MutationHookOptions) { 173 | const options = {...defaultOptions, ...baseOptions} 174 | return Apollo.useMutation(LogoutDocument, options); 175 | } 176 | export type LogoutMutationHookResult = ReturnType; 177 | export type LogoutMutationResult = Apollo.MutationResult; 178 | export type LogoutMutationOptions = Apollo.BaseMutationOptions; 179 | export const RegisterDocument = gql` 180 | mutation Register($registerInput: RegisterInput!) { 181 | register(registerInput: $registerInput) { 182 | code 183 | success 184 | } 185 | } 186 | `; 187 | export type RegisterMutationFn = Apollo.MutationFunction; 188 | 189 | /** 190 | * __useRegisterMutation__ 191 | * 192 | * To run a mutation, you first call `useRegisterMutation` within a React component and pass it any options that fit your needs. 193 | * When your component renders, `useRegisterMutation` returns a tuple that includes: 194 | * - A mutate function that you can call at any time to execute the mutation 195 | * - An object with fields that represent the current status of the mutation's execution 196 | * 197 | * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; 198 | * 199 | * @example 200 | * const [registerMutation, { data, loading, error }] = useRegisterMutation({ 201 | * variables: { 202 | * registerInput: // value for 'registerInput' 203 | * }, 204 | * }); 205 | */ 206 | export function useRegisterMutation(baseOptions?: Apollo.MutationHookOptions) { 207 | const options = {...defaultOptions, ...baseOptions} 208 | return Apollo.useMutation(RegisterDocument, options); 209 | } 210 | export type RegisterMutationHookResult = ReturnType; 211 | export type RegisterMutationResult = Apollo.MutationResult; 212 | export type RegisterMutationOptions = Apollo.BaseMutationOptions; 213 | export const HelloDocument = gql` 214 | query Hello { 215 | hello 216 | } 217 | `; 218 | 219 | /** 220 | * __useHelloQuery__ 221 | * 222 | * To run a query within a React component, call `useHelloQuery` and pass it any options that fit your needs. 223 | * When your component renders, `useHelloQuery` returns an object from Apollo Client that contains loading, error, and data properties 224 | * you can use to render your UI. 225 | * 226 | * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; 227 | * 228 | * @example 229 | * const { data, loading, error } = useHelloQuery({ 230 | * variables: { 231 | * }, 232 | * }); 233 | */ 234 | export function useHelloQuery(baseOptions?: Apollo.QueryHookOptions) { 235 | const options = {...defaultOptions, ...baseOptions} 236 | return Apollo.useQuery(HelloDocument, options); 237 | } 238 | export function useHelloLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { 239 | const options = {...defaultOptions, ...baseOptions} 240 | return Apollo.useLazyQuery(HelloDocument, options); 241 | } 242 | export type HelloQueryHookResult = ReturnType; 243 | export type HelloLazyQueryHookResult = ReturnType; 244 | export type HelloQueryResult = Apollo.QueryResult; 245 | export const UsersDocument = gql` 246 | query Users { 247 | users { 248 | id 249 | username 250 | } 251 | } 252 | `; 253 | 254 | /** 255 | * __useUsersQuery__ 256 | * 257 | * To run a query within a React component, call `useUsersQuery` and pass it any options that fit your needs. 258 | * When your component renders, `useUsersQuery` returns an object from Apollo Client that contains loading, error, and data properties 259 | * you can use to render your UI. 260 | * 261 | * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; 262 | * 263 | * @example 264 | * const { data, loading, error } = useUsersQuery({ 265 | * variables: { 266 | * }, 267 | * }); 268 | */ 269 | export function useUsersQuery(baseOptions?: Apollo.QueryHookOptions) { 270 | const options = {...defaultOptions, ...baseOptions} 271 | return Apollo.useQuery(UsersDocument, options); 272 | } 273 | export function useUsersLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { 274 | const options = {...defaultOptions, ...baseOptions} 275 | return Apollo.useLazyQuery(UsersDocument, options); 276 | } 277 | export type UsersQueryHookResult = ReturnType; 278 | export type UsersLazyQueryHookResult = ReturnType; 279 | export type UsersQueryResult = Apollo.QueryResult; -------------------------------------------------------------------------------- /client/src/graphql/mutations/login.graphql: -------------------------------------------------------------------------------- 1 | mutation Login($loginInput: LoginInput!) { 2 | login(loginInput: $loginInput) { 3 | code 4 | success 5 | message 6 | accessToken 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /client/src/graphql/mutations/logout.graphql: -------------------------------------------------------------------------------- 1 | mutation Logout($userId: ID!) { 2 | logout(userId: $userId) { 3 | code 4 | success 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/src/graphql/mutations/register.graphql: -------------------------------------------------------------------------------- 1 | mutation Register($registerInput: RegisterInput!) { 2 | register(registerInput: $registerInput) { 3 | code 4 | success 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/src/graphql/queries/hello.graphql: -------------------------------------------------------------------------------- 1 | query Hello { 2 | hello 3 | } 4 | -------------------------------------------------------------------------------- /client/src/graphql/queries/users.graphql: -------------------------------------------------------------------------------- 1 | query Users { 2 | users { 3 | id 4 | username 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /client/src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ReactDOM from 'react-dom' 3 | import './index.css' 4 | import App from './App' 5 | import reportWebVitals from './reportWebVitals' 6 | import { 7 | ApolloClient, 8 | ApolloProvider, 9 | createHttpLink, 10 | InMemoryCache 11 | } from '@apollo/client' 12 | import { setContext } from '@apollo/client/link/context' 13 | import JWTManager from './utils/jwt' 14 | import AuthContextProvider from './contexts/AuthContext' 15 | 16 | const httpLink = createHttpLink({ 17 | uri: 'http://localhost:4000/graphql', 18 | credentials: 'include' 19 | }) 20 | 21 | const authLink = setContext((_, { headers }) => { 22 | // get the authentication token from JWTManager if it exists 23 | const token = JWTManager.getToken() 24 | // return the headers to the context so httpLink can read them 25 | return { 26 | headers: { 27 | ...headers, 28 | authorization: token ? `Bearer ${token}` : '' 29 | } 30 | } 31 | }) 32 | 33 | const client = new ApolloClient({ 34 | link: authLink.concat(httpLink), 35 | cache: new InMemoryCache() 36 | }) 37 | 38 | ReactDOM.render( 39 | 40 | 41 | 42 | 43 | 44 | 45 | , 46 | document.getElementById('root') 47 | ) 48 | 49 | // If you want to start measuring performance in your app, pass a function 50 | // to log results (for example: reportWebVitals(console.log)) 51 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 52 | reportWebVitals() 53 | -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /client/src/reportWebVitals.ts: -------------------------------------------------------------------------------- 1 | import { ReportHandler } from 'web-vitals'; 2 | 3 | const reportWebVitals = (onPerfEntry?: ReportHandler) => { 4 | if (onPerfEntry && onPerfEntry instanceof Function) { 5 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 6 | getCLS(onPerfEntry); 7 | getFID(onPerfEntry); 8 | getFCP(onPerfEntry); 9 | getLCP(onPerfEntry); 10 | getTTFB(onPerfEntry); 11 | }); 12 | } 13 | }; 14 | 15 | export default reportWebVitals; 16 | -------------------------------------------------------------------------------- /client/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /client/src/utils/jwt.ts: -------------------------------------------------------------------------------- 1 | import jwtDecode, { JwtPayload } from 'jwt-decode' 2 | 3 | const JWTManager = () => { 4 | const LOGOUT_EVENT_NAME = 'jwt-logout' 5 | 6 | let inMemoryToken: string | null = null 7 | let refreshTokenTimeoutId: number | null = null 8 | let userId: number | null = null 9 | 10 | const getToken = () => inMemoryToken 11 | 12 | const getUserId = () => userId 13 | 14 | const setToken = (accessToken: string) => { 15 | inMemoryToken = accessToken 16 | 17 | // Decode and set countdown to refresh 18 | const decoded = jwtDecode(accessToken) 19 | userId = decoded.userId 20 | setRefreshTokenTimeout((decoded.exp as number) - (decoded.iat as number)) 21 | return true 22 | } 23 | 24 | const abortRefreshToken = () => { 25 | if (refreshTokenTimeoutId) window.clearTimeout(refreshTokenTimeoutId) 26 | } 27 | 28 | const deleteToken = () => { 29 | inMemoryToken = null 30 | abortRefreshToken() 31 | window.localStorage.setItem(LOGOUT_EVENT_NAME, Date.now().toString()) 32 | return true 33 | } 34 | 35 | // To logout all tabs (nullify inMemoryToken) 36 | window.addEventListener('storage', event => { 37 | if (event.key === LOGOUT_EVENT_NAME) inMemoryToken = null 38 | }) 39 | 40 | const getRefreshToken = async () => { 41 | try { 42 | const response = await fetch('http://localhost:4000/refresh_token', { 43 | credentials: 'include' 44 | }) 45 | const data = (await response.json()) as { 46 | success: boolean 47 | accessToken: string 48 | } 49 | 50 | setToken(data.accessToken) 51 | return true 52 | } catch (error) { 53 | console.log('UNAUTHENTICATED', error) 54 | deleteToken() 55 | return false 56 | } 57 | } 58 | 59 | const setRefreshTokenTimeout = (delay: number) => { 60 | // 5s before token expires 61 | refreshTokenTimeoutId = window.setTimeout( 62 | getRefreshToken, 63 | delay * 1000 - 5000 64 | ) 65 | } 66 | 67 | return { getToken, setToken, getRefreshToken, deleteToken, getUserId } 68 | } 69 | 70 | export default JWTManager() 71 | -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "esModuleInterop": true, 8 | "allowSyntheticDefaultImports": true, 9 | "strict": true, 10 | "forceConsistentCasingInFileNames": true, 11 | "noFallthroughCasesInSwitch": true, 12 | "module": "esnext", 13 | "moduleResolution": "node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "react-jsx", 18 | "noImplicitAny": true, 19 | "strictNullChecks": true, 20 | "strictFunctionTypes": true, 21 | "noImplicitThis": true, 22 | "noUnusedLocals": true, 23 | "noUnusedParameters": true, 24 | "noImplicitReturns": true 25 | }, 26 | "include": ["src"] 27 | } 28 | -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- 1 | DB_USERNAME=postgres 2 | DB_PASSWORD=yourpassword 3 | ACCESS_TOKEN_SECRET=youraccesstokensecret 4 | REFRESH_TOKEN_SECRET=yourrefreshtokensecret 5 | REFRESH_TOKEN_COOKIE_NAME=jwt-auth-cookie-name -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "build": "rm -rf dist && tsc", 8 | "start": "node dist/index.js", 9 | "server": "nodemon dist/index.js", 10 | "watch": "tsc -w" 11 | }, 12 | "dependencies": { 13 | "apollo-server-core": "^3.6.2", 14 | "apollo-server-express": "^3.6.2", 15 | "argon2": "^0.28.3", 16 | "class-validator": "^0.13.2", 17 | "cookie-parser": "^1.4.6", 18 | "cors": "^2.8.5", 19 | "dotenv": "^14.3.2", 20 | "express": "^4.17.2", 21 | "graphql": "^15.8.0", 22 | "jsonwebtoken": "^8.5.1", 23 | "pg": "^8.7.1", 24 | "reflect-metadata": "^0.1.13", 25 | "type-graphql": "^1.1.1", 26 | "typeorm": "^0.2.41" 27 | }, 28 | "devDependencies": { 29 | "@types/cookie-parser": "^1.4.2", 30 | "@types/cors": "^2.8.12", 31 | "@types/express": "^4.17.13", 32 | "@types/jsonwebtoken": "^8.5.8", 33 | "@types/node": "^17.0.13", 34 | "nodemon": "^2.0.15", 35 | "typescript": "^4.5.5" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /server/src/entities/User.ts: -------------------------------------------------------------------------------- 1 | import { Field, ID, ObjectType } from 'type-graphql' 2 | import { BaseEntity, Column, Entity, PrimaryGeneratedColumn } from 'typeorm' 3 | 4 | @ObjectType() 5 | @Entity() 6 | export class User extends BaseEntity { 7 | @Field(_type => ID) 8 | @PrimaryGeneratedColumn() 9 | id!: number 10 | 11 | @Field() 12 | @Column({ unique: true }) 13 | username!: string 14 | 15 | @Column() 16 | password!: string 17 | 18 | @Column({ default: 0 }) 19 | tokenVersion: number 20 | } 21 | -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- 1 | require('dotenv').config() 2 | import 'reflect-metadata' 3 | import express from 'express' 4 | import { createConnection } from 'typeorm' 5 | import { User } from './entities/User' 6 | import { createServer } from 'http' 7 | import { ApolloServer } from 'apollo-server-express' 8 | import { buildSchema } from 'type-graphql' 9 | import { 10 | ApolloServerPluginDrainHttpServer, 11 | ApolloServerPluginLandingPageGraphQLPlayground 12 | } from 'apollo-server-core' 13 | import { GreetingResolver } from './resolvers/greeting' 14 | import { UserResolver } from './resolvers/user' 15 | import { Context } from './types/Context' 16 | import refreshTokenRouter from './routes/refreshTokenRouter' 17 | import cookieParser from 'cookie-parser' 18 | import cors from 'cors' 19 | 20 | const main = async () => { 21 | await createConnection({ 22 | type: 'postgres', 23 | database: 'jwt-auth-tut', 24 | username: process.env.DB_USERNAME, 25 | password: process.env.DB_PASSWORD, 26 | logging: true, 27 | synchronize: true, 28 | entities: [User] 29 | }) 30 | 31 | const app = express() 32 | 33 | app.use(cors({ origin: 'http://localhost:3000', credentials: true })) 34 | app.use(cookieParser()) 35 | 36 | app.use('/refresh_token', refreshTokenRouter) 37 | 38 | const httpServer = createServer(app) 39 | 40 | const apolloServer = new ApolloServer({ 41 | schema: await buildSchema({ 42 | validate: false, 43 | resolvers: [GreetingResolver, UserResolver] 44 | }), 45 | plugins: [ 46 | ApolloServerPluginDrainHttpServer({ httpServer }), 47 | ApolloServerPluginLandingPageGraphQLPlayground 48 | ], 49 | context: ({ req, res }): Pick => ({ req, res }) 50 | }) 51 | 52 | await apolloServer.start() 53 | 54 | apolloServer.applyMiddleware({ 55 | app, 56 | cors: { origin: 'http://localhost:3000', credentials: true } 57 | }) 58 | 59 | const PORT = process.env.PORT || 4000 60 | 61 | await new Promise(resolve => 62 | httpServer.listen({ port: PORT }, resolve as () => void) 63 | ) 64 | 65 | // Typically, http://localhost:4000/graphql 66 | console.log( 67 | `SERVER STARTED ON PORT ${PORT}. GRAPHQL ENDPOINT ON http://localhost:${PORT}${apolloServer.graphqlPath}` 68 | ) 69 | } 70 | 71 | main().catch(error => console.log('ERROR STARTING SERVER: ', error)) 72 | -------------------------------------------------------------------------------- /server/src/middleware/checkAuth.ts: -------------------------------------------------------------------------------- 1 | import { AuthenticationError } from 'apollo-server-express' 2 | import { Secret, verify } from 'jsonwebtoken' 3 | import { MiddlewareFn } from 'type-graphql' 4 | import { Context } from '../types/Context' 5 | import { UserAuthPayload } from '../types/UserAuthPayload' 6 | 7 | export const checkAuth: MiddlewareFn = ({ context }, next) => { 8 | try { 9 | // authHeader here is "Bearer accessToken" 10 | const authHeader = context.req.header('Authorization') 11 | const accessToken = authHeader && authHeader.split(' ')[1] 12 | 13 | if (!accessToken) 14 | throw new AuthenticationError( 15 | 'Not authenticated to perform GraphQL operations' 16 | ) 17 | 18 | const decodedUser = verify( 19 | accessToken, 20 | process.env.ACCESS_TOKEN_SECRET as Secret 21 | ) as UserAuthPayload 22 | 23 | context.user = decodedUser 24 | 25 | return next() 26 | } catch (error) { 27 | throw new AuthenticationError( 28 | `Error authenticating user, ${JSON.stringify(error)}` 29 | ) 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /server/src/resolvers/greeting.ts: -------------------------------------------------------------------------------- 1 | import { checkAuth } from '../middleware/checkAuth' 2 | import { Ctx, Query, Resolver, UseMiddleware } from 'type-graphql' 3 | import { Context } from '../types/Context' 4 | import { User } from '../entities/User' 5 | 6 | @Resolver() 7 | export class GreetingResolver { 8 | @Query(_return => String) 9 | @UseMiddleware(checkAuth) 10 | async hello(@Ctx() { user }: Context): Promise { 11 | const existingUser = await User.findOne(user.userId) 12 | return `Hello ${existingUser ? existingUser.username : 'World'}` 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /server/src/resolvers/user.ts: -------------------------------------------------------------------------------- 1 | import { RegisterInput } from '../types/RegisterInput' 2 | import { Arg, Ctx, ID, Mutation, Query, Resolver } from 'type-graphql' 3 | import { User } from '../entities/User' 4 | import argon2 from 'argon2' 5 | import { UserMutationResponse } from '../types/UserMutationResponse' 6 | import { LoginInput } from '../types/LoginInput' 7 | import { createToken, sendRefreshToken } from '../utils/auth' 8 | import { Context } from '../types/Context' 9 | 10 | @Resolver() 11 | export class UserResolver { 12 | @Query(_return => [User]) 13 | async users(): Promise { 14 | return await User.find() 15 | } 16 | 17 | @Mutation(_return => UserMutationResponse) 18 | async register( 19 | @Arg('registerInput') 20 | registerInput: RegisterInput 21 | ): Promise { 22 | const { username, password } = registerInput 23 | 24 | const existingUser = await User.findOne({ username }) 25 | 26 | if (existingUser) { 27 | return { 28 | code: 400, 29 | success: false, 30 | message: 'Duplicated username' 31 | } 32 | } 33 | 34 | const hashedPassword = await argon2.hash(password) 35 | 36 | const newUser = User.create({ 37 | username, 38 | password: hashedPassword 39 | }) 40 | 41 | await newUser.save() 42 | 43 | return { 44 | code: 200, 45 | success: true, 46 | message: 'User registration successful', 47 | user: newUser 48 | } 49 | } 50 | 51 | @Mutation(_return => UserMutationResponse) 52 | async login( 53 | @Arg('loginInput') { username, password }: LoginInput, 54 | @Ctx() { res }: Context 55 | ): Promise { 56 | const existingUser = await User.findOne({ username }) 57 | 58 | if (!existingUser) { 59 | return { 60 | code: 400, 61 | success: false, 62 | message: 'User not found' 63 | } 64 | } 65 | 66 | const isPasswordValid = await argon2.verify(existingUser.password, password) 67 | 68 | if (!isPasswordValid) { 69 | return { 70 | code: 400, 71 | success: false, 72 | message: 'Incorrect password' 73 | } 74 | } 75 | 76 | sendRefreshToken(res, existingUser) 77 | 78 | return { 79 | code: 200, 80 | success: true, 81 | message: 'Logged in successfully', 82 | user: existingUser, 83 | accessToken: createToken('accessToken', existingUser) 84 | } 85 | } 86 | 87 | @Mutation(_return => UserMutationResponse) 88 | async logout( 89 | @Arg('userId', _type => ID) userId: number, 90 | @Ctx() { res }: Context 91 | ): Promise { 92 | const existingUser = await User.findOne(userId) 93 | 94 | if (!existingUser) { 95 | return { 96 | code: 400, 97 | success: false 98 | } 99 | } 100 | 101 | existingUser.tokenVersion += 1 102 | 103 | await existingUser.save() 104 | 105 | res.clearCookie(process.env.REFRESH_TOKEN_COOKIE_NAME as string, { 106 | httpOnly: true, 107 | secure: true, 108 | sameSite: 'lax', 109 | path: '/refresh_token' 110 | }) 111 | 112 | return { code: 200, success: true } 113 | } 114 | } 115 | -------------------------------------------------------------------------------- /server/src/routes/refreshTokenRouter.ts: -------------------------------------------------------------------------------- 1 | import { Secret, verify } from 'jsonwebtoken' 2 | import express from 'express' 3 | import { UserAuthPayload } from '../types/UserAuthPayload' 4 | import { User } from '../entities/User' 5 | import { createToken, sendRefreshToken } from '../utils/auth' 6 | 7 | const router = express.Router() 8 | 9 | router.get('/', async (req, res) => { 10 | const refreshToken = 11 | req.cookies[process.env.REFRESH_TOKEN_COOKIE_NAME as string] 12 | 13 | if (!refreshToken) return res.sendStatus(401) 14 | 15 | try { 16 | const decodedUser = verify( 17 | refreshToken, 18 | process.env.REFRESH_TOKEN_SECRET as Secret 19 | ) as UserAuthPayload 20 | 21 | const existingUser = await User.findOne(decodedUser.userId) 22 | 23 | if ( 24 | !existingUser || 25 | existingUser.tokenVersion !== decodedUser.tokenVersion 26 | ) { 27 | return res.sendStatus(401) 28 | } 29 | 30 | sendRefreshToken(res, existingUser) 31 | 32 | return res.json({ 33 | success: true, 34 | accessToken: createToken('accessToken', existingUser) 35 | }) 36 | } catch (error) { 37 | console.log('ERROR REFRESHING TOKEN', error) 38 | return res.sendStatus(403) 39 | } 40 | }) 41 | 42 | export default router 43 | -------------------------------------------------------------------------------- /server/src/types/Context.ts: -------------------------------------------------------------------------------- 1 | import { Request, Response } from 'express' 2 | import { UserAuthPayload } from './UserAuthPayload' 3 | 4 | export interface Context { 5 | req: Request 6 | res: Response 7 | user: UserAuthPayload 8 | } 9 | -------------------------------------------------------------------------------- /server/src/types/LoginInput.ts: -------------------------------------------------------------------------------- 1 | import { Field, InputType } from 'type-graphql' 2 | 3 | @InputType() 4 | export class LoginInput { 5 | @Field() 6 | username: string 7 | 8 | @Field() 9 | password: string 10 | } 11 | -------------------------------------------------------------------------------- /server/src/types/MutationResponse.ts: -------------------------------------------------------------------------------- 1 | import { Field, InterfaceType } from 'type-graphql' 2 | 3 | @InterfaceType() 4 | export abstract class IMutationResponse { 5 | @Field() 6 | code: number 7 | 8 | @Field() 9 | success: boolean 10 | 11 | @Field({ nullable: true }) 12 | message?: string 13 | } 14 | -------------------------------------------------------------------------------- /server/src/types/RegisterInput.ts: -------------------------------------------------------------------------------- 1 | import { Field, InputType } from 'type-graphql' 2 | 3 | @InputType() 4 | export class RegisterInput { 5 | @Field() 6 | username: string 7 | 8 | @Field() 9 | password: string 10 | } 11 | -------------------------------------------------------------------------------- /server/src/types/UserAuthPayload.ts: -------------------------------------------------------------------------------- 1 | import { JwtPayload } from 'jsonwebtoken' 2 | 3 | export type UserAuthPayload = JwtPayload & { 4 | userId: number 5 | tokenVersion: number 6 | } 7 | -------------------------------------------------------------------------------- /server/src/types/UserMutationResponse.ts: -------------------------------------------------------------------------------- 1 | import { Field, ObjectType } from 'type-graphql' 2 | import { User } from '../entities/User' 3 | import { IMutationResponse } from './MutationResponse' 4 | 5 | @ObjectType({ implements: IMutationResponse }) 6 | export class UserMutationResponse implements IMutationResponse { 7 | code: number 8 | success: boolean 9 | message?: string 10 | 11 | @Field({ nullable: true }) 12 | user?: User 13 | 14 | @Field({ nullable: true }) 15 | accessToken?: string 16 | } 17 | -------------------------------------------------------------------------------- /server/src/utils/auth.ts: -------------------------------------------------------------------------------- 1 | import { Response } from 'express' 2 | import { Secret, sign } from 'jsonwebtoken' 3 | import { User } from '../entities/User' 4 | 5 | export const createToken = (type: 'accessToken' | 'refreshToken', user: User) => 6 | sign( 7 | { 8 | userId: user.id, 9 | ...(type === 'refreshToken' ? { tokenVersion: user.tokenVersion } : {}) 10 | }, 11 | type === 'accessToken' 12 | ? (process.env.ACCESS_TOKEN_SECRET as Secret) 13 | : (process.env.REFRESH_TOKEN_SECRET as Secret), 14 | { 15 | expiresIn: type === 'accessToken' ? '15s' : '60m' 16 | } 17 | ) 18 | 19 | export const sendRefreshToken = (res: Response, user: User) => { 20 | res.cookie( 21 | process.env.REFRESH_TOKEN_COOKIE_NAME as string, 22 | createToken('refreshToken', user), 23 | { 24 | httpOnly: true, 25 | secure: true, 26 | sameSite: 'lax', 27 | path: '/refresh_token' 28 | } 29 | ) 30 | } 31 | -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2017", 4 | "module": "commonjs", 5 | "lib": ["dom", "es6", "es2017", "esnext.asynciterable"], 6 | "skipLibCheck": true, 7 | "sourceMap": true, 8 | "outDir": "./dist", 9 | "moduleResolution": "node", 10 | "removeComments": true, 11 | "noImplicitAny": true, 12 | "strictNullChecks": true, 13 | "strictFunctionTypes": true, 14 | "noImplicitThis": true, 15 | "noUnusedLocals": true, 16 | "noUnusedParameters": true, 17 | "noImplicitReturns": true, 18 | "noFallthroughCasesInSwitch": true, 19 | "allowSyntheticDefaultImports": true, 20 | "esModuleInterop": true, 21 | "emitDecoratorMetadata": true, 22 | "experimentalDecorators": true, 23 | "resolveJsonModule": true, 24 | "baseUrl": "." 25 | }, 26 | "exclude": ["node_modules"], 27 | "include": ["./src/**/*.ts"] 28 | } 29 | -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@apollo/protobufjs@1.2.2": 6 | version "1.2.2" 7 | resolved "https://registry.yarnpkg.com/@apollo/protobufjs/-/protobufjs-1.2.2.tgz#4bd92cd7701ccaef6d517cdb75af2755f049f87c" 8 | integrity sha512-vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ== 9 | dependencies: 10 | "@protobufjs/aspromise" "^1.1.2" 11 | "@protobufjs/base64" "^1.1.2" 12 | "@protobufjs/codegen" "^2.0.4" 13 | "@protobufjs/eventemitter" "^1.1.0" 14 | "@protobufjs/fetch" "^1.1.0" 15 | "@protobufjs/float" "^1.0.2" 16 | "@protobufjs/inquire" "^1.1.0" 17 | "@protobufjs/path" "^1.1.2" 18 | "@protobufjs/pool" "^1.1.0" 19 | "@protobufjs/utf8" "^1.1.0" 20 | "@types/long" "^4.0.0" 21 | "@types/node" "^10.1.0" 22 | long "^4.0.0" 23 | 24 | "@apollographql/apollo-tools@^0.5.1": 25 | version "0.5.2" 26 | resolved "https://registry.yarnpkg.com/@apollographql/apollo-tools/-/apollo-tools-0.5.2.tgz#01750a655731a198c3634ee819c463254a7c7767" 27 | integrity sha512-KxZiw0Us3k1d0YkJDhOpVH5rJ+mBfjXcgoRoCcslbgirjgLotKMzOcx4PZ7YTEvvEROmvG7X3Aon41GvMmyGsw== 28 | 29 | "@apollographql/graphql-playground-html@1.6.29": 30 | version "1.6.29" 31 | resolved "https://registry.yarnpkg.com/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz#a7a646614a255f62e10dcf64a7f68ead41dec453" 32 | integrity sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA== 33 | dependencies: 34 | xss "^1.0.8" 35 | 36 | "@graphql-tools/merge@^8.2.1": 37 | version "8.2.1" 38 | resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.2.1.tgz#bf83aa06a0cfc6a839e52a58057a84498d0d51ff" 39 | integrity sha512-Q240kcUszhXiAYudjuJgNuLgy9CryDP3wp83NOZQezfA6h3ByYKU7xI6DiKrdjyVaGpYN3ppUmdj0uf5GaXzMA== 40 | dependencies: 41 | "@graphql-tools/utils" "^8.5.1" 42 | tslib "~2.3.0" 43 | 44 | "@graphql-tools/mock@^8.1.2": 45 | version "8.5.1" 46 | resolved "https://registry.yarnpkg.com/@graphql-tools/mock/-/mock-8.5.1.tgz#379d18eafdcb65486beb8f9247b33b7b693c53aa" 47 | integrity sha512-cwwqGs9Rofev1JdMheAseqM/rw1uw4CYb35vv3Kcv2bbyiPF+490xdlHqFeIazceotMFxC60LlQztwb64rsEnw== 48 | dependencies: 49 | "@graphql-tools/schema" "^8.3.1" 50 | "@graphql-tools/utils" "^8.6.0" 51 | fast-json-stable-stringify "^2.1.0" 52 | tslib "~2.3.0" 53 | 54 | "@graphql-tools/schema@^8.0.0", "@graphql-tools/schema@^8.3.1": 55 | version "8.3.1" 56 | resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.3.1.tgz#1ee9da494d2da457643b3c93502b94c3c4b68c74" 57 | integrity sha512-3R0AJFe715p4GwF067G5i0KCr/XIdvSfDLvTLEiTDQ8V/hwbOHEKHKWlEBHGRQwkG5lwFQlW1aOn7VnlPERnWQ== 58 | dependencies: 59 | "@graphql-tools/merge" "^8.2.1" 60 | "@graphql-tools/utils" "^8.5.1" 61 | tslib "~2.3.0" 62 | value-or-promise "1.0.11" 63 | 64 | "@graphql-tools/utils@^8.5.1", "@graphql-tools/utils@^8.6.0": 65 | version "8.6.1" 66 | resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.6.1.tgz#52c7eb108f2ca2fd01bdba8eef85077ead1bf882" 67 | integrity sha512-uxcfHCocp4ENoIiovPxUWZEHOnbXqj3ekWc0rm7fUhW93a1xheARNHcNKhwMTR+UKXVJbTFQdGI1Rl5XdyvDBg== 68 | dependencies: 69 | tslib "~2.3.0" 70 | 71 | "@josephg/resolvable@^1.0.0": 72 | version "1.0.1" 73 | resolved "https://registry.yarnpkg.com/@josephg/resolvable/-/resolvable-1.0.1.tgz#69bc4db754d79e1a2f17a650d3466e038d94a5eb" 74 | integrity sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg== 75 | 76 | "@mapbox/node-pre-gyp@^1.0.7": 77 | version "1.0.8" 78 | resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.8.tgz#32abc8a5c624bc4e46c43d84dfb8b26d33a96f58" 79 | integrity sha512-CMGKi28CF+qlbXh26hDe6NxCd7amqeAzEqnS6IHeO6LoaKyM/n+Xw3HT1COdq8cuioOdlKdqn/hCmqPUOMOywg== 80 | dependencies: 81 | detect-libc "^1.0.3" 82 | https-proxy-agent "^5.0.0" 83 | make-dir "^3.1.0" 84 | node-fetch "^2.6.5" 85 | nopt "^5.0.0" 86 | npmlog "^5.0.1" 87 | rimraf "^3.0.2" 88 | semver "^7.3.5" 89 | tar "^6.1.11" 90 | 91 | "@phc/format@^1.0.0": 92 | version "1.0.0" 93 | resolved "https://registry.yarnpkg.com/@phc/format/-/format-1.0.0.tgz#b5627003b3216dc4362125b13f48a4daa76680e4" 94 | integrity sha512-m7X9U6BG2+J+R1lSOdCiITLLrxm+cWlNI3HUFA92oLO77ObGNzaKdh8pMLqdZcshtkKuV84olNNXDfMc4FezBQ== 95 | 96 | "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": 97 | version "1.1.2" 98 | resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf" 99 | integrity sha1-m4sMxmPWaafY9vXQiToU00jzD78= 100 | 101 | "@protobufjs/base64@^1.1.2": 102 | version "1.1.2" 103 | resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735" 104 | integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg== 105 | 106 | "@protobufjs/codegen@^2.0.4": 107 | version "2.0.4" 108 | resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb" 109 | integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg== 110 | 111 | "@protobufjs/eventemitter@^1.1.0": 112 | version "1.1.0" 113 | resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70" 114 | integrity sha1-NVy8mLr61ZePntCV85diHx0Ga3A= 115 | 116 | "@protobufjs/fetch@^1.1.0": 117 | version "1.1.0" 118 | resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45" 119 | integrity sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU= 120 | dependencies: 121 | "@protobufjs/aspromise" "^1.1.1" 122 | "@protobufjs/inquire" "^1.1.0" 123 | 124 | "@protobufjs/float@^1.0.2": 125 | version "1.0.2" 126 | resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1" 127 | integrity sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E= 128 | 129 | "@protobufjs/inquire@^1.1.0": 130 | version "1.1.0" 131 | resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089" 132 | integrity sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik= 133 | 134 | "@protobufjs/path@^1.1.2": 135 | version "1.1.2" 136 | resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d" 137 | integrity sha1-bMKyDFya1q0NzP0hynZz2Nf79o0= 138 | 139 | "@protobufjs/pool@^1.1.0": 140 | version "1.1.0" 141 | resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54" 142 | integrity sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q= 143 | 144 | "@protobufjs/utf8@^1.1.0": 145 | version "1.1.0" 146 | resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" 147 | integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA= 148 | 149 | "@sindresorhus/is@^0.14.0": 150 | version "0.14.0" 151 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 152 | integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 153 | 154 | "@sqltools/formatter@^1.2.2": 155 | version "1.2.3" 156 | resolved "https://registry.yarnpkg.com/@sqltools/formatter/-/formatter-1.2.3.tgz#1185726610acc37317ddab11c3c7f9066966bd20" 157 | integrity sha512-O3uyB/JbkAEMZaP3YqyHH7TMnex7tWyCbCI4EfJdOCoN6HIhqdJBWTM6aCCiWQ/5f5wxjgU735QAIpJbjDvmzg== 158 | 159 | "@szmarczak/http-timer@^1.1.2": 160 | version "1.1.2" 161 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 162 | integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== 163 | dependencies: 164 | defer-to-connect "^1.0.1" 165 | 166 | "@types/accepts@^1.3.5": 167 | version "1.3.5" 168 | resolved "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz#c34bec115cfc746e04fe5a059df4ce7e7b391575" 169 | integrity sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ== 170 | dependencies: 171 | "@types/node" "*" 172 | 173 | "@types/body-parser@*", "@types/body-parser@1.19.2": 174 | version "1.19.2" 175 | resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" 176 | integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== 177 | dependencies: 178 | "@types/connect" "*" 179 | "@types/node" "*" 180 | 181 | "@types/connect@*": 182 | version "3.4.35" 183 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" 184 | integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== 185 | dependencies: 186 | "@types/node" "*" 187 | 188 | "@types/cookie-parser@^1.4.2": 189 | version "1.4.2" 190 | resolved "https://registry.yarnpkg.com/@types/cookie-parser/-/cookie-parser-1.4.2.tgz#e4d5c5ffda82b80672a88a4281aaceefb1bd9df5" 191 | integrity sha512-uwcY8m6SDQqciHsqcKDGbo10GdasYsPCYkH3hVegj9qAah6pX5HivOnOuI3WYmyQMnOATV39zv/Ybs0bC/6iVg== 192 | dependencies: 193 | "@types/express" "*" 194 | 195 | "@types/cors@2.8.12", "@types/cors@^2.8.12": 196 | version "2.8.12" 197 | resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.12.tgz#6b2c510a7ad7039e98e7b8d3d6598f4359e5c080" 198 | integrity sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw== 199 | 200 | "@types/express-serve-static-core@4.17.28", "@types/express-serve-static-core@^4.17.18": 201 | version "4.17.28" 202 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz#c47def9f34ec81dc6328d0b1b5303d1ec98d86b8" 203 | integrity sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig== 204 | dependencies: 205 | "@types/node" "*" 206 | "@types/qs" "*" 207 | "@types/range-parser" "*" 208 | 209 | "@types/express@*", "@types/express@4.17.13", "@types/express@^4.17.13": 210 | version "4.17.13" 211 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.13.tgz#a76e2995728999bab51a33fabce1d705a3709034" 212 | integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA== 213 | dependencies: 214 | "@types/body-parser" "*" 215 | "@types/express-serve-static-core" "^4.17.18" 216 | "@types/qs" "*" 217 | "@types/serve-static" "*" 218 | 219 | "@types/glob@^7.1.3": 220 | version "7.2.0" 221 | resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" 222 | integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== 223 | dependencies: 224 | "@types/minimatch" "*" 225 | "@types/node" "*" 226 | 227 | "@types/jsonwebtoken@^8.5.8": 228 | version "8.5.8" 229 | resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz#01b39711eb844777b7af1d1f2b4cf22fda1c0c44" 230 | integrity sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A== 231 | dependencies: 232 | "@types/node" "*" 233 | 234 | "@types/long@^4.0.0": 235 | version "4.0.1" 236 | resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.1.tgz#459c65fa1867dafe6a8f322c4c51695663cc55e9" 237 | integrity sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w== 238 | 239 | "@types/mime@^1": 240 | version "1.3.2" 241 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" 242 | integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== 243 | 244 | "@types/minimatch@*": 245 | version "3.0.5" 246 | resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" 247 | integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== 248 | 249 | "@types/node@*", "@types/node@^17.0.13": 250 | version "17.0.13" 251 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.13.tgz#5ed7ed7c662948335fcad6c412bb42d99ea754e3" 252 | integrity sha512-Y86MAxASe25hNzlDbsviXl8jQHb0RDvKt4c40ZJQ1Don0AAL0STLZSs4N+6gLEO55pedy7r2cLwS+ZDxPm/2Bw== 253 | 254 | "@types/node@^10.1.0": 255 | version "10.17.60" 256 | resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b" 257 | integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== 258 | 259 | "@types/node@^14.11.2": 260 | version "14.18.9" 261 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.9.tgz#0e5944eefe2b287391279a19b407aa98bd14436d" 262 | integrity sha512-j11XSuRuAlft6vLDEX4RvhqC0KxNxx6QIyMXNb0vHHSNPXTPeiy3algESWmOOIzEtiEL0qiowPU3ewW9hHVa7Q== 263 | 264 | "@types/qs@*": 265 | version "6.9.7" 266 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" 267 | integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== 268 | 269 | "@types/range-parser@*": 270 | version "1.2.4" 271 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" 272 | integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== 273 | 274 | "@types/semver@^7.3.3": 275 | version "7.3.9" 276 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.9.tgz#152c6c20a7688c30b967ec1841d31ace569863fc" 277 | integrity sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ== 278 | 279 | "@types/serve-static@*": 280 | version "1.13.10" 281 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.10.tgz#f5e0ce8797d2d7cc5ebeda48a52c96c4fa47a8d9" 282 | integrity sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ== 283 | dependencies: 284 | "@types/mime" "^1" 285 | "@types/node" "*" 286 | 287 | "@types/zen-observable@0.8.3": 288 | version "0.8.3" 289 | resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.3.tgz#781d360c282436494b32fe7d9f7f8e64b3118aa3" 290 | integrity sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw== 291 | 292 | abbrev@1: 293 | version "1.1.1" 294 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 295 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 296 | 297 | accepts@^1.3.5, accepts@~1.3.7: 298 | version "1.3.7" 299 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 300 | integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== 301 | dependencies: 302 | mime-types "~2.1.24" 303 | negotiator "0.6.2" 304 | 305 | agent-base@6: 306 | version "6.0.2" 307 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 308 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 309 | dependencies: 310 | debug "4" 311 | 312 | ansi-align@^3.0.0: 313 | version "3.0.1" 314 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" 315 | integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== 316 | dependencies: 317 | string-width "^4.1.0" 318 | 319 | ansi-regex@^5.0.1: 320 | version "5.0.1" 321 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 322 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 323 | 324 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 325 | version "4.3.0" 326 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 327 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 328 | dependencies: 329 | color-convert "^2.0.1" 330 | 331 | any-promise@^1.0.0: 332 | version "1.3.0" 333 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 334 | integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= 335 | 336 | anymatch@~3.1.2: 337 | version "3.1.2" 338 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 339 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 340 | dependencies: 341 | normalize-path "^3.0.0" 342 | picomatch "^2.0.4" 343 | 344 | apollo-datasource@^3.3.1: 345 | version "3.3.1" 346 | resolved "https://registry.yarnpkg.com/apollo-datasource/-/apollo-datasource-3.3.1.tgz#a1168dd68371930de3ed4245ad12fa8600efe2cc" 347 | integrity sha512-Z3a8rEUXVPIZ1p8xrFL8bcNhWmhOmovgDArvwIwmJOBnh093ZpRfO+ESJEDAN4KswmyzCLDAwjsW4zQOONdRUw== 348 | dependencies: 349 | apollo-server-caching "^3.3.0" 350 | apollo-server-env "^4.2.1" 351 | 352 | apollo-reporting-protobuf@^3.3.0: 353 | version "3.3.0" 354 | resolved "https://registry.yarnpkg.com/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.0.tgz#2fc0f7508e488851eda8a6e7c8cc3b5a156ab44b" 355 | integrity sha512-51Jwrg0NvHJfKz7TIGU8+Os3rUAqWtXeKRsRtKYtTeMSBPNhzz8UoGjAB3XyVmUXRE3IRmLtDPDRFL7qbxMI/w== 356 | dependencies: 357 | "@apollo/protobufjs" "1.2.2" 358 | 359 | apollo-server-caching@^3.3.0: 360 | version "3.3.0" 361 | resolved "https://registry.yarnpkg.com/apollo-server-caching/-/apollo-server-caching-3.3.0.tgz#f501cbeb820a4201d98c2b768c085f22848d9dc5" 362 | integrity sha512-Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ== 363 | dependencies: 364 | lru-cache "^6.0.0" 365 | 366 | apollo-server-core@^3.6.2: 367 | version "3.6.2" 368 | resolved "https://registry.yarnpkg.com/apollo-server-core/-/apollo-server-core-3.6.2.tgz#d9cbc3d0ba928d86a24640a485f4601b89b485fd" 369 | integrity sha512-GNx41BnpH/yvGv7nTt4bQXuH5BDVs9CBQawfOcgtVdoVoWkazv1Dwy1muqPa7WDt2rk9oY+P6QymtJpBAtmzhg== 370 | dependencies: 371 | "@apollographql/apollo-tools" "^0.5.1" 372 | "@apollographql/graphql-playground-html" "1.6.29" 373 | "@graphql-tools/mock" "^8.1.2" 374 | "@graphql-tools/schema" "^8.0.0" 375 | "@josephg/resolvable" "^1.0.0" 376 | apollo-datasource "^3.3.1" 377 | apollo-reporting-protobuf "^3.3.0" 378 | apollo-server-caching "^3.3.0" 379 | apollo-server-env "^4.2.1" 380 | apollo-server-errors "^3.3.1" 381 | apollo-server-plugin-base "^3.5.1" 382 | apollo-server-types "^3.5.1" 383 | async-retry "^1.2.1" 384 | fast-json-stable-stringify "^2.1.0" 385 | graphql-tag "^2.11.0" 386 | lodash.sortby "^4.7.0" 387 | loglevel "^1.6.8" 388 | lru-cache "^6.0.0" 389 | sha.js "^2.4.11" 390 | uuid "^8.0.0" 391 | 392 | apollo-server-env@^4.2.1: 393 | version "4.2.1" 394 | resolved "https://registry.yarnpkg.com/apollo-server-env/-/apollo-server-env-4.2.1.tgz#ea5b1944accdbdba311f179e4dfaeca482c20185" 395 | integrity sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g== 396 | dependencies: 397 | node-fetch "^2.6.7" 398 | 399 | apollo-server-errors@^3.3.1: 400 | version "3.3.1" 401 | resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-3.3.1.tgz#ba5c00cdaa33d4cbd09779f8cb6f47475d1cd655" 402 | integrity sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA== 403 | 404 | apollo-server-express@^3.6.2: 405 | version "3.6.2" 406 | resolved "https://registry.yarnpkg.com/apollo-server-express/-/apollo-server-express-3.6.2.tgz#859022b95247e1329e1ed96425c10143598b8fd7" 407 | integrity sha512-C/guyWmewY/7rjI1Y2Fdpvq0TgF3F/7kTWcGzQhRe/h31ehvFFCeulrmxJ0MEpnIPB3eX7WHS2DZnyuJplsHKQ== 408 | dependencies: 409 | "@types/accepts" "^1.3.5" 410 | "@types/body-parser" "1.19.2" 411 | "@types/cors" "2.8.12" 412 | "@types/express" "4.17.13" 413 | "@types/express-serve-static-core" "4.17.28" 414 | accepts "^1.3.5" 415 | apollo-server-core "^3.6.2" 416 | apollo-server-types "^3.5.1" 417 | body-parser "^1.19.0" 418 | cors "^2.8.5" 419 | parseurl "^1.3.3" 420 | 421 | apollo-server-plugin-base@^3.5.1: 422 | version "3.5.1" 423 | resolved "https://registry.yarnpkg.com/apollo-server-plugin-base/-/apollo-server-plugin-base-3.5.1.tgz#73fc1591522e36e32eff3d033975333e30cf1a7c" 424 | integrity sha512-wgDHz3lLrCqpecDky3z6AOQ0vik0qs0Cya/Ti6n3ESYXJ9MdK3jE/QunATIrOYYJaa+NKl9V7YwU+/bojNfFuQ== 425 | dependencies: 426 | apollo-server-types "^3.5.1" 427 | 428 | apollo-server-types@^3.5.1: 429 | version "3.5.1" 430 | resolved "https://registry.yarnpkg.com/apollo-server-types/-/apollo-server-types-3.5.1.tgz#73fc8aa82b3175fde3906fa3d6786ee4d3e8c982" 431 | integrity sha512-zG7xLl4mmHuZMAYOfjWKHY/IC/GgIkJ3HnYuR7FRrnPpRA9Yt5Kf1M1rjm1Esuqzpb/dt8pM7cX40QaIQObCYQ== 432 | dependencies: 433 | apollo-reporting-protobuf "^3.3.0" 434 | apollo-server-caching "^3.3.0" 435 | apollo-server-env "^4.2.1" 436 | 437 | app-root-path@^3.0.0: 438 | version "3.0.0" 439 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-3.0.0.tgz#210b6f43873227e18a4b810a032283311555d5ad" 440 | integrity sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw== 441 | 442 | "aproba@^1.0.3 || ^2.0.0": 443 | version "2.0.0" 444 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" 445 | integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== 446 | 447 | are-we-there-yet@^2.0.0: 448 | version "2.0.0" 449 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" 450 | integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== 451 | dependencies: 452 | delegates "^1.0.0" 453 | readable-stream "^3.6.0" 454 | 455 | argon2@^0.28.3: 456 | version "0.28.3" 457 | resolved "https://registry.yarnpkg.com/argon2/-/argon2-0.28.3.tgz#e5234eccf20a643ffc3b1bbd1aa9e81092e0d8e9" 458 | integrity sha512-NkEJOImg+T7nnkx6/Fy8EbjZsF20hbBBKdVP/YUxujuLTAjIODmrFeY4vVpekKwGAGDm6roXxluFQ+CIaoVrbg== 459 | dependencies: 460 | "@mapbox/node-pre-gyp" "^1.0.7" 461 | "@phc/format" "^1.0.0" 462 | node-addon-api "^4.2.0" 463 | opencollective-postinstall "^2.0.3" 464 | 465 | argparse@^2.0.1: 466 | version "2.0.1" 467 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 468 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 469 | 470 | array-flatten@1.1.1: 471 | version "1.1.1" 472 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 473 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 474 | 475 | async-retry@^1.2.1: 476 | version "1.3.3" 477 | resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.3.tgz#0e7f36c04d8478e7a58bdbed80cedf977785f280" 478 | integrity sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw== 479 | dependencies: 480 | retry "0.13.1" 481 | 482 | balanced-match@^1.0.0: 483 | version "1.0.2" 484 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 485 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 486 | 487 | base64-js@^1.3.1: 488 | version "1.5.1" 489 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 490 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 491 | 492 | binary-extensions@^2.0.0: 493 | version "2.2.0" 494 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 495 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 496 | 497 | body-parser@1.19.1, body-parser@^1.19.0: 498 | version "1.19.1" 499 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.1.tgz#1499abbaa9274af3ecc9f6f10396c995943e31d4" 500 | integrity sha512-8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA== 501 | dependencies: 502 | bytes "3.1.1" 503 | content-type "~1.0.4" 504 | debug "2.6.9" 505 | depd "~1.1.2" 506 | http-errors "1.8.1" 507 | iconv-lite "0.4.24" 508 | on-finished "~2.3.0" 509 | qs "6.9.6" 510 | raw-body "2.4.2" 511 | type-is "~1.6.18" 512 | 513 | boxen@^5.0.0: 514 | version "5.1.2" 515 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.1.2.tgz#788cb686fc83c1f486dfa8a40c68fc2b831d2b50" 516 | integrity sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== 517 | dependencies: 518 | ansi-align "^3.0.0" 519 | camelcase "^6.2.0" 520 | chalk "^4.1.0" 521 | cli-boxes "^2.2.1" 522 | string-width "^4.2.2" 523 | type-fest "^0.20.2" 524 | widest-line "^3.1.0" 525 | wrap-ansi "^7.0.0" 526 | 527 | brace-expansion@^1.1.7: 528 | version "1.1.11" 529 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 530 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 531 | dependencies: 532 | balanced-match "^1.0.0" 533 | concat-map "0.0.1" 534 | 535 | braces@~3.0.2: 536 | version "3.0.2" 537 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 538 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 539 | dependencies: 540 | fill-range "^7.0.1" 541 | 542 | buffer-equal-constant-time@1.0.1: 543 | version "1.0.1" 544 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" 545 | integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= 546 | 547 | buffer-writer@2.0.0: 548 | version "2.0.0" 549 | resolved "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-2.0.0.tgz#ce7eb81a38f7829db09c873f2fbb792c0c98ec04" 550 | integrity sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw== 551 | 552 | buffer@^6.0.3: 553 | version "6.0.3" 554 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" 555 | integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== 556 | dependencies: 557 | base64-js "^1.3.1" 558 | ieee754 "^1.2.1" 559 | 560 | bytes@3.1.1: 561 | version "3.1.1" 562 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.1.tgz#3f018291cb4cbad9accb6e6970bca9c8889e879a" 563 | integrity sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg== 564 | 565 | cacheable-request@^6.0.0: 566 | version "6.1.0" 567 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 568 | integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== 569 | dependencies: 570 | clone-response "^1.0.2" 571 | get-stream "^5.1.0" 572 | http-cache-semantics "^4.0.0" 573 | keyv "^3.0.0" 574 | lowercase-keys "^2.0.0" 575 | normalize-url "^4.1.0" 576 | responselike "^1.0.2" 577 | 578 | camelcase@^6.2.0: 579 | version "6.3.0" 580 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 581 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 582 | 583 | chalk@^4.0.0, chalk@^4.1.0: 584 | version "4.1.2" 585 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 586 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 587 | dependencies: 588 | ansi-styles "^4.1.0" 589 | supports-color "^7.1.0" 590 | 591 | chokidar@^3.5.2: 592 | version "3.5.3" 593 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 594 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 595 | dependencies: 596 | anymatch "~3.1.2" 597 | braces "~3.0.2" 598 | glob-parent "~5.1.2" 599 | is-binary-path "~2.1.0" 600 | is-glob "~4.0.1" 601 | normalize-path "~3.0.0" 602 | readdirp "~3.6.0" 603 | optionalDependencies: 604 | fsevents "~2.3.2" 605 | 606 | chownr@^2.0.0: 607 | version "2.0.0" 608 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 609 | integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 610 | 611 | ci-info@^2.0.0: 612 | version "2.0.0" 613 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 614 | integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== 615 | 616 | class-validator@^0.13.2: 617 | version "0.13.2" 618 | resolved "https://registry.yarnpkg.com/class-validator/-/class-validator-0.13.2.tgz#64b031e9f3f81a1e1dcd04a5d604734608b24143" 619 | integrity sha512-yBUcQy07FPlGzUjoLuUfIOXzgynnQPPruyK1Ge2B74k9ROwnle1E+NxLWnUv5OLU8hA/qL5leAE9XnXq3byaBw== 620 | dependencies: 621 | libphonenumber-js "^1.9.43" 622 | validator "^13.7.0" 623 | 624 | cli-boxes@^2.2.1: 625 | version "2.2.1" 626 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f" 627 | integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== 628 | 629 | cli-highlight@^2.1.11: 630 | version "2.1.11" 631 | resolved "https://registry.yarnpkg.com/cli-highlight/-/cli-highlight-2.1.11.tgz#49736fa452f0aaf4fae580e30acb26828d2dc1bf" 632 | integrity sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg== 633 | dependencies: 634 | chalk "^4.0.0" 635 | highlight.js "^10.7.1" 636 | mz "^2.4.0" 637 | parse5 "^5.1.1" 638 | parse5-htmlparser2-tree-adapter "^6.0.0" 639 | yargs "^16.0.0" 640 | 641 | cliui@^7.0.2: 642 | version "7.0.4" 643 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 644 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 645 | dependencies: 646 | string-width "^4.2.0" 647 | strip-ansi "^6.0.0" 648 | wrap-ansi "^7.0.0" 649 | 650 | clone-response@^1.0.2: 651 | version "1.0.2" 652 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 653 | integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= 654 | dependencies: 655 | mimic-response "^1.0.0" 656 | 657 | color-convert@^2.0.1: 658 | version "2.0.1" 659 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 660 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 661 | dependencies: 662 | color-name "~1.1.4" 663 | 664 | color-name@~1.1.4: 665 | version "1.1.4" 666 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 667 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 668 | 669 | color-support@^1.1.2: 670 | version "1.1.3" 671 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 672 | integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== 673 | 674 | commander@^2.20.3: 675 | version "2.20.3" 676 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 677 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 678 | 679 | concat-map@0.0.1: 680 | version "0.0.1" 681 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 682 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 683 | 684 | configstore@^5.0.1: 685 | version "5.0.1" 686 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 687 | integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== 688 | dependencies: 689 | dot-prop "^5.2.0" 690 | graceful-fs "^4.1.2" 691 | make-dir "^3.0.0" 692 | unique-string "^2.0.0" 693 | write-file-atomic "^3.0.0" 694 | xdg-basedir "^4.0.0" 695 | 696 | console-control-strings@^1.0.0, console-control-strings@^1.1.0: 697 | version "1.1.0" 698 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 699 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 700 | 701 | content-disposition@0.5.4: 702 | version "0.5.4" 703 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" 704 | integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== 705 | dependencies: 706 | safe-buffer "5.2.1" 707 | 708 | content-type@~1.0.4: 709 | version "1.0.4" 710 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 711 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 712 | 713 | cookie-parser@^1.4.6: 714 | version "1.4.6" 715 | resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.6.tgz#3ac3a7d35a7a03bbc7e365073a26074824214594" 716 | integrity sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA== 717 | dependencies: 718 | cookie "0.4.1" 719 | cookie-signature "1.0.6" 720 | 721 | cookie-signature@1.0.6: 722 | version "1.0.6" 723 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 724 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 725 | 726 | cookie@0.4.1: 727 | version "0.4.1" 728 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" 729 | integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== 730 | 731 | cors@^2.8.5: 732 | version "2.8.5" 733 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" 734 | integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== 735 | dependencies: 736 | object-assign "^4" 737 | vary "^1" 738 | 739 | crypto-random-string@^2.0.0: 740 | version "2.0.0" 741 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 742 | integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== 743 | 744 | cssfilter@0.0.10: 745 | version "0.0.10" 746 | resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" 747 | integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= 748 | 749 | debug@2.6.9: 750 | version "2.6.9" 751 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 752 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 753 | dependencies: 754 | ms "2.0.0" 755 | 756 | debug@4, debug@^4.3.1: 757 | version "4.3.3" 758 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" 759 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== 760 | dependencies: 761 | ms "2.1.2" 762 | 763 | debug@^3.2.7: 764 | version "3.2.7" 765 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 766 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 767 | dependencies: 768 | ms "^2.1.1" 769 | 770 | decompress-response@^3.3.0: 771 | version "3.3.0" 772 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 773 | integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= 774 | dependencies: 775 | mimic-response "^1.0.0" 776 | 777 | deep-extend@^0.6.0: 778 | version "0.6.0" 779 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 780 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 781 | 782 | defer-to-connect@^1.0.1: 783 | version "1.1.3" 784 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 785 | integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== 786 | 787 | delegates@^1.0.0: 788 | version "1.0.0" 789 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 790 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 791 | 792 | depd@~1.1.2: 793 | version "1.1.2" 794 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 795 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 796 | 797 | destroy@~1.0.4: 798 | version "1.0.4" 799 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 800 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 801 | 802 | detect-libc@^1.0.3: 803 | version "1.0.3" 804 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 805 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 806 | 807 | dot-prop@^5.2.0: 808 | version "5.3.0" 809 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" 810 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 811 | dependencies: 812 | is-obj "^2.0.0" 813 | 814 | dotenv@^14.3.2: 815 | version "14.3.2" 816 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-14.3.2.tgz#7c30b3a5f777c79a3429cb2db358eef6751e8369" 817 | integrity sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ== 818 | 819 | dotenv@^8.2.0: 820 | version "8.6.0" 821 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" 822 | integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== 823 | 824 | duplexer3@^0.1.4: 825 | version "0.1.4" 826 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 827 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 828 | 829 | ecdsa-sig-formatter@1.0.11: 830 | version "1.0.11" 831 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" 832 | integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== 833 | dependencies: 834 | safe-buffer "^5.0.1" 835 | 836 | ee-first@1.1.1: 837 | version "1.1.1" 838 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 839 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 840 | 841 | emoji-regex@^8.0.0: 842 | version "8.0.0" 843 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 844 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 845 | 846 | encodeurl@~1.0.2: 847 | version "1.0.2" 848 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 849 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 850 | 851 | end-of-stream@^1.1.0: 852 | version "1.4.4" 853 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 854 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 855 | dependencies: 856 | once "^1.4.0" 857 | 858 | escalade@^3.1.1: 859 | version "3.1.1" 860 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 861 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 862 | 863 | escape-goat@^2.0.0: 864 | version "2.1.1" 865 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 866 | integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== 867 | 868 | escape-html@~1.0.3: 869 | version "1.0.3" 870 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 871 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 872 | 873 | etag@~1.8.1: 874 | version "1.8.1" 875 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 876 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 877 | 878 | express@^4.17.2: 879 | version "4.17.2" 880 | resolved "https://registry.yarnpkg.com/express/-/express-4.17.2.tgz#c18369f265297319beed4e5558753cc8c1364cb3" 881 | integrity sha512-oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg== 882 | dependencies: 883 | accepts "~1.3.7" 884 | array-flatten "1.1.1" 885 | body-parser "1.19.1" 886 | content-disposition "0.5.4" 887 | content-type "~1.0.4" 888 | cookie "0.4.1" 889 | cookie-signature "1.0.6" 890 | debug "2.6.9" 891 | depd "~1.1.2" 892 | encodeurl "~1.0.2" 893 | escape-html "~1.0.3" 894 | etag "~1.8.1" 895 | finalhandler "~1.1.2" 896 | fresh "0.5.2" 897 | merge-descriptors "1.0.1" 898 | methods "~1.1.2" 899 | on-finished "~2.3.0" 900 | parseurl "~1.3.3" 901 | path-to-regexp "0.1.7" 902 | proxy-addr "~2.0.7" 903 | qs "6.9.6" 904 | range-parser "~1.2.1" 905 | safe-buffer "5.2.1" 906 | send "0.17.2" 907 | serve-static "1.14.2" 908 | setprototypeof "1.2.0" 909 | statuses "~1.5.0" 910 | type-is "~1.6.18" 911 | utils-merge "1.0.1" 912 | vary "~1.1.2" 913 | 914 | fast-json-stable-stringify@^2.1.0: 915 | version "2.1.0" 916 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 917 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 918 | 919 | fill-range@^7.0.1: 920 | version "7.0.1" 921 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 922 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 923 | dependencies: 924 | to-regex-range "^5.0.1" 925 | 926 | finalhandler@~1.1.2: 927 | version "1.1.2" 928 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" 929 | integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== 930 | dependencies: 931 | debug "2.6.9" 932 | encodeurl "~1.0.2" 933 | escape-html "~1.0.3" 934 | on-finished "~2.3.0" 935 | parseurl "~1.3.3" 936 | statuses "~1.5.0" 937 | unpipe "~1.0.0" 938 | 939 | forwarded@0.2.0: 940 | version "0.2.0" 941 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" 942 | integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== 943 | 944 | fresh@0.5.2: 945 | version "0.5.2" 946 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 947 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 948 | 949 | fs-minipass@^2.0.0: 950 | version "2.1.0" 951 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 952 | integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 953 | dependencies: 954 | minipass "^3.0.0" 955 | 956 | fs.realpath@^1.0.0: 957 | version "1.0.0" 958 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 959 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 960 | 961 | fsevents@~2.3.2: 962 | version "2.3.2" 963 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 964 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 965 | 966 | gauge@^3.0.0: 967 | version "3.0.2" 968 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" 969 | integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== 970 | dependencies: 971 | aproba "^1.0.3 || ^2.0.0" 972 | color-support "^1.1.2" 973 | console-control-strings "^1.0.0" 974 | has-unicode "^2.0.1" 975 | object-assign "^4.1.1" 976 | signal-exit "^3.0.0" 977 | string-width "^4.2.3" 978 | strip-ansi "^6.0.1" 979 | wide-align "^1.1.2" 980 | 981 | get-caller-file@^2.0.5: 982 | version "2.0.5" 983 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 984 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 985 | 986 | get-stream@^4.1.0: 987 | version "4.1.0" 988 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 989 | integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== 990 | dependencies: 991 | pump "^3.0.0" 992 | 993 | get-stream@^5.1.0: 994 | version "5.2.0" 995 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" 996 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 997 | dependencies: 998 | pump "^3.0.0" 999 | 1000 | glob-parent@~5.1.2: 1001 | version "5.1.2" 1002 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1003 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1004 | dependencies: 1005 | is-glob "^4.0.1" 1006 | 1007 | glob@^7.1.3, glob@^7.1.6: 1008 | version "7.2.0" 1009 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1010 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1011 | dependencies: 1012 | fs.realpath "^1.0.0" 1013 | inflight "^1.0.4" 1014 | inherits "2" 1015 | minimatch "^3.0.4" 1016 | once "^1.3.0" 1017 | path-is-absolute "^1.0.0" 1018 | 1019 | global-dirs@^3.0.0: 1020 | version "3.0.0" 1021 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" 1022 | integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== 1023 | dependencies: 1024 | ini "2.0.0" 1025 | 1026 | got@^9.6.0: 1027 | version "9.6.0" 1028 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 1029 | integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== 1030 | dependencies: 1031 | "@sindresorhus/is" "^0.14.0" 1032 | "@szmarczak/http-timer" "^1.1.2" 1033 | cacheable-request "^6.0.0" 1034 | decompress-response "^3.3.0" 1035 | duplexer3 "^0.1.4" 1036 | get-stream "^4.1.0" 1037 | lowercase-keys "^1.0.1" 1038 | mimic-response "^1.0.1" 1039 | p-cancelable "^1.0.0" 1040 | to-readable-stream "^1.0.0" 1041 | url-parse-lax "^3.0.0" 1042 | 1043 | graceful-fs@^4.1.2: 1044 | version "4.2.9" 1045 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96" 1046 | integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ== 1047 | 1048 | graphql-query-complexity@^0.7.0: 1049 | version "0.7.2" 1050 | resolved "https://registry.yarnpkg.com/graphql-query-complexity/-/graphql-query-complexity-0.7.2.tgz#7fc6bb20930ab1b666ecf3bbfb24b65b6f08ecc4" 1051 | integrity sha512-+VgmrfxGEjHI3zuojWOR8bsz7Ycz/BZjNjxnlUieTz5DsB92WoIrYCSZdWG7UWZ3rfcA1Gb2Nf+wB80GsaZWuQ== 1052 | dependencies: 1053 | lodash.get "^4.4.2" 1054 | 1055 | graphql-subscriptions@^1.1.0: 1056 | version "1.2.1" 1057 | resolved "https://registry.yarnpkg.com/graphql-subscriptions/-/graphql-subscriptions-1.2.1.tgz#2142b2d729661ddf967b7388f7cf1dd4cf2e061d" 1058 | integrity sha512-95yD/tKi24q8xYa7Q9rhQN16AYj5wPbrb8tmHGM3WRc9EBmWrG/0kkMl+tQG8wcEuE9ibR4zyOM31p5Sdr2v4g== 1059 | dependencies: 1060 | iterall "^1.3.0" 1061 | 1062 | graphql-tag@^2.11.0: 1063 | version "2.12.6" 1064 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" 1065 | integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== 1066 | dependencies: 1067 | tslib "^2.1.0" 1068 | 1069 | graphql@^15.8.0: 1070 | version "15.8.0" 1071 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" 1072 | integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== 1073 | 1074 | has-flag@^3.0.0: 1075 | version "3.0.0" 1076 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1077 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1078 | 1079 | has-flag@^4.0.0: 1080 | version "4.0.0" 1081 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1082 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1083 | 1084 | has-unicode@^2.0.1: 1085 | version "2.0.1" 1086 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1087 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 1088 | 1089 | has-yarn@^2.1.0: 1090 | version "2.1.0" 1091 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 1092 | integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== 1093 | 1094 | highlight.js@^10.7.1: 1095 | version "10.7.3" 1096 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531" 1097 | integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== 1098 | 1099 | http-cache-semantics@^4.0.0: 1100 | version "4.1.0" 1101 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 1102 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 1103 | 1104 | http-errors@1.8.1: 1105 | version "1.8.1" 1106 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" 1107 | integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== 1108 | dependencies: 1109 | depd "~1.1.2" 1110 | inherits "2.0.4" 1111 | setprototypeof "1.2.0" 1112 | statuses ">= 1.5.0 < 2" 1113 | toidentifier "1.0.1" 1114 | 1115 | https-proxy-agent@^5.0.0: 1116 | version "5.0.0" 1117 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1118 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1119 | dependencies: 1120 | agent-base "6" 1121 | debug "4" 1122 | 1123 | iconv-lite@0.4.24: 1124 | version "0.4.24" 1125 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1126 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1127 | dependencies: 1128 | safer-buffer ">= 2.1.2 < 3" 1129 | 1130 | ieee754@^1.2.1: 1131 | version "1.2.1" 1132 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 1133 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1134 | 1135 | ignore-by-default@^1.0.1: 1136 | version "1.0.1" 1137 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1138 | integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= 1139 | 1140 | import-lazy@^2.1.0: 1141 | version "2.1.0" 1142 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1143 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 1144 | 1145 | imurmurhash@^0.1.4: 1146 | version "0.1.4" 1147 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1148 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1149 | 1150 | inflight@^1.0.4: 1151 | version "1.0.6" 1152 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1153 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1154 | dependencies: 1155 | once "^1.3.0" 1156 | wrappy "1" 1157 | 1158 | inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3: 1159 | version "2.0.4" 1160 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1161 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1162 | 1163 | ini@2.0.0: 1164 | version "2.0.0" 1165 | resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" 1166 | integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== 1167 | 1168 | ini@~1.3.0: 1169 | version "1.3.8" 1170 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1171 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1172 | 1173 | ipaddr.js@1.9.1: 1174 | version "1.9.1" 1175 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" 1176 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== 1177 | 1178 | is-binary-path@~2.1.0: 1179 | version "2.1.0" 1180 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1181 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1182 | dependencies: 1183 | binary-extensions "^2.0.0" 1184 | 1185 | is-ci@^2.0.0: 1186 | version "2.0.0" 1187 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1188 | integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== 1189 | dependencies: 1190 | ci-info "^2.0.0" 1191 | 1192 | is-extglob@^2.1.1: 1193 | version "2.1.1" 1194 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1195 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1196 | 1197 | is-fullwidth-code-point@^3.0.0: 1198 | version "3.0.0" 1199 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1200 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1201 | 1202 | is-glob@^4.0.1, is-glob@~4.0.1: 1203 | version "4.0.3" 1204 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1205 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1206 | dependencies: 1207 | is-extglob "^2.1.1" 1208 | 1209 | is-installed-globally@^0.4.0: 1210 | version "0.4.0" 1211 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" 1212 | integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== 1213 | dependencies: 1214 | global-dirs "^3.0.0" 1215 | is-path-inside "^3.0.2" 1216 | 1217 | is-npm@^5.0.0: 1218 | version "5.0.0" 1219 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8" 1220 | integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== 1221 | 1222 | is-number@^7.0.0: 1223 | version "7.0.0" 1224 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1225 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1226 | 1227 | is-obj@^2.0.0: 1228 | version "2.0.0" 1229 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1230 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 1231 | 1232 | is-path-inside@^3.0.2: 1233 | version "3.0.3" 1234 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1235 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1236 | 1237 | is-typedarray@^1.0.0: 1238 | version "1.0.0" 1239 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1240 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1241 | 1242 | is-yarn-global@^0.3.0: 1243 | version "0.3.0" 1244 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 1245 | integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== 1246 | 1247 | iterall@^1.3.0: 1248 | version "1.3.0" 1249 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.3.0.tgz#afcb08492e2915cbd8a0884eb93a8c94d0d72fea" 1250 | integrity sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg== 1251 | 1252 | js-yaml@^4.0.0: 1253 | version "4.1.0" 1254 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1255 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1256 | dependencies: 1257 | argparse "^2.0.1" 1258 | 1259 | json-buffer@3.0.0: 1260 | version "3.0.0" 1261 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1262 | integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= 1263 | 1264 | jsonwebtoken@^8.5.1: 1265 | version "8.5.1" 1266 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d" 1267 | integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w== 1268 | dependencies: 1269 | jws "^3.2.2" 1270 | lodash.includes "^4.3.0" 1271 | lodash.isboolean "^3.0.3" 1272 | lodash.isinteger "^4.0.4" 1273 | lodash.isnumber "^3.0.3" 1274 | lodash.isplainobject "^4.0.6" 1275 | lodash.isstring "^4.0.1" 1276 | lodash.once "^4.0.0" 1277 | ms "^2.1.1" 1278 | semver "^5.6.0" 1279 | 1280 | jwa@^1.4.1: 1281 | version "1.4.1" 1282 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a" 1283 | integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== 1284 | dependencies: 1285 | buffer-equal-constant-time "1.0.1" 1286 | ecdsa-sig-formatter "1.0.11" 1287 | safe-buffer "^5.0.1" 1288 | 1289 | jws@^3.2.2: 1290 | version "3.2.2" 1291 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304" 1292 | integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== 1293 | dependencies: 1294 | jwa "^1.4.1" 1295 | safe-buffer "^5.0.1" 1296 | 1297 | keyv@^3.0.0: 1298 | version "3.1.0" 1299 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1300 | integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== 1301 | dependencies: 1302 | json-buffer "3.0.0" 1303 | 1304 | latest-version@^5.1.0: 1305 | version "5.1.0" 1306 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 1307 | integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== 1308 | dependencies: 1309 | package-json "^6.3.0" 1310 | 1311 | libphonenumber-js@^1.9.43: 1312 | version "1.9.46" 1313 | resolved "https://registry.yarnpkg.com/libphonenumber-js/-/libphonenumber-js-1.9.46.tgz#7ddae167654fb96306209b09e4a05cb7e41e0524" 1314 | integrity sha512-QqTX4UVsGy24njtCgLRspiKpxfRniRBZE/P+d0vQXuYWQ+hwDS6X0ouo0O/SRyf7bhhMCE71b6vAvLMtY5PfEw== 1315 | 1316 | lodash.get@^4.4.2: 1317 | version "4.4.2" 1318 | resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 1319 | integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 1320 | 1321 | lodash.includes@^4.3.0: 1322 | version "4.3.0" 1323 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" 1324 | integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= 1325 | 1326 | lodash.isboolean@^3.0.3: 1327 | version "3.0.3" 1328 | resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" 1329 | integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= 1330 | 1331 | lodash.isinteger@^4.0.4: 1332 | version "4.0.4" 1333 | resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" 1334 | integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= 1335 | 1336 | lodash.isnumber@^3.0.3: 1337 | version "3.0.3" 1338 | resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" 1339 | integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= 1340 | 1341 | lodash.isplainobject@^4.0.6: 1342 | version "4.0.6" 1343 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 1344 | integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= 1345 | 1346 | lodash.isstring@^4.0.1: 1347 | version "4.0.1" 1348 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" 1349 | integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= 1350 | 1351 | lodash.once@^4.0.0: 1352 | version "4.1.1" 1353 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" 1354 | integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= 1355 | 1356 | lodash.sortby@^4.7.0: 1357 | version "4.7.0" 1358 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 1359 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 1360 | 1361 | loglevel@^1.6.8: 1362 | version "1.8.0" 1363 | resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.0.tgz#e7ec73a57e1e7b419cb6c6ac06bf050b67356114" 1364 | integrity sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA== 1365 | 1366 | long@^4.0.0: 1367 | version "4.0.0" 1368 | resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 1369 | integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 1370 | 1371 | lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 1372 | version "1.0.1" 1373 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1374 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1375 | 1376 | lowercase-keys@^2.0.0: 1377 | version "2.0.0" 1378 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1379 | integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== 1380 | 1381 | lru-cache@^6.0.0: 1382 | version "6.0.0" 1383 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1384 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1385 | dependencies: 1386 | yallist "^4.0.0" 1387 | 1388 | make-dir@^3.0.0, make-dir@^3.1.0: 1389 | version "3.1.0" 1390 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1391 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1392 | dependencies: 1393 | semver "^6.0.0" 1394 | 1395 | media-typer@0.3.0: 1396 | version "0.3.0" 1397 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1398 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 1399 | 1400 | merge-descriptors@1.0.1: 1401 | version "1.0.1" 1402 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1403 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 1404 | 1405 | methods@~1.1.2: 1406 | version "1.1.2" 1407 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1408 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 1409 | 1410 | mime-db@1.51.0: 1411 | version "1.51.0" 1412 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c" 1413 | integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g== 1414 | 1415 | mime-types@~2.1.24: 1416 | version "2.1.34" 1417 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24" 1418 | integrity sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A== 1419 | dependencies: 1420 | mime-db "1.51.0" 1421 | 1422 | mime@1.6.0: 1423 | version "1.6.0" 1424 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1425 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 1426 | 1427 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1428 | version "1.0.1" 1429 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1430 | integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== 1431 | 1432 | minimatch@^3.0.4: 1433 | version "3.0.4" 1434 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1435 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1436 | dependencies: 1437 | brace-expansion "^1.1.7" 1438 | 1439 | minimist@^1.2.0: 1440 | version "1.2.5" 1441 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1442 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1443 | 1444 | minipass@^3.0.0: 1445 | version "3.1.6" 1446 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.6.tgz#3b8150aa688a711a1521af5e8779c1d3bb4f45ee" 1447 | integrity sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ== 1448 | dependencies: 1449 | yallist "^4.0.0" 1450 | 1451 | minizlib@^2.1.1: 1452 | version "2.1.2" 1453 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 1454 | integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 1455 | dependencies: 1456 | minipass "^3.0.0" 1457 | yallist "^4.0.0" 1458 | 1459 | mkdirp@^1.0.3, mkdirp@^1.0.4: 1460 | version "1.0.4" 1461 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 1462 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1463 | 1464 | ms@2.0.0: 1465 | version "2.0.0" 1466 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1467 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1468 | 1469 | ms@2.1.2: 1470 | version "2.1.2" 1471 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1472 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1473 | 1474 | ms@2.1.3, ms@^2.1.1: 1475 | version "2.1.3" 1476 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1477 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1478 | 1479 | mz@^2.4.0: 1480 | version "2.7.0" 1481 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 1482 | integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== 1483 | dependencies: 1484 | any-promise "^1.0.0" 1485 | object-assign "^4.0.1" 1486 | thenify-all "^1.0.0" 1487 | 1488 | negotiator@0.6.2: 1489 | version "0.6.2" 1490 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 1491 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== 1492 | 1493 | node-addon-api@^4.2.0: 1494 | version "4.3.0" 1495 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" 1496 | integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== 1497 | 1498 | node-fetch@^2.6.5, node-fetch@^2.6.7: 1499 | version "2.6.7" 1500 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1501 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1502 | dependencies: 1503 | whatwg-url "^5.0.0" 1504 | 1505 | nodemon@^2.0.15: 1506 | version "2.0.15" 1507 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.15.tgz#504516ce3b43d9dc9a955ccd9ec57550a31a8d4e" 1508 | integrity sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA== 1509 | dependencies: 1510 | chokidar "^3.5.2" 1511 | debug "^3.2.7" 1512 | ignore-by-default "^1.0.1" 1513 | minimatch "^3.0.4" 1514 | pstree.remy "^1.1.8" 1515 | semver "^5.7.1" 1516 | supports-color "^5.5.0" 1517 | touch "^3.1.0" 1518 | undefsafe "^2.0.5" 1519 | update-notifier "^5.1.0" 1520 | 1521 | nopt@^5.0.0: 1522 | version "5.0.0" 1523 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 1524 | integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 1525 | dependencies: 1526 | abbrev "1" 1527 | 1528 | nopt@~1.0.10: 1529 | version "1.0.10" 1530 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1531 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 1532 | dependencies: 1533 | abbrev "1" 1534 | 1535 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1536 | version "3.0.0" 1537 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1538 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1539 | 1540 | normalize-url@^4.1.0: 1541 | version "4.5.1" 1542 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 1543 | integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== 1544 | 1545 | npmlog@^5.0.1: 1546 | version "5.0.1" 1547 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" 1548 | integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== 1549 | dependencies: 1550 | are-we-there-yet "^2.0.0" 1551 | console-control-strings "^1.1.0" 1552 | gauge "^3.0.0" 1553 | set-blocking "^2.0.0" 1554 | 1555 | object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.1: 1556 | version "4.1.1" 1557 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1558 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1559 | 1560 | on-finished@~2.3.0: 1561 | version "2.3.0" 1562 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1563 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 1564 | dependencies: 1565 | ee-first "1.1.1" 1566 | 1567 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1568 | version "1.4.0" 1569 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1570 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1571 | dependencies: 1572 | wrappy "1" 1573 | 1574 | opencollective-postinstall@^2.0.3: 1575 | version "2.0.3" 1576 | resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" 1577 | integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== 1578 | 1579 | p-cancelable@^1.0.0: 1580 | version "1.1.0" 1581 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 1582 | integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== 1583 | 1584 | package-json@^6.3.0: 1585 | version "6.5.0" 1586 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 1587 | integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== 1588 | dependencies: 1589 | got "^9.6.0" 1590 | registry-auth-token "^4.0.0" 1591 | registry-url "^5.0.0" 1592 | semver "^6.2.0" 1593 | 1594 | packet-reader@1.0.0: 1595 | version "1.0.0" 1596 | resolved "https://registry.yarnpkg.com/packet-reader/-/packet-reader-1.0.0.tgz#9238e5480dedabacfe1fe3f2771063f164157d74" 1597 | integrity sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ== 1598 | 1599 | parse5-htmlparser2-tree-adapter@^6.0.0: 1600 | version "6.0.1" 1601 | resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" 1602 | integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== 1603 | dependencies: 1604 | parse5 "^6.0.1" 1605 | 1606 | parse5@^5.1.1: 1607 | version "5.1.1" 1608 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" 1609 | integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== 1610 | 1611 | parse5@^6.0.1: 1612 | version "6.0.1" 1613 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 1614 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 1615 | 1616 | parseurl@^1.3.3, parseurl@~1.3.3: 1617 | version "1.3.3" 1618 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 1619 | integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== 1620 | 1621 | path-is-absolute@^1.0.0: 1622 | version "1.0.1" 1623 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1624 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1625 | 1626 | path-to-regexp@0.1.7: 1627 | version "0.1.7" 1628 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1629 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 1630 | 1631 | pg-connection-string@^2.5.0: 1632 | version "2.5.0" 1633 | resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.5.0.tgz#538cadd0f7e603fc09a12590f3b8a452c2c0cf34" 1634 | integrity sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ== 1635 | 1636 | pg-int8@1.0.1: 1637 | version "1.0.1" 1638 | resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" 1639 | integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== 1640 | 1641 | pg-pool@^3.4.1: 1642 | version "3.4.1" 1643 | resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.4.1.tgz#0e71ce2c67b442a5e862a9c182172c37eda71e9c" 1644 | integrity sha512-TVHxR/gf3MeJRvchgNHxsYsTCHQ+4wm3VIHSS19z8NC0+gioEhq1okDY1sm/TYbfoP6JLFx01s0ShvZ3puP/iQ== 1645 | 1646 | pg-protocol@^1.5.0: 1647 | version "1.5.0" 1648 | resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.5.0.tgz#b5dd452257314565e2d54ab3c132adc46565a6a0" 1649 | integrity sha512-muRttij7H8TqRNu/DxrAJQITO4Ac7RmX3Klyr/9mJEOBeIpgnF8f9jAfRz5d3XwQZl5qBjF9gLsUtMPJE0vezQ== 1650 | 1651 | pg-types@^2.1.0: 1652 | version "2.2.0" 1653 | resolved "https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz#2d0250d636454f7cfa3b6ae0382fdfa8063254a3" 1654 | integrity sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA== 1655 | dependencies: 1656 | pg-int8 "1.0.1" 1657 | postgres-array "~2.0.0" 1658 | postgres-bytea "~1.0.0" 1659 | postgres-date "~1.0.4" 1660 | postgres-interval "^1.1.0" 1661 | 1662 | pg@^8.7.1: 1663 | version "8.7.1" 1664 | resolved "https://registry.yarnpkg.com/pg/-/pg-8.7.1.tgz#9ea9d1ec225980c36f94e181d009ab9f4ce4c471" 1665 | integrity sha512-7bdYcv7V6U3KAtWjpQJJBww0UEsWuh4yQ/EjNf2HeO/NnvKjpvhEIe/A/TleP6wtmSKnUnghs5A9jUoK6iDdkA== 1666 | dependencies: 1667 | buffer-writer "2.0.0" 1668 | packet-reader "1.0.0" 1669 | pg-connection-string "^2.5.0" 1670 | pg-pool "^3.4.1" 1671 | pg-protocol "^1.5.0" 1672 | pg-types "^2.1.0" 1673 | pgpass "1.x" 1674 | 1675 | pgpass@1.x: 1676 | version "1.0.5" 1677 | resolved "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.5.tgz#9b873e4a564bb10fa7a7dbd55312728d422a223d" 1678 | integrity sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug== 1679 | dependencies: 1680 | split2 "^4.1.0" 1681 | 1682 | picomatch@^2.0.4, picomatch@^2.2.1: 1683 | version "2.3.1" 1684 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1685 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1686 | 1687 | postgres-array@~2.0.0: 1688 | version "2.0.0" 1689 | resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" 1690 | integrity sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA== 1691 | 1692 | postgres-bytea@~1.0.0: 1693 | version "1.0.0" 1694 | resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz#027b533c0aa890e26d172d47cf9ccecc521acd35" 1695 | integrity sha1-AntTPAqokOJtFy1Hz5zOzFIazTU= 1696 | 1697 | postgres-date@~1.0.4: 1698 | version "1.0.7" 1699 | resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.7.tgz#51bc086006005e5061c591cee727f2531bf641a8" 1700 | integrity sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q== 1701 | 1702 | postgres-interval@^1.1.0: 1703 | version "1.2.0" 1704 | resolved "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz#b460c82cb1587507788819a06aa0fffdb3544695" 1705 | integrity sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== 1706 | dependencies: 1707 | xtend "^4.0.0" 1708 | 1709 | prepend-http@^2.0.0: 1710 | version "2.0.0" 1711 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 1712 | integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= 1713 | 1714 | proxy-addr@~2.0.7: 1715 | version "2.0.7" 1716 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" 1717 | integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== 1718 | dependencies: 1719 | forwarded "0.2.0" 1720 | ipaddr.js "1.9.1" 1721 | 1722 | pstree.remy@^1.1.8: 1723 | version "1.1.8" 1724 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" 1725 | integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== 1726 | 1727 | pump@^3.0.0: 1728 | version "3.0.0" 1729 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1730 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1731 | dependencies: 1732 | end-of-stream "^1.1.0" 1733 | once "^1.3.1" 1734 | 1735 | pupa@^2.1.1: 1736 | version "2.1.1" 1737 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" 1738 | integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== 1739 | dependencies: 1740 | escape-goat "^2.0.0" 1741 | 1742 | qs@6.9.6: 1743 | version "6.9.6" 1744 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" 1745 | integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== 1746 | 1747 | range-parser@~1.2.1: 1748 | version "1.2.1" 1749 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" 1750 | integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== 1751 | 1752 | raw-body@2.4.2: 1753 | version "2.4.2" 1754 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.2.tgz#baf3e9c21eebced59dd6533ac872b71f7b61cb32" 1755 | integrity sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ== 1756 | dependencies: 1757 | bytes "3.1.1" 1758 | http-errors "1.8.1" 1759 | iconv-lite "0.4.24" 1760 | unpipe "1.0.0" 1761 | 1762 | rc@^1.2.8: 1763 | version "1.2.8" 1764 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1765 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1766 | dependencies: 1767 | deep-extend "^0.6.0" 1768 | ini "~1.3.0" 1769 | minimist "^1.2.0" 1770 | strip-json-comments "~2.0.1" 1771 | 1772 | readable-stream@^3.6.0: 1773 | version "3.6.0" 1774 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1775 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1776 | dependencies: 1777 | inherits "^2.0.3" 1778 | string_decoder "^1.1.1" 1779 | util-deprecate "^1.0.1" 1780 | 1781 | readdirp@~3.6.0: 1782 | version "3.6.0" 1783 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1784 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1785 | dependencies: 1786 | picomatch "^2.2.1" 1787 | 1788 | reflect-metadata@^0.1.13: 1789 | version "0.1.13" 1790 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" 1791 | integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== 1792 | 1793 | registry-auth-token@^4.0.0: 1794 | version "4.2.1" 1795 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250" 1796 | integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== 1797 | dependencies: 1798 | rc "^1.2.8" 1799 | 1800 | registry-url@^5.0.0: 1801 | version "5.1.0" 1802 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 1803 | integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== 1804 | dependencies: 1805 | rc "^1.2.8" 1806 | 1807 | require-directory@^2.1.1: 1808 | version "2.1.1" 1809 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1810 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1811 | 1812 | responselike@^1.0.2: 1813 | version "1.0.2" 1814 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 1815 | integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= 1816 | dependencies: 1817 | lowercase-keys "^1.0.0" 1818 | 1819 | retry@0.13.1: 1820 | version "0.13.1" 1821 | resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" 1822 | integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== 1823 | 1824 | rimraf@^3.0.2: 1825 | version "3.0.2" 1826 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1827 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1828 | dependencies: 1829 | glob "^7.1.3" 1830 | 1831 | safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@~5.2.0: 1832 | version "5.2.1" 1833 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1834 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1835 | 1836 | "safer-buffer@>= 2.1.2 < 3": 1837 | version "2.1.2" 1838 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1839 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1840 | 1841 | sax@>=0.6.0: 1842 | version "1.2.4" 1843 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1844 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 1845 | 1846 | semver-diff@^3.1.1: 1847 | version "3.1.1" 1848 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 1849 | integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== 1850 | dependencies: 1851 | semver "^6.3.0" 1852 | 1853 | semver@^5.6.0, semver@^5.7.1: 1854 | version "5.7.1" 1855 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1856 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1857 | 1858 | semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 1859 | version "6.3.0" 1860 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1861 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1862 | 1863 | semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: 1864 | version "7.3.5" 1865 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 1866 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 1867 | dependencies: 1868 | lru-cache "^6.0.0" 1869 | 1870 | send@0.17.2: 1871 | version "0.17.2" 1872 | resolved "https://registry.yarnpkg.com/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820" 1873 | integrity sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww== 1874 | dependencies: 1875 | debug "2.6.9" 1876 | depd "~1.1.2" 1877 | destroy "~1.0.4" 1878 | encodeurl "~1.0.2" 1879 | escape-html "~1.0.3" 1880 | etag "~1.8.1" 1881 | fresh "0.5.2" 1882 | http-errors "1.8.1" 1883 | mime "1.6.0" 1884 | ms "2.1.3" 1885 | on-finished "~2.3.0" 1886 | range-parser "~1.2.1" 1887 | statuses "~1.5.0" 1888 | 1889 | serve-static@1.14.2: 1890 | version "1.14.2" 1891 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.2.tgz#722d6294b1d62626d41b43a013ece4598d292bfa" 1892 | integrity sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ== 1893 | dependencies: 1894 | encodeurl "~1.0.2" 1895 | escape-html "~1.0.3" 1896 | parseurl "~1.3.3" 1897 | send "0.17.2" 1898 | 1899 | set-blocking@^2.0.0: 1900 | version "2.0.0" 1901 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1902 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1903 | 1904 | setprototypeof@1.2.0: 1905 | version "1.2.0" 1906 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" 1907 | integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== 1908 | 1909 | sha.js@^2.4.11: 1910 | version "2.4.11" 1911 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" 1912 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== 1913 | dependencies: 1914 | inherits "^2.0.1" 1915 | safe-buffer "^5.0.1" 1916 | 1917 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1918 | version "3.0.6" 1919 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af" 1920 | integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ== 1921 | 1922 | split2@^4.1.0: 1923 | version "4.1.0" 1924 | resolved "https://registry.yarnpkg.com/split2/-/split2-4.1.0.tgz#101907a24370f85bb782f08adaabe4e281ecf809" 1925 | integrity sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ== 1926 | 1927 | "statuses@>= 1.5.0 < 2", statuses@~1.5.0: 1928 | version "1.5.0" 1929 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 1930 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 1931 | 1932 | "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.2, string-width@^4.2.3: 1933 | version "4.2.3" 1934 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 1935 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 1936 | dependencies: 1937 | emoji-regex "^8.0.0" 1938 | is-fullwidth-code-point "^3.0.0" 1939 | strip-ansi "^6.0.1" 1940 | 1941 | string_decoder@^1.1.1: 1942 | version "1.3.0" 1943 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 1944 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 1945 | dependencies: 1946 | safe-buffer "~5.2.0" 1947 | 1948 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 1949 | version "6.0.1" 1950 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1951 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1952 | dependencies: 1953 | ansi-regex "^5.0.1" 1954 | 1955 | strip-json-comments@~2.0.1: 1956 | version "2.0.1" 1957 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1958 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1959 | 1960 | supports-color@^5.5.0: 1961 | version "5.5.0" 1962 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1963 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1964 | dependencies: 1965 | has-flag "^3.0.0" 1966 | 1967 | supports-color@^7.1.0: 1968 | version "7.2.0" 1969 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1970 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1971 | dependencies: 1972 | has-flag "^4.0.0" 1973 | 1974 | tar@^6.1.11: 1975 | version "6.1.11" 1976 | resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" 1977 | integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== 1978 | dependencies: 1979 | chownr "^2.0.0" 1980 | fs-minipass "^2.0.0" 1981 | minipass "^3.0.0" 1982 | minizlib "^2.1.1" 1983 | mkdirp "^1.0.3" 1984 | yallist "^4.0.0" 1985 | 1986 | thenify-all@^1.0.0: 1987 | version "1.6.0" 1988 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 1989 | integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY= 1990 | dependencies: 1991 | thenify ">= 3.1.0 < 4" 1992 | 1993 | "thenify@>= 3.1.0 < 4": 1994 | version "3.3.1" 1995 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" 1996 | integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== 1997 | dependencies: 1998 | any-promise "^1.0.0" 1999 | 2000 | to-readable-stream@^1.0.0: 2001 | version "1.0.0" 2002 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 2003 | integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== 2004 | 2005 | to-regex-range@^5.0.1: 2006 | version "5.0.1" 2007 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2008 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2009 | dependencies: 2010 | is-number "^7.0.0" 2011 | 2012 | toidentifier@1.0.1: 2013 | version "1.0.1" 2014 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" 2015 | integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== 2016 | 2017 | touch@^3.1.0: 2018 | version "3.1.0" 2019 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 2020 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 2021 | dependencies: 2022 | nopt "~1.0.10" 2023 | 2024 | tr46@~0.0.3: 2025 | version "0.0.3" 2026 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2027 | integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= 2028 | 2029 | tslib@^2.0.1, tslib@^2.1.0, tslib@~2.3.0: 2030 | version "2.3.1" 2031 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" 2032 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 2033 | 2034 | type-fest@^0.20.2: 2035 | version "0.20.2" 2036 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2037 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2038 | 2039 | type-graphql@^1.1.1: 2040 | version "1.1.1" 2041 | resolved "https://registry.yarnpkg.com/type-graphql/-/type-graphql-1.1.1.tgz#dc0710d961713b92d3fee927981fa43bf71667a4" 2042 | integrity sha512-iOOWVn0ehCYMukmnXStbkRwFE9dcjt7/oDcBS1JyQZo9CbhlIll4lHHps54HMEk4A4c8bUPd+DjK8w1/ZrxB4A== 2043 | dependencies: 2044 | "@types/glob" "^7.1.3" 2045 | "@types/node" "^14.11.2" 2046 | "@types/semver" "^7.3.3" 2047 | glob "^7.1.6" 2048 | graphql-query-complexity "^0.7.0" 2049 | graphql-subscriptions "^1.1.0" 2050 | semver "^7.3.2" 2051 | tslib "^2.0.1" 2052 | 2053 | type-is@~1.6.18: 2054 | version "1.6.18" 2055 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 2056 | integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== 2057 | dependencies: 2058 | media-typer "0.3.0" 2059 | mime-types "~2.1.24" 2060 | 2061 | typedarray-to-buffer@^3.1.5: 2062 | version "3.1.5" 2063 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2064 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2065 | dependencies: 2066 | is-typedarray "^1.0.0" 2067 | 2068 | typeorm@^0.2.41: 2069 | version "0.2.41" 2070 | resolved "https://registry.yarnpkg.com/typeorm/-/typeorm-0.2.41.tgz#88758101ac158dc0a0a903d70eaacea2974281cc" 2071 | integrity sha512-/d8CLJJxKPgsnrZWiMyPI0rz2MFZnBQrnQ5XP3Vu3mswv2WPexb58QM6BEtmRmlTMYN5KFWUz8SKluze+wS9xw== 2072 | dependencies: 2073 | "@sqltools/formatter" "^1.2.2" 2074 | app-root-path "^3.0.0" 2075 | buffer "^6.0.3" 2076 | chalk "^4.1.0" 2077 | cli-highlight "^2.1.11" 2078 | debug "^4.3.1" 2079 | dotenv "^8.2.0" 2080 | glob "^7.1.6" 2081 | js-yaml "^4.0.0" 2082 | mkdirp "^1.0.4" 2083 | reflect-metadata "^0.1.13" 2084 | sha.js "^2.4.11" 2085 | tslib "^2.1.0" 2086 | xml2js "^0.4.23" 2087 | yargs "^17.0.1" 2088 | zen-observable-ts "^1.0.0" 2089 | 2090 | typescript@^4.5.5: 2091 | version "4.5.5" 2092 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.5.5.tgz#d8c953832d28924a9e3d37c73d729c846c5896f3" 2093 | integrity sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA== 2094 | 2095 | undefsafe@^2.0.5: 2096 | version "2.0.5" 2097 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" 2098 | integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== 2099 | 2100 | unique-string@^2.0.0: 2101 | version "2.0.0" 2102 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 2103 | integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== 2104 | dependencies: 2105 | crypto-random-string "^2.0.0" 2106 | 2107 | unpipe@1.0.0, unpipe@~1.0.0: 2108 | version "1.0.0" 2109 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2110 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 2111 | 2112 | update-notifier@^5.1.0: 2113 | version "5.1.0" 2114 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" 2115 | integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== 2116 | dependencies: 2117 | boxen "^5.0.0" 2118 | chalk "^4.1.0" 2119 | configstore "^5.0.1" 2120 | has-yarn "^2.1.0" 2121 | import-lazy "^2.1.0" 2122 | is-ci "^2.0.0" 2123 | is-installed-globally "^0.4.0" 2124 | is-npm "^5.0.0" 2125 | is-yarn-global "^0.3.0" 2126 | latest-version "^5.1.0" 2127 | pupa "^2.1.1" 2128 | semver "^7.3.4" 2129 | semver-diff "^3.1.1" 2130 | xdg-basedir "^4.0.0" 2131 | 2132 | url-parse-lax@^3.0.0: 2133 | version "3.0.0" 2134 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 2135 | integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= 2136 | dependencies: 2137 | prepend-http "^2.0.0" 2138 | 2139 | util-deprecate@^1.0.1: 2140 | version "1.0.2" 2141 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2142 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2143 | 2144 | utils-merge@1.0.1: 2145 | version "1.0.1" 2146 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 2147 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 2148 | 2149 | uuid@^8.0.0: 2150 | version "8.3.2" 2151 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 2152 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 2153 | 2154 | validator@^13.7.0: 2155 | version "13.7.0" 2156 | resolved "https://registry.yarnpkg.com/validator/-/validator-13.7.0.tgz#4f9658ba13ba8f3d82ee881d3516489ea85c0857" 2157 | integrity sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw== 2158 | 2159 | value-or-promise@1.0.11: 2160 | version "1.0.11" 2161 | resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140" 2162 | integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg== 2163 | 2164 | vary@^1, vary@~1.1.2: 2165 | version "1.1.2" 2166 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 2167 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 2168 | 2169 | webidl-conversions@^3.0.0: 2170 | version "3.0.1" 2171 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2172 | integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= 2173 | 2174 | whatwg-url@^5.0.0: 2175 | version "5.0.0" 2176 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 2177 | integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= 2178 | dependencies: 2179 | tr46 "~0.0.3" 2180 | webidl-conversions "^3.0.0" 2181 | 2182 | wide-align@^1.1.2: 2183 | version "1.1.5" 2184 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" 2185 | integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== 2186 | dependencies: 2187 | string-width "^1.0.2 || 2 || 3 || 4" 2188 | 2189 | widest-line@^3.1.0: 2190 | version "3.1.0" 2191 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 2192 | integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== 2193 | dependencies: 2194 | string-width "^4.0.0" 2195 | 2196 | wrap-ansi@^7.0.0: 2197 | version "7.0.0" 2198 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2199 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2200 | dependencies: 2201 | ansi-styles "^4.0.0" 2202 | string-width "^4.1.0" 2203 | strip-ansi "^6.0.0" 2204 | 2205 | wrappy@1: 2206 | version "1.0.2" 2207 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2208 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2209 | 2210 | write-file-atomic@^3.0.0: 2211 | version "3.0.3" 2212 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2213 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2214 | dependencies: 2215 | imurmurhash "^0.1.4" 2216 | is-typedarray "^1.0.0" 2217 | signal-exit "^3.0.2" 2218 | typedarray-to-buffer "^3.1.5" 2219 | 2220 | xdg-basedir@^4.0.0: 2221 | version "4.0.0" 2222 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 2223 | integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== 2224 | 2225 | xml2js@^0.4.23: 2226 | version "0.4.23" 2227 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 2228 | integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== 2229 | dependencies: 2230 | sax ">=0.6.0" 2231 | xmlbuilder "~11.0.0" 2232 | 2233 | xmlbuilder@~11.0.0: 2234 | version "11.0.1" 2235 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 2236 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 2237 | 2238 | xss@^1.0.8: 2239 | version "1.0.10" 2240 | resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.10.tgz#5cd63a9b147a755a14cb0455c7db8866120eb4d2" 2241 | integrity sha512-qmoqrRksmzqSKvgqzN0055UFWY7OKx1/9JWeRswwEVX9fCG5jcYRxa/A2DHcmZX6VJvjzHRQ2STeeVcQkrmLSw== 2242 | dependencies: 2243 | commander "^2.20.3" 2244 | cssfilter "0.0.10" 2245 | 2246 | xtend@^4.0.0: 2247 | version "4.0.2" 2248 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2249 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2250 | 2251 | y18n@^5.0.5: 2252 | version "5.0.8" 2253 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2254 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2255 | 2256 | yallist@^4.0.0: 2257 | version "4.0.0" 2258 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2259 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2260 | 2261 | yargs-parser@^20.2.2: 2262 | version "20.2.9" 2263 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2264 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2265 | 2266 | yargs-parser@^21.0.0: 2267 | version "21.0.0" 2268 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.0.tgz#a485d3966be4317426dd56bdb6a30131b281dc55" 2269 | integrity sha512-z9kApYUOCwoeZ78rfRYYWdiU/iNL6mwwYlkkZfJoyMR1xps+NEBX5X7XmRpxkZHhXJ6+Ey00IwKxBBSW9FIjyA== 2270 | 2271 | yargs@^16.0.0: 2272 | version "16.2.0" 2273 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2274 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2275 | dependencies: 2276 | cliui "^7.0.2" 2277 | escalade "^3.1.1" 2278 | get-caller-file "^2.0.5" 2279 | require-directory "^2.1.1" 2280 | string-width "^4.2.0" 2281 | y18n "^5.0.5" 2282 | yargs-parser "^20.2.2" 2283 | 2284 | yargs@^17.0.1: 2285 | version "17.3.1" 2286 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.3.1.tgz#da56b28f32e2fd45aefb402ed9c26f42be4c07b9" 2287 | integrity sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA== 2288 | dependencies: 2289 | cliui "^7.0.2" 2290 | escalade "^3.1.1" 2291 | get-caller-file "^2.0.5" 2292 | require-directory "^2.1.1" 2293 | string-width "^4.2.3" 2294 | y18n "^5.0.5" 2295 | yargs-parser "^21.0.0" 2296 | 2297 | zen-observable-ts@^1.0.0: 2298 | version "1.1.0" 2299 | resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.1.0.tgz#2d1aa9d79b87058e9b75698b92791c1838551f83" 2300 | integrity sha512-1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA== 2301 | dependencies: 2302 | "@types/zen-observable" "0.8.3" 2303 | zen-observable "0.8.15" 2304 | 2305 | zen-observable@0.8.15: 2306 | version "0.8.15" 2307 | resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" 2308 | integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ== 2309 | --------------------------------------------------------------------------------