├── .gitignore ├── .eslintrc.js ├── tsconfig.json ├── package.json ├── LICENSE ├── src └── index.ts ├── README.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .log 3 | dist 4 | node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'rn-ts', 3 | }; 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "es2015", 5 | "lib": ["es6"], 6 | "jsx": "react-native", 7 | "declaration": true, 8 | "outDir": "dist", 9 | "isolatedModules": true, 10 | "strict": true, 11 | "moduleResolution": "node", 12 | "allowSyntheticDefaultImports": true, 13 | "esModuleInterop": true 14 | }, 15 | "exclude": ["node_modules"] 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "create-shared-state", 3 | "version": "1.1.0", 4 | "description": "A react hook that is like useState but state is shared instead", 5 | "files": [ 6 | "dist/", 7 | "LICENSE", 8 | "README.md" 9 | ], 10 | "main": "dist/index.js", 11 | "types": "dist", 12 | "scripts": { 13 | "build": "rm -rf ./dist && tsc", 14 | "prepare": "npm run build" 15 | }, 16 | "keywords": [ 17 | "react", 18 | "state", 19 | "hook", 20 | "useState", 21 | "shared", 22 | "global" 23 | ], 24 | "repository": { 25 | "type": "git", 26 | "url": "git@github.com:alradadi/create-shared-state.git" 27 | }, 28 | "author": "abdul@radadi.me", 29 | "license": "MIT", 30 | "devDependencies": { 31 | "@types/react": "^16.9.43", 32 | "eslint": "^7.5.0", 33 | "eslint-config-rn-ts": "^1.2.0", 34 | "react": "^16.13.1", 35 | "typescript": "^3.9.7" 36 | }, 37 | "peerDependencies": { 38 | "react": ">=16" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Abdul 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { 2 | Dispatch, 3 | SetStateAction, 4 | useCallback, 5 | useEffect, 6 | useState, 7 | } from 'react'; 8 | 9 | type UseSharedState = typeof useState; 10 | type SetState = Dispatch>; 11 | 12 | // eslint-disable-next-line @typescript-eslint/ban-types 13 | const isFunction = (func: any): func is Function => typeof func === 'function'; 14 | 15 | export const create = () => { 16 | let sharedState: T; 17 | const setters = new Set>(); 18 | 19 | const useSharedState: UseSharedState = (initialState?: T) => { 20 | const [state, setState] = useState(() => { 21 | if (!sharedState) { 22 | sharedState = isFunction(initialState) ? initialState() : initialState; 23 | } 24 | return sharedState; 25 | }); 26 | 27 | useEffect(() => { 28 | setters.add(setState); 29 | return () => { 30 | setters.delete(setState); 31 | }; 32 | }, [setState]); 33 | 34 | const setStateWrapper: SetState = useCallback(newState => { 35 | setters.forEach(set => { 36 | set(prevState => 37 | isFunction(newState) ? newState(prevState) : newState, 38 | ); 39 | }); 40 | }, []); 41 | 42 | return [state, setStateWrapper] as any; 43 | }; 44 | 45 | return useSharedState; 46 | }; 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## create-shared-state 2 | 3 | A hook that has the exact same API as `useState` but the state can be shared between components instead. 4 | 5 | ## Motivation 6 | Most of the state management tools out there force you to create and initialize your shared state **outside** components and custom hooks. 7 | Well, sometimes the initial state isn't available until the component calls another hook. The hook provided by create-shared-state can be used exactly like the default `useState` except that state is shared between components. 8 | 9 | 10 | ## Installation 11 | 12 | ```sh 13 | yarn add create-shared-state 14 | ``` 15 | 16 | ## Usage 17 | 18 | - Example 1 19 | 20 | ```javascript 21 | import { create } from 'create-shared-state'; 22 | 23 | const useSharedState = create(); 24 | 25 | const useCounter = () => useSharedState(0); // the custom hook useCounter can be used in any component 26 | 27 | const [counter, setCounter] = useCounter() // use in components 28 | 29 | ``` 30 |
31 | 32 | - Example 2 33 | 34 | ```javascript 35 | import { create } from 'create-shared-state'; 36 | import { useForm } from 'react-hook-form'; 37 | 38 | 39 | const useSharedState = create(); 40 | 41 | /** 42 | * The logic for this form and its methods is accessible from anywhere. 43 | * This makes it possible for one component to handle updating and validating the form, 44 | * and another component to handle the submission for examaple. 45 | */ 46 | const useOnboardingForm = () => { 47 | const methods = useForm() 48 | 49 | const [sharedMethods] = useSharedState(methods) 50 | 51 | return sharedMethods 52 | } 53 | ``` 54 | 55 | ## License 56 | 57 | MIT 58 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4": 6 | version "7.10.4" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" 8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/generator@^7.11.0": 13 | version "7.11.0" 14 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" 15 | integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== 16 | dependencies: 17 | "@babel/types" "^7.11.0" 18 | jsesc "^2.5.1" 19 | source-map "^0.5.0" 20 | 21 | "@babel/helper-function-name@^7.10.4": 22 | version "7.10.4" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" 24 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== 25 | dependencies: 26 | "@babel/helper-get-function-arity" "^7.10.4" 27 | "@babel/template" "^7.10.4" 28 | "@babel/types" "^7.10.4" 29 | 30 | "@babel/helper-get-function-arity@^7.10.4": 31 | version "7.10.4" 32 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" 33 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== 34 | dependencies: 35 | "@babel/types" "^7.10.4" 36 | 37 | "@babel/helper-split-export-declaration@^7.11.0": 38 | version "7.11.0" 39 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" 40 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== 41 | dependencies: 42 | "@babel/types" "^7.11.0" 43 | 44 | "@babel/helper-validator-identifier@^7.10.4": 45 | version "7.10.4" 46 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" 47 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== 48 | 49 | "@babel/highlight@^7.10.4": 50 | version "7.10.4" 51 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 52 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 53 | dependencies: 54 | "@babel/helper-validator-identifier" "^7.10.4" 55 | chalk "^2.0.0" 56 | js-tokens "^4.0.0" 57 | 58 | "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.7.0": 59 | version "7.11.3" 60 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.3.tgz#9e1eae46738bcd08e23e867bab43e7b95299a8f9" 61 | integrity sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA== 62 | 63 | "@babel/template@^7.10.4": 64 | version "7.10.4" 65 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" 66 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== 67 | dependencies: 68 | "@babel/code-frame" "^7.10.4" 69 | "@babel/parser" "^7.10.4" 70 | "@babel/types" "^7.10.4" 71 | 72 | "@babel/traverse@^7.7.0": 73 | version "7.11.0" 74 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" 75 | integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== 76 | dependencies: 77 | "@babel/code-frame" "^7.10.4" 78 | "@babel/generator" "^7.11.0" 79 | "@babel/helper-function-name" "^7.10.4" 80 | "@babel/helper-split-export-declaration" "^7.11.0" 81 | "@babel/parser" "^7.11.0" 82 | "@babel/types" "^7.11.0" 83 | debug "^4.1.0" 84 | globals "^11.1.0" 85 | lodash "^4.17.19" 86 | 87 | "@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.7.0": 88 | version "7.11.0" 89 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" 90 | integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== 91 | dependencies: 92 | "@babel/helper-validator-identifier" "^7.10.4" 93 | lodash "^4.17.19" 94 | to-fast-properties "^2.0.0" 95 | 96 | "@react-native-community/eslint-config@^2.0.0": 97 | version "2.0.0" 98 | resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-2.0.0.tgz#35dcc529a274803fc4e0a6b3d6c274551fb91774" 99 | integrity sha512-vHaMMfvMp9BWCQQ0lNIXibOJTcXIbYUQ8dSUsMOsrXgVkeVQJj88OwrKS00rQyqwMaC4/a6HuDiFzYUkGKOpVg== 100 | dependencies: 101 | "@react-native-community/eslint-plugin" "^1.1.0" 102 | "@typescript-eslint/eslint-plugin" "^3.1.0" 103 | "@typescript-eslint/parser" "^3.1.0" 104 | babel-eslint "^10.1.0" 105 | eslint-config-prettier "^6.10.1" 106 | eslint-plugin-eslint-comments "^3.1.2" 107 | eslint-plugin-flowtype "2.50.3" 108 | eslint-plugin-jest "22.4.1" 109 | eslint-plugin-prettier "3.1.2" 110 | eslint-plugin-react "^7.20.0" 111 | eslint-plugin-react-hooks "^4.0.4" 112 | eslint-plugin-react-native "^3.8.1" 113 | prettier "^2.0.2" 114 | 115 | "@react-native-community/eslint-plugin@^1.1.0": 116 | version "1.1.0" 117 | resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.1.0.tgz#e42b1bef12d2415411519fd528e64b593b1363dc" 118 | integrity sha512-W/J0fNYVO01tioHjvYWQ9m6RgndVtbElzYozBq1ZPrHO/iCzlqoySHl4gO/fpCl9QEFjvJfjPgtPMTMlsoq5DQ== 119 | 120 | "@types/color-name@^1.1.1": 121 | version "1.1.1" 122 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 123 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 124 | 125 | "@types/eslint-visitor-keys@^1.0.0": 126 | version "1.0.0" 127 | resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" 128 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== 129 | 130 | "@types/json-schema@^7.0.3": 131 | version "7.0.5" 132 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" 133 | integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== 134 | 135 | "@types/json5@^0.0.29": 136 | version "0.0.29" 137 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 138 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 139 | 140 | "@types/prop-types@*": 141 | version "15.7.3" 142 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" 143 | integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== 144 | 145 | "@types/react@^16.9.43": 146 | version "16.9.46" 147 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.46.tgz#f0326cd7adceda74148baa9bff6e918632f5069e" 148 | integrity sha512-dbHzO3aAq1lB3jRQuNpuZ/mnu+CdD3H0WVaaBQA8LTT3S33xhVBUj232T8M3tAhSWJs/D/UqORYUlJNl/8VQZg== 149 | dependencies: 150 | "@types/prop-types" "*" 151 | csstype "^3.0.2" 152 | 153 | "@typescript-eslint/eslint-plugin@^3.1.0", "@typescript-eslint/eslint-plugin@^3.7.0": 154 | version "3.9.0" 155 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.9.0.tgz#0fe529b33d63c9a94f7503ca2bb12c84b9477ff3" 156 | integrity sha512-UD6b4p0/hSe1xdTvRCENSx7iQ+KR6ourlZFfYuPC7FlXEzdHuLPrEmuxZ23b2zW96KJX9Z3w05GE/wNOiEzrVg== 157 | dependencies: 158 | "@typescript-eslint/experimental-utils" "3.9.0" 159 | debug "^4.1.1" 160 | functional-red-black-tree "^1.0.1" 161 | regexpp "^3.0.0" 162 | semver "^7.3.2" 163 | tsutils "^3.17.1" 164 | 165 | "@typescript-eslint/experimental-utils@3.9.0": 166 | version "3.9.0" 167 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.9.0.tgz#3171d8ddba0bf02a8c2034188593630914fcf5ee" 168 | integrity sha512-/vSHUDYizSOhrOJdjYxPNGfb4a3ibO8zd4nUKo/QBFOmxosT3cVUV7KIg8Dwi6TXlr667G7YPqFK9+VSZOorNA== 169 | dependencies: 170 | "@types/json-schema" "^7.0.3" 171 | "@typescript-eslint/types" "3.9.0" 172 | "@typescript-eslint/typescript-estree" "3.9.0" 173 | eslint-scope "^5.0.0" 174 | eslint-utils "^2.0.0" 175 | 176 | "@typescript-eslint/parser@^3.1.0", "@typescript-eslint/parser@^3.7.0": 177 | version "3.9.0" 178 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.9.0.tgz#344978a265d9a5c7c8f13e62c78172a4374dabea" 179 | integrity sha512-rDHOKb6uW2jZkHQniUQVZkixQrfsZGUCNWWbKWep4A5hGhN5dLHMUCNAWnC4tXRlHedXkTDptIpxs6e4Pz8UfA== 180 | dependencies: 181 | "@types/eslint-visitor-keys" "^1.0.0" 182 | "@typescript-eslint/experimental-utils" "3.9.0" 183 | "@typescript-eslint/types" "3.9.0" 184 | "@typescript-eslint/typescript-estree" "3.9.0" 185 | eslint-visitor-keys "^1.1.0" 186 | 187 | "@typescript-eslint/types@3.9.0": 188 | version "3.9.0" 189 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.9.0.tgz#be9d0aa451e1bf3ce99f2e6920659e5b2e6bfe18" 190 | integrity sha512-rb6LDr+dk9RVVXO/NJE8dT1pGlso3voNdEIN8ugm4CWM5w5GimbThCMiMl4da1t5u3YwPWEwOnKAULCZgBtBHg== 191 | 192 | "@typescript-eslint/typescript-estree@3.9.0": 193 | version "3.9.0" 194 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.9.0.tgz#c6abbb50fa0d715cab46fef67ca6378bf2eaca13" 195 | integrity sha512-N+158NKgN4rOmWVfvKOMoMFV5n8XxAliaKkArm/sOypzQ0bUL8MSnOEBW3VFIeffb/K5ce/cAV0yYhR7U4ALAA== 196 | dependencies: 197 | "@typescript-eslint/types" "3.9.0" 198 | "@typescript-eslint/visitor-keys" "3.9.0" 199 | debug "^4.1.1" 200 | glob "^7.1.6" 201 | is-glob "^4.0.1" 202 | lodash "^4.17.15" 203 | semver "^7.3.2" 204 | tsutils "^3.17.1" 205 | 206 | "@typescript-eslint/visitor-keys@3.9.0": 207 | version "3.9.0" 208 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.9.0.tgz#44de8e1b1df67adaf3b94d6b60b80f8faebc8dd3" 209 | integrity sha512-O1qeoGqDbu0EZUC/MZ6F1WHTIzcBVhGqDj3LhTnj65WUA548RXVxUHbYhAW9bZWfb2rnX9QsbbP5nmeJ5Z4+ng== 210 | dependencies: 211 | eslint-visitor-keys "^1.1.0" 212 | 213 | acorn-jsx@^5.2.0: 214 | version "5.2.0" 215 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" 216 | integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== 217 | 218 | acorn@^7.3.1: 219 | version "7.4.0" 220 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" 221 | integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== 222 | 223 | ajv@^6.10.0, ajv@^6.10.2: 224 | version "6.12.3" 225 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" 226 | integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== 227 | dependencies: 228 | fast-deep-equal "^3.1.1" 229 | fast-json-stable-stringify "^2.0.0" 230 | json-schema-traverse "^0.4.1" 231 | uri-js "^4.2.2" 232 | 233 | ansi-colors@^4.1.1: 234 | version "4.1.1" 235 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 236 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 237 | 238 | ansi-regex@^4.1.0: 239 | version "4.1.0" 240 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 241 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 242 | 243 | ansi-regex@^5.0.0: 244 | version "5.0.0" 245 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 246 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 247 | 248 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 249 | version "3.2.1" 250 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 251 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 252 | dependencies: 253 | color-convert "^1.9.0" 254 | 255 | ansi-styles@^4.1.0: 256 | version "4.2.1" 257 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 258 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 259 | dependencies: 260 | "@types/color-name" "^1.1.1" 261 | color-convert "^2.0.1" 262 | 263 | argparse@^1.0.7: 264 | version "1.0.10" 265 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 266 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 267 | dependencies: 268 | sprintf-js "~1.0.2" 269 | 270 | array-includes@^3.1.1: 271 | version "3.1.1" 272 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" 273 | integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== 274 | dependencies: 275 | define-properties "^1.1.3" 276 | es-abstract "^1.17.0" 277 | is-string "^1.0.5" 278 | 279 | array.prototype.flat@^1.2.3: 280 | version "1.2.3" 281 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" 282 | integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== 283 | dependencies: 284 | define-properties "^1.1.3" 285 | es-abstract "^1.17.0-next.1" 286 | 287 | array.prototype.flatmap@^1.2.3: 288 | version "1.2.3" 289 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443" 290 | integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg== 291 | dependencies: 292 | define-properties "^1.1.3" 293 | es-abstract "^1.17.0-next.1" 294 | function-bind "^1.1.1" 295 | 296 | astral-regex@^1.0.0: 297 | version "1.0.0" 298 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 299 | integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 300 | 301 | babel-eslint@^10.1.0: 302 | version "10.1.0" 303 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" 304 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== 305 | dependencies: 306 | "@babel/code-frame" "^7.0.0" 307 | "@babel/parser" "^7.7.0" 308 | "@babel/traverse" "^7.7.0" 309 | "@babel/types" "^7.7.0" 310 | eslint-visitor-keys "^1.0.0" 311 | resolve "^1.12.0" 312 | 313 | balanced-match@^1.0.0: 314 | version "1.0.0" 315 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 316 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 317 | 318 | brace-expansion@^1.1.7: 319 | version "1.1.11" 320 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 321 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 322 | dependencies: 323 | balanced-match "^1.0.0" 324 | concat-map "0.0.1" 325 | 326 | callsites@^3.0.0: 327 | version "3.1.0" 328 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 329 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 330 | 331 | chalk@^2.0.0: 332 | version "2.4.2" 333 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 334 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 335 | dependencies: 336 | ansi-styles "^3.2.1" 337 | escape-string-regexp "^1.0.5" 338 | supports-color "^5.3.0" 339 | 340 | chalk@^4.0.0: 341 | version "4.1.0" 342 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 343 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 344 | dependencies: 345 | ansi-styles "^4.1.0" 346 | supports-color "^7.1.0" 347 | 348 | color-convert@^1.9.0: 349 | version "1.9.3" 350 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 351 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 352 | dependencies: 353 | color-name "1.1.3" 354 | 355 | color-convert@^2.0.1: 356 | version "2.0.1" 357 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 358 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 359 | dependencies: 360 | color-name "~1.1.4" 361 | 362 | color-name@1.1.3: 363 | version "1.1.3" 364 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 365 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 366 | 367 | color-name@~1.1.4: 368 | version "1.1.4" 369 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 370 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 371 | 372 | concat-map@0.0.1: 373 | version "0.0.1" 374 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 375 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 376 | 377 | contains-path@^0.1.0: 378 | version "0.1.0" 379 | resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" 380 | integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= 381 | 382 | cross-spawn@^7.0.2: 383 | version "7.0.3" 384 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 385 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 386 | dependencies: 387 | path-key "^3.1.0" 388 | shebang-command "^2.0.0" 389 | which "^2.0.1" 390 | 391 | csstype@^3.0.2: 392 | version "3.0.2" 393 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.2.tgz#ee5ff8f208c8cd613b389f7b222c9801ca62b3f7" 394 | integrity sha512-ofovWglpqoqbfLNOTBNZLSbMuGrblAf1efvvArGKOZMBrIoJeu5UsAipQolkijtyQx5MtAzT/J9IHj/CEY1mJw== 395 | 396 | debug@^2.6.9: 397 | version "2.6.9" 398 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 399 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 400 | dependencies: 401 | ms "2.0.0" 402 | 403 | debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 404 | version "4.1.1" 405 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" 406 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== 407 | dependencies: 408 | ms "^2.1.1" 409 | 410 | deep-is@^0.1.3: 411 | version "0.1.3" 412 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 413 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 414 | 415 | define-properties@^1.1.2, define-properties@^1.1.3: 416 | version "1.1.3" 417 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" 418 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 419 | dependencies: 420 | object-keys "^1.0.12" 421 | 422 | doctrine@1.5.0: 423 | version "1.5.0" 424 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" 425 | integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= 426 | dependencies: 427 | esutils "^2.0.2" 428 | isarray "^1.0.0" 429 | 430 | doctrine@^2.1.0: 431 | version "2.1.0" 432 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 433 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 434 | dependencies: 435 | esutils "^2.0.2" 436 | 437 | doctrine@^3.0.0: 438 | version "3.0.0" 439 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 440 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 441 | dependencies: 442 | esutils "^2.0.2" 443 | 444 | emoji-regex@^7.0.1: 445 | version "7.0.3" 446 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 447 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 448 | 449 | enquirer@^2.3.5: 450 | version "2.3.6" 451 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 452 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 453 | dependencies: 454 | ansi-colors "^4.1.1" 455 | 456 | error-ex@^1.2.0: 457 | version "1.3.2" 458 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 459 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 460 | dependencies: 461 | is-arrayish "^0.2.1" 462 | 463 | es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.5: 464 | version "1.17.6" 465 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" 466 | integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== 467 | dependencies: 468 | es-to-primitive "^1.2.1" 469 | function-bind "^1.1.1" 470 | has "^1.0.3" 471 | has-symbols "^1.0.1" 472 | is-callable "^1.2.0" 473 | is-regex "^1.1.0" 474 | object-inspect "^1.7.0" 475 | object-keys "^1.1.1" 476 | object.assign "^4.1.0" 477 | string.prototype.trimend "^1.0.1" 478 | string.prototype.trimstart "^1.0.1" 479 | 480 | es-to-primitive@^1.2.1: 481 | version "1.2.1" 482 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 483 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 484 | dependencies: 485 | is-callable "^1.1.4" 486 | is-date-object "^1.0.1" 487 | is-symbol "^1.0.2" 488 | 489 | escape-string-regexp@^1.0.5: 490 | version "1.0.5" 491 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 492 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 493 | 494 | eslint-config-prettier@^6.10.1, eslint-config-prettier@^6.11.0: 495 | version "6.11.0" 496 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" 497 | integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA== 498 | dependencies: 499 | get-stdin "^6.0.0" 500 | 501 | eslint-config-rn-ts@^1.2.0: 502 | version "1.2.0" 503 | resolved "https://registry.yarnpkg.com/eslint-config-rn-ts/-/eslint-config-rn-ts-1.2.0.tgz#ef7a8504dbb04e7b7e3df2a6c73cdf17e1c1b3c4" 504 | integrity sha512-DN9QYsc1WEWi4MwWOYuErIx8alLWgY6mwLoyjitVSmD6KUGJco1NVXtbCFhUgnh/KK3MPW2K07pGkTGJ7TVwUw== 505 | dependencies: 506 | "@react-native-community/eslint-config" "^2.0.0" 507 | "@typescript-eslint/eslint-plugin" "^3.7.0" 508 | "@typescript-eslint/parser" "^3.7.0" 509 | babel-eslint "^10.1.0" 510 | eslint-config-prettier "^6.11.0" 511 | eslint-plugin-import "^2.22.0" 512 | eslint-plugin-prettier "^3.1.4" 513 | eslint-plugin-react "^7.20.3" 514 | eslint-plugin-react-hooks "^4.0.8" 515 | eslint-plugin-react-native "^3.8.1" 516 | eslint-plugin-simple-import-sort "^5.0.3" 517 | prettier "^2.0.5" 518 | 519 | eslint-import-resolver-node@^0.3.3: 520 | version "0.3.4" 521 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" 522 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== 523 | dependencies: 524 | debug "^2.6.9" 525 | resolve "^1.13.1" 526 | 527 | eslint-module-utils@^2.6.0: 528 | version "2.6.0" 529 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" 530 | integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== 531 | dependencies: 532 | debug "^2.6.9" 533 | pkg-dir "^2.0.0" 534 | 535 | eslint-plugin-eslint-comments@^3.1.2: 536 | version "3.2.0" 537 | resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa" 538 | integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== 539 | dependencies: 540 | escape-string-regexp "^1.0.5" 541 | ignore "^5.0.5" 542 | 543 | eslint-plugin-flowtype@2.50.3: 544 | version "2.50.3" 545 | resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f" 546 | integrity sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ== 547 | dependencies: 548 | lodash "^4.17.10" 549 | 550 | eslint-plugin-import@^2.22.0: 551 | version "2.22.0" 552 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e" 553 | integrity sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg== 554 | dependencies: 555 | array-includes "^3.1.1" 556 | array.prototype.flat "^1.2.3" 557 | contains-path "^0.1.0" 558 | debug "^2.6.9" 559 | doctrine "1.5.0" 560 | eslint-import-resolver-node "^0.3.3" 561 | eslint-module-utils "^2.6.0" 562 | has "^1.0.3" 563 | minimatch "^3.0.4" 564 | object.values "^1.1.1" 565 | read-pkg-up "^2.0.0" 566 | resolve "^1.17.0" 567 | tsconfig-paths "^3.9.0" 568 | 569 | eslint-plugin-jest@22.4.1: 570 | version "22.4.1" 571 | resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz#a5fd6f7a2a41388d16f527073b778013c5189a9c" 572 | integrity sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg== 573 | 574 | eslint-plugin-prettier@3.1.2: 575 | version "3.1.2" 576 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz#432e5a667666ab84ce72f945c72f77d996a5c9ba" 577 | integrity sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA== 578 | dependencies: 579 | prettier-linter-helpers "^1.0.0" 580 | 581 | eslint-plugin-prettier@^3.1.4: 582 | version "3.1.4" 583 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2" 584 | integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg== 585 | dependencies: 586 | prettier-linter-helpers "^1.0.0" 587 | 588 | eslint-plugin-react-hooks@^4.0.4, eslint-plugin-react-hooks@^4.0.8: 589 | version "4.0.8" 590 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.0.8.tgz#a9b1e3d57475ccd18276882eff3d6cba00da7a56" 591 | integrity sha512-6SSb5AiMCPd8FDJrzah+Z4F44P2CdOaK026cXFV+o/xSRzfOiV1FNFeLl2z6xm3yqWOQEZ5OfVgiec90qV2xrQ== 592 | 593 | eslint-plugin-react-native-globals@^0.1.1: 594 | version "0.1.2" 595 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2" 596 | integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g== 597 | 598 | eslint-plugin-react-native@^3.8.1: 599 | version "3.8.1" 600 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.8.1.tgz#92811e37191ecb0d29c0f0a0c9e5c943ee573821" 601 | integrity sha512-6Z4s4nvgFRdda/1s1+uu4a6EMZwEjjJ9Bk/1yBImv0fd9U2CsGu2cUakAtV83cZKhizbWhSouXoaK4JtlScdFg== 602 | dependencies: 603 | eslint-plugin-react-native-globals "^0.1.1" 604 | 605 | eslint-plugin-react@^7.20.0, eslint-plugin-react@^7.20.3: 606 | version "7.20.6" 607 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.20.6.tgz#4d7845311a93c463493ccfa0a19c9c5d0fd69f60" 608 | integrity sha512-kidMTE5HAEBSLu23CUDvj8dc3LdBU0ri1scwHBZjI41oDv4tjsWZKU7MQccFzH1QYPYhsnTF2ovh7JlcIcmxgg== 609 | dependencies: 610 | array-includes "^3.1.1" 611 | array.prototype.flatmap "^1.2.3" 612 | doctrine "^2.1.0" 613 | has "^1.0.3" 614 | jsx-ast-utils "^2.4.1" 615 | object.entries "^1.1.2" 616 | object.fromentries "^2.0.2" 617 | object.values "^1.1.1" 618 | prop-types "^15.7.2" 619 | resolve "^1.17.0" 620 | string.prototype.matchall "^4.0.2" 621 | 622 | eslint-plugin-simple-import-sort@^5.0.3: 623 | version "5.0.3" 624 | resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-5.0.3.tgz#9ae258ddada6efffc55e47a134afbd279eb31fc6" 625 | integrity sha512-1rf3AWiHeWNCQdAq0iXNnlccnH1UDnelGgrPbjBBHE8d2hXVtOudcmy0vTF4hri3iJ0MKz8jBhmH6lJ0ZWZLHQ== 626 | 627 | eslint-scope@^5.0.0, eslint-scope@^5.1.0: 628 | version "5.1.0" 629 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" 630 | integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== 631 | dependencies: 632 | esrecurse "^4.1.0" 633 | estraverse "^4.1.1" 634 | 635 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: 636 | version "2.1.0" 637 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 638 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 639 | dependencies: 640 | eslint-visitor-keys "^1.1.0" 641 | 642 | eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 643 | version "1.3.0" 644 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 645 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 646 | 647 | eslint@^7.5.0: 648 | version "7.6.0" 649 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.6.0.tgz#522d67cfaea09724d96949c70e7a0550614d64d6" 650 | integrity sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w== 651 | dependencies: 652 | "@babel/code-frame" "^7.0.0" 653 | ajv "^6.10.0" 654 | chalk "^4.0.0" 655 | cross-spawn "^7.0.2" 656 | debug "^4.0.1" 657 | doctrine "^3.0.0" 658 | enquirer "^2.3.5" 659 | eslint-scope "^5.1.0" 660 | eslint-utils "^2.1.0" 661 | eslint-visitor-keys "^1.3.0" 662 | espree "^7.2.0" 663 | esquery "^1.2.0" 664 | esutils "^2.0.2" 665 | file-entry-cache "^5.0.1" 666 | functional-red-black-tree "^1.0.1" 667 | glob-parent "^5.0.0" 668 | globals "^12.1.0" 669 | ignore "^4.0.6" 670 | import-fresh "^3.0.0" 671 | imurmurhash "^0.1.4" 672 | is-glob "^4.0.0" 673 | js-yaml "^3.13.1" 674 | json-stable-stringify-without-jsonify "^1.0.1" 675 | levn "^0.4.1" 676 | lodash "^4.17.19" 677 | minimatch "^3.0.4" 678 | natural-compare "^1.4.0" 679 | optionator "^0.9.1" 680 | progress "^2.0.0" 681 | regexpp "^3.1.0" 682 | semver "^7.2.1" 683 | strip-ansi "^6.0.0" 684 | strip-json-comments "^3.1.0" 685 | table "^5.2.3" 686 | text-table "^0.2.0" 687 | v8-compile-cache "^2.0.3" 688 | 689 | espree@^7.2.0: 690 | version "7.2.0" 691 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69" 692 | integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g== 693 | dependencies: 694 | acorn "^7.3.1" 695 | acorn-jsx "^5.2.0" 696 | eslint-visitor-keys "^1.3.0" 697 | 698 | esprima@^4.0.0: 699 | version "4.0.1" 700 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 701 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 702 | 703 | esquery@^1.2.0: 704 | version "1.3.1" 705 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 706 | integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 707 | dependencies: 708 | estraverse "^5.1.0" 709 | 710 | esrecurse@^4.1.0: 711 | version "4.2.1" 712 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" 713 | integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== 714 | dependencies: 715 | estraverse "^4.1.0" 716 | 717 | estraverse@^4.1.0, estraverse@^4.1.1: 718 | version "4.3.0" 719 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 720 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 721 | 722 | estraverse@^5.1.0: 723 | version "5.2.0" 724 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 725 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 726 | 727 | esutils@^2.0.2: 728 | version "2.0.3" 729 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 730 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 731 | 732 | fast-deep-equal@^3.1.1: 733 | version "3.1.3" 734 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 735 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 736 | 737 | fast-diff@^1.1.2: 738 | version "1.2.0" 739 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 740 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 741 | 742 | fast-json-stable-stringify@^2.0.0: 743 | version "2.1.0" 744 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 745 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 746 | 747 | fast-levenshtein@^2.0.6: 748 | version "2.0.6" 749 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 750 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 751 | 752 | file-entry-cache@^5.0.1: 753 | version "5.0.1" 754 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 755 | integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 756 | dependencies: 757 | flat-cache "^2.0.1" 758 | 759 | find-up@^2.0.0, find-up@^2.1.0: 760 | version "2.1.0" 761 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 762 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 763 | dependencies: 764 | locate-path "^2.0.0" 765 | 766 | flat-cache@^2.0.1: 767 | version "2.0.1" 768 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 769 | integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 770 | dependencies: 771 | flatted "^2.0.0" 772 | rimraf "2.6.3" 773 | write "1.0.3" 774 | 775 | flatted@^2.0.0: 776 | version "2.0.2" 777 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 778 | integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 779 | 780 | fs.realpath@^1.0.0: 781 | version "1.0.0" 782 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 783 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 784 | 785 | function-bind@^1.1.1: 786 | version "1.1.1" 787 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 788 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 789 | 790 | functional-red-black-tree@^1.0.1: 791 | version "1.0.1" 792 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 793 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 794 | 795 | get-stdin@^6.0.0: 796 | version "6.0.0" 797 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 798 | integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 799 | 800 | glob-parent@^5.0.0: 801 | version "5.1.1" 802 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 803 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 804 | dependencies: 805 | is-glob "^4.0.1" 806 | 807 | glob@^7.1.3, glob@^7.1.6: 808 | version "7.1.6" 809 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 810 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 811 | dependencies: 812 | fs.realpath "^1.0.0" 813 | inflight "^1.0.4" 814 | inherits "2" 815 | minimatch "^3.0.4" 816 | once "^1.3.0" 817 | path-is-absolute "^1.0.0" 818 | 819 | globals@^11.1.0: 820 | version "11.12.0" 821 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 822 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 823 | 824 | globals@^12.1.0: 825 | version "12.4.0" 826 | resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 827 | integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 828 | dependencies: 829 | type-fest "^0.8.1" 830 | 831 | graceful-fs@^4.1.2: 832 | version "4.2.4" 833 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 834 | integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 835 | 836 | has-flag@^3.0.0: 837 | version "3.0.0" 838 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 839 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 840 | 841 | has-flag@^4.0.0: 842 | version "4.0.0" 843 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 844 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 845 | 846 | has-symbols@^1.0.0, has-symbols@^1.0.1: 847 | version "1.0.1" 848 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 849 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 850 | 851 | has@^1.0.3: 852 | version "1.0.3" 853 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 854 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 855 | dependencies: 856 | function-bind "^1.1.1" 857 | 858 | hosted-git-info@^2.1.4: 859 | version "2.8.8" 860 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 861 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 862 | 863 | ignore@^4.0.6: 864 | version "4.0.6" 865 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 866 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 867 | 868 | ignore@^5.0.5: 869 | version "5.1.8" 870 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 871 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 872 | 873 | import-fresh@^3.0.0: 874 | version "3.2.1" 875 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" 876 | integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== 877 | dependencies: 878 | parent-module "^1.0.0" 879 | resolve-from "^4.0.0" 880 | 881 | imurmurhash@^0.1.4: 882 | version "0.1.4" 883 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 884 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 885 | 886 | inflight@^1.0.4: 887 | version "1.0.6" 888 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 889 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 890 | dependencies: 891 | once "^1.3.0" 892 | wrappy "1" 893 | 894 | inherits@2: 895 | version "2.0.4" 896 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 897 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 898 | 899 | internal-slot@^1.0.2: 900 | version "1.0.2" 901 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3" 902 | integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g== 903 | dependencies: 904 | es-abstract "^1.17.0-next.1" 905 | has "^1.0.3" 906 | side-channel "^1.0.2" 907 | 908 | is-arrayish@^0.2.1: 909 | version "0.2.1" 910 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 911 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 912 | 913 | is-callable@^1.1.4, is-callable@^1.2.0: 914 | version "1.2.0" 915 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" 916 | integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== 917 | 918 | is-date-object@^1.0.1: 919 | version "1.0.2" 920 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 921 | integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== 922 | 923 | is-extglob@^2.1.1: 924 | version "2.1.1" 925 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 926 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 927 | 928 | is-fullwidth-code-point@^2.0.0: 929 | version "2.0.0" 930 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 931 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 932 | 933 | is-glob@^4.0.0, is-glob@^4.0.1: 934 | version "4.0.1" 935 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 936 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 937 | dependencies: 938 | is-extglob "^2.1.1" 939 | 940 | is-regex@^1.1.0: 941 | version "1.1.1" 942 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 943 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 944 | dependencies: 945 | has-symbols "^1.0.1" 946 | 947 | is-string@^1.0.5: 948 | version "1.0.5" 949 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 950 | integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 951 | 952 | is-symbol@^1.0.2: 953 | version "1.0.3" 954 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 955 | integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 956 | dependencies: 957 | has-symbols "^1.0.1" 958 | 959 | isarray@^1.0.0: 960 | version "1.0.0" 961 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 962 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 963 | 964 | isexe@^2.0.0: 965 | version "2.0.0" 966 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 967 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 968 | 969 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 970 | version "4.0.0" 971 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 972 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 973 | 974 | js-yaml@^3.13.1: 975 | version "3.14.0" 976 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 977 | integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== 978 | dependencies: 979 | argparse "^1.0.7" 980 | esprima "^4.0.0" 981 | 982 | jsesc@^2.5.1: 983 | version "2.5.2" 984 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 985 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 986 | 987 | json-schema-traverse@^0.4.1: 988 | version "0.4.1" 989 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 990 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 991 | 992 | json-stable-stringify-without-jsonify@^1.0.1: 993 | version "1.0.1" 994 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 995 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 996 | 997 | json5@^1.0.1: 998 | version "1.0.1" 999 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1000 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1001 | dependencies: 1002 | minimist "^1.2.0" 1003 | 1004 | jsx-ast-utils@^2.4.1: 1005 | version "2.4.1" 1006 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e" 1007 | integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w== 1008 | dependencies: 1009 | array-includes "^3.1.1" 1010 | object.assign "^4.1.0" 1011 | 1012 | levn@^0.4.1: 1013 | version "0.4.1" 1014 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1015 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1016 | dependencies: 1017 | prelude-ls "^1.2.1" 1018 | type-check "~0.4.0" 1019 | 1020 | load-json-file@^2.0.0: 1021 | version "2.0.0" 1022 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1023 | integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= 1024 | dependencies: 1025 | graceful-fs "^4.1.2" 1026 | parse-json "^2.2.0" 1027 | pify "^2.0.0" 1028 | strip-bom "^3.0.0" 1029 | 1030 | locate-path@^2.0.0: 1031 | version "2.0.0" 1032 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1033 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 1034 | dependencies: 1035 | p-locate "^2.0.0" 1036 | path-exists "^3.0.0" 1037 | 1038 | lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19: 1039 | version "4.17.20" 1040 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 1041 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 1042 | 1043 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1044 | version "1.4.0" 1045 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1046 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1047 | dependencies: 1048 | js-tokens "^3.0.0 || ^4.0.0" 1049 | 1050 | minimatch@^3.0.4: 1051 | version "3.0.4" 1052 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1053 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1054 | dependencies: 1055 | brace-expansion "^1.1.7" 1056 | 1057 | minimist@^1.2.0, minimist@^1.2.5: 1058 | version "1.2.5" 1059 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1060 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1061 | 1062 | mkdirp@^0.5.1: 1063 | version "0.5.5" 1064 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 1065 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== 1066 | dependencies: 1067 | minimist "^1.2.5" 1068 | 1069 | ms@2.0.0: 1070 | version "2.0.0" 1071 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1072 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1073 | 1074 | ms@^2.1.1: 1075 | version "2.1.2" 1076 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1077 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1078 | 1079 | natural-compare@^1.4.0: 1080 | version "1.4.0" 1081 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1082 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1083 | 1084 | normalize-package-data@^2.3.2: 1085 | version "2.5.0" 1086 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1087 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1088 | dependencies: 1089 | hosted-git-info "^2.1.4" 1090 | resolve "^1.10.0" 1091 | semver "2 || 3 || 4 || 5" 1092 | validate-npm-package-license "^3.0.1" 1093 | 1094 | object-assign@^4.1.1: 1095 | version "4.1.1" 1096 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1097 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1098 | 1099 | object-inspect@^1.7.0: 1100 | version "1.8.0" 1101 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" 1102 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== 1103 | 1104 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: 1105 | version "1.1.1" 1106 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1107 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1108 | 1109 | object.assign@^4.1.0: 1110 | version "4.1.0" 1111 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" 1112 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== 1113 | dependencies: 1114 | define-properties "^1.1.2" 1115 | function-bind "^1.1.1" 1116 | has-symbols "^1.0.0" 1117 | object-keys "^1.0.11" 1118 | 1119 | object.entries@^1.1.2: 1120 | version "1.1.2" 1121 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" 1122 | integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== 1123 | dependencies: 1124 | define-properties "^1.1.3" 1125 | es-abstract "^1.17.5" 1126 | has "^1.0.3" 1127 | 1128 | object.fromentries@^2.0.2: 1129 | version "2.0.2" 1130 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" 1131 | integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== 1132 | dependencies: 1133 | define-properties "^1.1.3" 1134 | es-abstract "^1.17.0-next.1" 1135 | function-bind "^1.1.1" 1136 | has "^1.0.3" 1137 | 1138 | object.values@^1.1.1: 1139 | version "1.1.1" 1140 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" 1141 | integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== 1142 | dependencies: 1143 | define-properties "^1.1.3" 1144 | es-abstract "^1.17.0-next.1" 1145 | function-bind "^1.1.1" 1146 | has "^1.0.3" 1147 | 1148 | once@^1.3.0: 1149 | version "1.4.0" 1150 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1151 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1152 | dependencies: 1153 | wrappy "1" 1154 | 1155 | optionator@^0.9.1: 1156 | version "0.9.1" 1157 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1158 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1159 | dependencies: 1160 | deep-is "^0.1.3" 1161 | fast-levenshtein "^2.0.6" 1162 | levn "^0.4.1" 1163 | prelude-ls "^1.2.1" 1164 | type-check "^0.4.0" 1165 | word-wrap "^1.2.3" 1166 | 1167 | p-limit@^1.1.0: 1168 | version "1.3.0" 1169 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1170 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1171 | dependencies: 1172 | p-try "^1.0.0" 1173 | 1174 | p-locate@^2.0.0: 1175 | version "2.0.0" 1176 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1177 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 1178 | dependencies: 1179 | p-limit "^1.1.0" 1180 | 1181 | p-try@^1.0.0: 1182 | version "1.0.0" 1183 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1184 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 1185 | 1186 | parent-module@^1.0.0: 1187 | version "1.0.1" 1188 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1189 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1190 | dependencies: 1191 | callsites "^3.0.0" 1192 | 1193 | parse-json@^2.2.0: 1194 | version "2.2.0" 1195 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1196 | integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= 1197 | dependencies: 1198 | error-ex "^1.2.0" 1199 | 1200 | path-exists@^3.0.0: 1201 | version "3.0.0" 1202 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1203 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1204 | 1205 | path-is-absolute@^1.0.0: 1206 | version "1.0.1" 1207 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1208 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1209 | 1210 | path-key@^3.1.0: 1211 | version "3.1.1" 1212 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1213 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1214 | 1215 | path-parse@^1.0.6: 1216 | version "1.0.6" 1217 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1218 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1219 | 1220 | path-type@^2.0.0: 1221 | version "2.0.0" 1222 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1223 | integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= 1224 | dependencies: 1225 | pify "^2.0.0" 1226 | 1227 | pify@^2.0.0: 1228 | version "2.3.0" 1229 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1230 | integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= 1231 | 1232 | pkg-dir@^2.0.0: 1233 | version "2.0.0" 1234 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" 1235 | integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= 1236 | dependencies: 1237 | find-up "^2.1.0" 1238 | 1239 | prelude-ls@^1.2.1: 1240 | version "1.2.1" 1241 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1242 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1243 | 1244 | prettier-linter-helpers@^1.0.0: 1245 | version "1.0.0" 1246 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1247 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1248 | dependencies: 1249 | fast-diff "^1.1.2" 1250 | 1251 | prettier@^2.0.2, prettier@^2.0.5: 1252 | version "2.0.5" 1253 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4" 1254 | integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg== 1255 | 1256 | progress@^2.0.0: 1257 | version "2.0.3" 1258 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 1259 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 1260 | 1261 | prop-types@^15.6.2, prop-types@^15.7.2: 1262 | version "15.7.2" 1263 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" 1264 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== 1265 | dependencies: 1266 | loose-envify "^1.4.0" 1267 | object-assign "^4.1.1" 1268 | react-is "^16.8.1" 1269 | 1270 | punycode@^2.1.0: 1271 | version "2.1.1" 1272 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1273 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1274 | 1275 | react-is@^16.8.1: 1276 | version "16.13.1" 1277 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1278 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1279 | 1280 | react@^16.13.1: 1281 | version "16.13.1" 1282 | resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" 1283 | integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== 1284 | dependencies: 1285 | loose-envify "^1.1.0" 1286 | object-assign "^4.1.1" 1287 | prop-types "^15.6.2" 1288 | 1289 | read-pkg-up@^2.0.0: 1290 | version "2.0.0" 1291 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1292 | integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= 1293 | dependencies: 1294 | find-up "^2.0.0" 1295 | read-pkg "^2.0.0" 1296 | 1297 | read-pkg@^2.0.0: 1298 | version "2.0.0" 1299 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1300 | integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= 1301 | dependencies: 1302 | load-json-file "^2.0.0" 1303 | normalize-package-data "^2.3.2" 1304 | path-type "^2.0.0" 1305 | 1306 | regexp.prototype.flags@^1.3.0: 1307 | version "1.3.0" 1308 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" 1309 | integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== 1310 | dependencies: 1311 | define-properties "^1.1.3" 1312 | es-abstract "^1.17.0-next.1" 1313 | 1314 | regexpp@^3.0.0, regexpp@^3.1.0: 1315 | version "3.1.0" 1316 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 1317 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 1318 | 1319 | resolve-from@^4.0.0: 1320 | version "4.0.0" 1321 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1322 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1323 | 1324 | resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0: 1325 | version "1.17.0" 1326 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" 1327 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== 1328 | dependencies: 1329 | path-parse "^1.0.6" 1330 | 1331 | rimraf@2.6.3: 1332 | version "2.6.3" 1333 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1334 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1335 | dependencies: 1336 | glob "^7.1.3" 1337 | 1338 | "semver@2 || 3 || 4 || 5": 1339 | version "5.7.1" 1340 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1341 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1342 | 1343 | semver@^7.2.1, semver@^7.3.2: 1344 | version "7.3.2" 1345 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 1346 | integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 1347 | 1348 | shebang-command@^2.0.0: 1349 | version "2.0.0" 1350 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1351 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1352 | dependencies: 1353 | shebang-regex "^3.0.0" 1354 | 1355 | shebang-regex@^3.0.0: 1356 | version "3.0.0" 1357 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1358 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1359 | 1360 | side-channel@^1.0.2: 1361 | version "1.0.2" 1362 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" 1363 | integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== 1364 | dependencies: 1365 | es-abstract "^1.17.0-next.1" 1366 | object-inspect "^1.7.0" 1367 | 1368 | slice-ansi@^2.1.0: 1369 | version "2.1.0" 1370 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 1371 | integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 1372 | dependencies: 1373 | ansi-styles "^3.2.0" 1374 | astral-regex "^1.0.0" 1375 | is-fullwidth-code-point "^2.0.0" 1376 | 1377 | source-map@^0.5.0: 1378 | version "0.5.7" 1379 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1380 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1381 | 1382 | spdx-correct@^3.0.0: 1383 | version "3.1.1" 1384 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1385 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1386 | dependencies: 1387 | spdx-expression-parse "^3.0.0" 1388 | spdx-license-ids "^3.0.0" 1389 | 1390 | spdx-exceptions@^2.1.0: 1391 | version "2.3.0" 1392 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1393 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1394 | 1395 | spdx-expression-parse@^3.0.0: 1396 | version "3.0.1" 1397 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1398 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1399 | dependencies: 1400 | spdx-exceptions "^2.1.0" 1401 | spdx-license-ids "^3.0.0" 1402 | 1403 | spdx-license-ids@^3.0.0: 1404 | version "3.0.5" 1405 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" 1406 | integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== 1407 | 1408 | sprintf-js@~1.0.2: 1409 | version "1.0.3" 1410 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1411 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1412 | 1413 | string-width@^3.0.0: 1414 | version "3.1.0" 1415 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1416 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1417 | dependencies: 1418 | emoji-regex "^7.0.1" 1419 | is-fullwidth-code-point "^2.0.0" 1420 | strip-ansi "^5.1.0" 1421 | 1422 | string.prototype.matchall@^4.0.2: 1423 | version "4.0.2" 1424 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" 1425 | integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== 1426 | dependencies: 1427 | define-properties "^1.1.3" 1428 | es-abstract "^1.17.0" 1429 | has-symbols "^1.0.1" 1430 | internal-slot "^1.0.2" 1431 | regexp.prototype.flags "^1.3.0" 1432 | side-channel "^1.0.2" 1433 | 1434 | string.prototype.trimend@^1.0.1: 1435 | version "1.0.1" 1436 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" 1437 | integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== 1438 | dependencies: 1439 | define-properties "^1.1.3" 1440 | es-abstract "^1.17.5" 1441 | 1442 | string.prototype.trimstart@^1.0.1: 1443 | version "1.0.1" 1444 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" 1445 | integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== 1446 | dependencies: 1447 | define-properties "^1.1.3" 1448 | es-abstract "^1.17.5" 1449 | 1450 | strip-ansi@^5.1.0: 1451 | version "5.2.0" 1452 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1453 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1454 | dependencies: 1455 | ansi-regex "^4.1.0" 1456 | 1457 | strip-ansi@^6.0.0: 1458 | version "6.0.0" 1459 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1460 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1461 | dependencies: 1462 | ansi-regex "^5.0.0" 1463 | 1464 | strip-bom@^3.0.0: 1465 | version "3.0.0" 1466 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1467 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 1468 | 1469 | strip-json-comments@^3.1.0: 1470 | version "3.1.1" 1471 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1472 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1473 | 1474 | supports-color@^5.3.0: 1475 | version "5.5.0" 1476 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1477 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1478 | dependencies: 1479 | has-flag "^3.0.0" 1480 | 1481 | supports-color@^7.1.0: 1482 | version "7.1.0" 1483 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 1484 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 1485 | dependencies: 1486 | has-flag "^4.0.0" 1487 | 1488 | table@^5.2.3: 1489 | version "5.4.6" 1490 | resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 1491 | integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 1492 | dependencies: 1493 | ajv "^6.10.2" 1494 | lodash "^4.17.14" 1495 | slice-ansi "^2.1.0" 1496 | string-width "^3.0.0" 1497 | 1498 | text-table@^0.2.0: 1499 | version "0.2.0" 1500 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1501 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1502 | 1503 | to-fast-properties@^2.0.0: 1504 | version "2.0.0" 1505 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1506 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1507 | 1508 | tsconfig-paths@^3.9.0: 1509 | version "3.9.0" 1510 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" 1511 | integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== 1512 | dependencies: 1513 | "@types/json5" "^0.0.29" 1514 | json5 "^1.0.1" 1515 | minimist "^1.2.0" 1516 | strip-bom "^3.0.0" 1517 | 1518 | tslib@^1.8.1: 1519 | version "1.13.0" 1520 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" 1521 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== 1522 | 1523 | tsutils@^3.17.1: 1524 | version "3.17.1" 1525 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" 1526 | integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 1527 | dependencies: 1528 | tslib "^1.8.1" 1529 | 1530 | type-check@^0.4.0, type-check@~0.4.0: 1531 | version "0.4.0" 1532 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1533 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1534 | dependencies: 1535 | prelude-ls "^1.2.1" 1536 | 1537 | type-fest@^0.8.1: 1538 | version "0.8.1" 1539 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 1540 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 1541 | 1542 | typescript@^3.9.7: 1543 | version "3.9.7" 1544 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" 1545 | integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== 1546 | 1547 | uri-js@^4.2.2: 1548 | version "4.2.2" 1549 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" 1550 | integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== 1551 | dependencies: 1552 | punycode "^2.1.0" 1553 | 1554 | v8-compile-cache@^2.0.3: 1555 | version "2.1.1" 1556 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" 1557 | integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== 1558 | 1559 | validate-npm-package-license@^3.0.1: 1560 | version "3.0.4" 1561 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1562 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1563 | dependencies: 1564 | spdx-correct "^3.0.0" 1565 | spdx-expression-parse "^3.0.0" 1566 | 1567 | which@^2.0.1: 1568 | version "2.0.2" 1569 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1570 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1571 | dependencies: 1572 | isexe "^2.0.0" 1573 | 1574 | word-wrap@^1.2.3: 1575 | version "1.2.3" 1576 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1577 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1578 | 1579 | wrappy@1: 1580 | version "1.0.2" 1581 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1582 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1583 | 1584 | write@1.0.3: 1585 | version "1.0.3" 1586 | resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 1587 | integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 1588 | dependencies: 1589 | mkdirp "^0.5.1" 1590 | --------------------------------------------------------------------------------