├── .babelrc ├── .github └── dependabot.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── data ├── schema.graphql └── schema.json ├── package.json ├── scripts └── updateSchema.js ├── src ├── index.js └── schema.js ├── test └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | time: "09:00" 8 | open-pull-requests-limit: 10 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/graphql-ufc-api/73707d74cce9ed41263e0ed6f12827ecb45da434/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 4a6f616f Gracinha 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # graphql-ufc-api 2 | 3 | GraphQL Server for UFC's public API. 4 | 5 | The data is fetched from UFC's public API: [http://ufc-data-api.ufc.com/api/v3/iphone/fighters/](http://ufc-data-api.ufc.com/api/v3/iphone/fighters/). 6 | 7 | ## React Native + Relay Modern 8 | The app that uses this server is [https://github.com/jgcmarins/react-native-relay-graphql-example](https://github.com/jgcmarins/react-native-relay-graphql-example). 9 | 10 | ## Try it 11 | Live demo [here](https://graphql-ufc-api.now.sh/). 12 | 13 | ## Installation 14 | ``` 15 | $ yarn install 16 | ``` 17 | or 18 | ``` 19 | $ npm install 20 | ``` 21 | 22 | ## Running 23 | ``` 24 | $ yarn start 25 | ``` 26 | or 27 | ``` 28 | $ npm start 29 | ``` 30 | 31 | ## Dependencies 32 | ``` 33 | koa 34 | graphql 35 | ``` 36 | 37 | ## LICENSE 38 | [MIT](https://github.com/jgcmarins/rn-top-ufc-fighters/blob/master/LICENSE) 39 | -------------------------------------------------------------------------------- /data/schema.graphql: -------------------------------------------------------------------------------- 1 | type Fighter { 2 | # The ID of an object 3 | id: ID! 4 | _id: Int 5 | profileImage: String 6 | firstName: String 7 | lastName: String 8 | nickname: String 9 | weightClass: String 10 | wins: Int 11 | losses: Int 12 | draws: Int 13 | beltThumbnail: String 14 | link: String 15 | } 16 | 17 | type Query { 18 | allFighters: [Fighter] 19 | } 20 | -------------------------------------------------------------------------------- /data/schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": { 3 | "__schema": { 4 | "queryType": { 5 | "name": "Query" 6 | }, 7 | "mutationType": null, 8 | "subscriptionType": null, 9 | "types": [ 10 | { 11 | "kind": "OBJECT", 12 | "name": "Query", 13 | "description": null, 14 | "fields": [ 15 | { 16 | "name": "allFighters", 17 | "description": null, 18 | "args": [], 19 | "type": { 20 | "kind": "LIST", 21 | "name": null, 22 | "ofType": { 23 | "kind": "OBJECT", 24 | "name": "Fighter", 25 | "ofType": null 26 | } 27 | }, 28 | "isDeprecated": false, 29 | "deprecationReason": null 30 | } 31 | ], 32 | "inputFields": null, 33 | "interfaces": [], 34 | "enumValues": null, 35 | "possibleTypes": null 36 | }, 37 | { 38 | "kind": "OBJECT", 39 | "name": "Fighter", 40 | "description": null, 41 | "fields": [ 42 | { 43 | "name": "id", 44 | "description": "The ID of an object", 45 | "args": [], 46 | "type": { 47 | "kind": "NON_NULL", 48 | "name": null, 49 | "ofType": { 50 | "kind": "SCALAR", 51 | "name": "ID", 52 | "ofType": null 53 | } 54 | }, 55 | "isDeprecated": false, 56 | "deprecationReason": null 57 | }, 58 | { 59 | "name": "_id", 60 | "description": null, 61 | "args": [], 62 | "type": { 63 | "kind": "SCALAR", 64 | "name": "Int", 65 | "ofType": null 66 | }, 67 | "isDeprecated": false, 68 | "deprecationReason": null 69 | }, 70 | { 71 | "name": "profileImage", 72 | "description": null, 73 | "args": [], 74 | "type": { 75 | "kind": "SCALAR", 76 | "name": "String", 77 | "ofType": null 78 | }, 79 | "isDeprecated": false, 80 | "deprecationReason": null 81 | }, 82 | { 83 | "name": "firstName", 84 | "description": null, 85 | "args": [], 86 | "type": { 87 | "kind": "SCALAR", 88 | "name": "String", 89 | "ofType": null 90 | }, 91 | "isDeprecated": false, 92 | "deprecationReason": null 93 | }, 94 | { 95 | "name": "lastName", 96 | "description": null, 97 | "args": [], 98 | "type": { 99 | "kind": "SCALAR", 100 | "name": "String", 101 | "ofType": null 102 | }, 103 | "isDeprecated": false, 104 | "deprecationReason": null 105 | }, 106 | { 107 | "name": "nickname", 108 | "description": null, 109 | "args": [], 110 | "type": { 111 | "kind": "SCALAR", 112 | "name": "String", 113 | "ofType": null 114 | }, 115 | "isDeprecated": false, 116 | "deprecationReason": null 117 | }, 118 | { 119 | "name": "weightClass", 120 | "description": null, 121 | "args": [], 122 | "type": { 123 | "kind": "SCALAR", 124 | "name": "String", 125 | "ofType": null 126 | }, 127 | "isDeprecated": false, 128 | "deprecationReason": null 129 | }, 130 | { 131 | "name": "wins", 132 | "description": null, 133 | "args": [], 134 | "type": { 135 | "kind": "SCALAR", 136 | "name": "Int", 137 | "ofType": null 138 | }, 139 | "isDeprecated": false, 140 | "deprecationReason": null 141 | }, 142 | { 143 | "name": "losses", 144 | "description": null, 145 | "args": [], 146 | "type": { 147 | "kind": "SCALAR", 148 | "name": "Int", 149 | "ofType": null 150 | }, 151 | "isDeprecated": false, 152 | "deprecationReason": null 153 | }, 154 | { 155 | "name": "draws", 156 | "description": null, 157 | "args": [], 158 | "type": { 159 | "kind": "SCALAR", 160 | "name": "Int", 161 | "ofType": null 162 | }, 163 | "isDeprecated": false, 164 | "deprecationReason": null 165 | }, 166 | { 167 | "name": "beltThumbnail", 168 | "description": null, 169 | "args": [], 170 | "type": { 171 | "kind": "SCALAR", 172 | "name": "String", 173 | "ofType": null 174 | }, 175 | "isDeprecated": false, 176 | "deprecationReason": null 177 | }, 178 | { 179 | "name": "link", 180 | "description": null, 181 | "args": [], 182 | "type": { 183 | "kind": "SCALAR", 184 | "name": "String", 185 | "ofType": null 186 | }, 187 | "isDeprecated": false, 188 | "deprecationReason": null 189 | } 190 | ], 191 | "inputFields": null, 192 | "interfaces": [], 193 | "enumValues": null, 194 | "possibleTypes": null 195 | }, 196 | { 197 | "kind": "SCALAR", 198 | "name": "ID", 199 | "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", 200 | "fields": null, 201 | "inputFields": null, 202 | "interfaces": null, 203 | "enumValues": null, 204 | "possibleTypes": null 205 | }, 206 | { 207 | "kind": "SCALAR", 208 | "name": "Int", 209 | "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. ", 210 | "fields": null, 211 | "inputFields": null, 212 | "interfaces": null, 213 | "enumValues": null, 214 | "possibleTypes": null 215 | }, 216 | { 217 | "kind": "SCALAR", 218 | "name": "String", 219 | "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", 220 | "fields": null, 221 | "inputFields": null, 222 | "interfaces": null, 223 | "enumValues": null, 224 | "possibleTypes": null 225 | }, 226 | { 227 | "kind": "OBJECT", 228 | "name": "__Schema", 229 | "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", 230 | "fields": [ 231 | { 232 | "name": "types", 233 | "description": "A list of all types supported by this server.", 234 | "args": [], 235 | "type": { 236 | "kind": "NON_NULL", 237 | "name": null, 238 | "ofType": { 239 | "kind": "LIST", 240 | "name": null, 241 | "ofType": { 242 | "kind": "NON_NULL", 243 | "name": null, 244 | "ofType": { 245 | "kind": "OBJECT", 246 | "name": "__Type", 247 | "ofType": null 248 | } 249 | } 250 | } 251 | }, 252 | "isDeprecated": false, 253 | "deprecationReason": null 254 | }, 255 | { 256 | "name": "queryType", 257 | "description": "The type that query operations will be rooted at.", 258 | "args": [], 259 | "type": { 260 | "kind": "NON_NULL", 261 | "name": null, 262 | "ofType": { 263 | "kind": "OBJECT", 264 | "name": "__Type", 265 | "ofType": null 266 | } 267 | }, 268 | "isDeprecated": false, 269 | "deprecationReason": null 270 | }, 271 | { 272 | "name": "mutationType", 273 | "description": "If this server supports mutation, the type that mutation operations will be rooted at.", 274 | "args": [], 275 | "type": { 276 | "kind": "OBJECT", 277 | "name": "__Type", 278 | "ofType": null 279 | }, 280 | "isDeprecated": false, 281 | "deprecationReason": null 282 | }, 283 | { 284 | "name": "subscriptionType", 285 | "description": "If this server support subscription, the type that subscription operations will be rooted at.", 286 | "args": [], 287 | "type": { 288 | "kind": "OBJECT", 289 | "name": "__Type", 290 | "ofType": null 291 | }, 292 | "isDeprecated": false, 293 | "deprecationReason": null 294 | }, 295 | { 296 | "name": "directives", 297 | "description": "A list of all directives supported by this server.", 298 | "args": [], 299 | "type": { 300 | "kind": "NON_NULL", 301 | "name": null, 302 | "ofType": { 303 | "kind": "LIST", 304 | "name": null, 305 | "ofType": { 306 | "kind": "NON_NULL", 307 | "name": null, 308 | "ofType": { 309 | "kind": "OBJECT", 310 | "name": "__Directive", 311 | "ofType": null 312 | } 313 | } 314 | } 315 | }, 316 | "isDeprecated": false, 317 | "deprecationReason": null 318 | } 319 | ], 320 | "inputFields": null, 321 | "interfaces": [], 322 | "enumValues": null, 323 | "possibleTypes": null 324 | }, 325 | { 326 | "kind": "OBJECT", 327 | "name": "__Type", 328 | "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", 329 | "fields": [ 330 | { 331 | "name": "kind", 332 | "description": null, 333 | "args": [], 334 | "type": { 335 | "kind": "NON_NULL", 336 | "name": null, 337 | "ofType": { 338 | "kind": "ENUM", 339 | "name": "__TypeKind", 340 | "ofType": null 341 | } 342 | }, 343 | "isDeprecated": false, 344 | "deprecationReason": null 345 | }, 346 | { 347 | "name": "name", 348 | "description": null, 349 | "args": [], 350 | "type": { 351 | "kind": "SCALAR", 352 | "name": "String", 353 | "ofType": null 354 | }, 355 | "isDeprecated": false, 356 | "deprecationReason": null 357 | }, 358 | { 359 | "name": "description", 360 | "description": null, 361 | "args": [], 362 | "type": { 363 | "kind": "SCALAR", 364 | "name": "String", 365 | "ofType": null 366 | }, 367 | "isDeprecated": false, 368 | "deprecationReason": null 369 | }, 370 | { 371 | "name": "fields", 372 | "description": null, 373 | "args": [ 374 | { 375 | "name": "includeDeprecated", 376 | "description": null, 377 | "type": { 378 | "kind": "SCALAR", 379 | "name": "Boolean", 380 | "ofType": null 381 | }, 382 | "defaultValue": "false" 383 | } 384 | ], 385 | "type": { 386 | "kind": "LIST", 387 | "name": null, 388 | "ofType": { 389 | "kind": "NON_NULL", 390 | "name": null, 391 | "ofType": { 392 | "kind": "OBJECT", 393 | "name": "__Field", 394 | "ofType": null 395 | } 396 | } 397 | }, 398 | "isDeprecated": false, 399 | "deprecationReason": null 400 | }, 401 | { 402 | "name": "interfaces", 403 | "description": null, 404 | "args": [], 405 | "type": { 406 | "kind": "LIST", 407 | "name": null, 408 | "ofType": { 409 | "kind": "NON_NULL", 410 | "name": null, 411 | "ofType": { 412 | "kind": "OBJECT", 413 | "name": "__Type", 414 | "ofType": null 415 | } 416 | } 417 | }, 418 | "isDeprecated": false, 419 | "deprecationReason": null 420 | }, 421 | { 422 | "name": "possibleTypes", 423 | "description": null, 424 | "args": [], 425 | "type": { 426 | "kind": "LIST", 427 | "name": null, 428 | "ofType": { 429 | "kind": "NON_NULL", 430 | "name": null, 431 | "ofType": { 432 | "kind": "OBJECT", 433 | "name": "__Type", 434 | "ofType": null 435 | } 436 | } 437 | }, 438 | "isDeprecated": false, 439 | "deprecationReason": null 440 | }, 441 | { 442 | "name": "enumValues", 443 | "description": null, 444 | "args": [ 445 | { 446 | "name": "includeDeprecated", 447 | "description": null, 448 | "type": { 449 | "kind": "SCALAR", 450 | "name": "Boolean", 451 | "ofType": null 452 | }, 453 | "defaultValue": "false" 454 | } 455 | ], 456 | "type": { 457 | "kind": "LIST", 458 | "name": null, 459 | "ofType": { 460 | "kind": "NON_NULL", 461 | "name": null, 462 | "ofType": { 463 | "kind": "OBJECT", 464 | "name": "__EnumValue", 465 | "ofType": null 466 | } 467 | } 468 | }, 469 | "isDeprecated": false, 470 | "deprecationReason": null 471 | }, 472 | { 473 | "name": "inputFields", 474 | "description": null, 475 | "args": [], 476 | "type": { 477 | "kind": "LIST", 478 | "name": null, 479 | "ofType": { 480 | "kind": "NON_NULL", 481 | "name": null, 482 | "ofType": { 483 | "kind": "OBJECT", 484 | "name": "__InputValue", 485 | "ofType": null 486 | } 487 | } 488 | }, 489 | "isDeprecated": false, 490 | "deprecationReason": null 491 | }, 492 | { 493 | "name": "ofType", 494 | "description": null, 495 | "args": [], 496 | "type": { 497 | "kind": "OBJECT", 498 | "name": "__Type", 499 | "ofType": null 500 | }, 501 | "isDeprecated": false, 502 | "deprecationReason": null 503 | } 504 | ], 505 | "inputFields": null, 506 | "interfaces": [], 507 | "enumValues": null, 508 | "possibleTypes": null 509 | }, 510 | { 511 | "kind": "ENUM", 512 | "name": "__TypeKind", 513 | "description": "An enum describing what kind of type a given `__Type` is.", 514 | "fields": null, 515 | "inputFields": null, 516 | "interfaces": null, 517 | "enumValues": [ 518 | { 519 | "name": "SCALAR", 520 | "description": "Indicates this type is a scalar.", 521 | "isDeprecated": false, 522 | "deprecationReason": null 523 | }, 524 | { 525 | "name": "OBJECT", 526 | "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", 527 | "isDeprecated": false, 528 | "deprecationReason": null 529 | }, 530 | { 531 | "name": "INTERFACE", 532 | "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.", 533 | "isDeprecated": false, 534 | "deprecationReason": null 535 | }, 536 | { 537 | "name": "UNION", 538 | "description": "Indicates this type is a union. `possibleTypes` is a valid field.", 539 | "isDeprecated": false, 540 | "deprecationReason": null 541 | }, 542 | { 543 | "name": "ENUM", 544 | "description": "Indicates this type is an enum. `enumValues` is a valid field.", 545 | "isDeprecated": false, 546 | "deprecationReason": null 547 | }, 548 | { 549 | "name": "INPUT_OBJECT", 550 | "description": "Indicates this type is an input object. `inputFields` is a valid field.", 551 | "isDeprecated": false, 552 | "deprecationReason": null 553 | }, 554 | { 555 | "name": "LIST", 556 | "description": "Indicates this type is a list. `ofType` is a valid field.", 557 | "isDeprecated": false, 558 | "deprecationReason": null 559 | }, 560 | { 561 | "name": "NON_NULL", 562 | "description": "Indicates this type is a non-null. `ofType` is a valid field.", 563 | "isDeprecated": false, 564 | "deprecationReason": null 565 | } 566 | ], 567 | "possibleTypes": null 568 | }, 569 | { 570 | "kind": "SCALAR", 571 | "name": "Boolean", 572 | "description": "The `Boolean` scalar type represents `true` or `false`.", 573 | "fields": null, 574 | "inputFields": null, 575 | "interfaces": null, 576 | "enumValues": null, 577 | "possibleTypes": null 578 | }, 579 | { 580 | "kind": "OBJECT", 581 | "name": "__Field", 582 | "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", 583 | "fields": [ 584 | { 585 | "name": "name", 586 | "description": null, 587 | "args": [], 588 | "type": { 589 | "kind": "NON_NULL", 590 | "name": null, 591 | "ofType": { 592 | "kind": "SCALAR", 593 | "name": "String", 594 | "ofType": null 595 | } 596 | }, 597 | "isDeprecated": false, 598 | "deprecationReason": null 599 | }, 600 | { 601 | "name": "description", 602 | "description": null, 603 | "args": [], 604 | "type": { 605 | "kind": "SCALAR", 606 | "name": "String", 607 | "ofType": null 608 | }, 609 | "isDeprecated": false, 610 | "deprecationReason": null 611 | }, 612 | { 613 | "name": "args", 614 | "description": null, 615 | "args": [], 616 | "type": { 617 | "kind": "NON_NULL", 618 | "name": null, 619 | "ofType": { 620 | "kind": "LIST", 621 | "name": null, 622 | "ofType": { 623 | "kind": "NON_NULL", 624 | "name": null, 625 | "ofType": { 626 | "kind": "OBJECT", 627 | "name": "__InputValue", 628 | "ofType": null 629 | } 630 | } 631 | } 632 | }, 633 | "isDeprecated": false, 634 | "deprecationReason": null 635 | }, 636 | { 637 | "name": "type", 638 | "description": null, 639 | "args": [], 640 | "type": { 641 | "kind": "NON_NULL", 642 | "name": null, 643 | "ofType": { 644 | "kind": "OBJECT", 645 | "name": "__Type", 646 | "ofType": null 647 | } 648 | }, 649 | "isDeprecated": false, 650 | "deprecationReason": null 651 | }, 652 | { 653 | "name": "isDeprecated", 654 | "description": null, 655 | "args": [], 656 | "type": { 657 | "kind": "NON_NULL", 658 | "name": null, 659 | "ofType": { 660 | "kind": "SCALAR", 661 | "name": "Boolean", 662 | "ofType": null 663 | } 664 | }, 665 | "isDeprecated": false, 666 | "deprecationReason": null 667 | }, 668 | { 669 | "name": "deprecationReason", 670 | "description": null, 671 | "args": [], 672 | "type": { 673 | "kind": "SCALAR", 674 | "name": "String", 675 | "ofType": null 676 | }, 677 | "isDeprecated": false, 678 | "deprecationReason": null 679 | } 680 | ], 681 | "inputFields": null, 682 | "interfaces": [], 683 | "enumValues": null, 684 | "possibleTypes": null 685 | }, 686 | { 687 | "kind": "OBJECT", 688 | "name": "__InputValue", 689 | "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", 690 | "fields": [ 691 | { 692 | "name": "name", 693 | "description": null, 694 | "args": [], 695 | "type": { 696 | "kind": "NON_NULL", 697 | "name": null, 698 | "ofType": { 699 | "kind": "SCALAR", 700 | "name": "String", 701 | "ofType": null 702 | } 703 | }, 704 | "isDeprecated": false, 705 | "deprecationReason": null 706 | }, 707 | { 708 | "name": "description", 709 | "description": null, 710 | "args": [], 711 | "type": { 712 | "kind": "SCALAR", 713 | "name": "String", 714 | "ofType": null 715 | }, 716 | "isDeprecated": false, 717 | "deprecationReason": null 718 | }, 719 | { 720 | "name": "type", 721 | "description": null, 722 | "args": [], 723 | "type": { 724 | "kind": "NON_NULL", 725 | "name": null, 726 | "ofType": { 727 | "kind": "OBJECT", 728 | "name": "__Type", 729 | "ofType": null 730 | } 731 | }, 732 | "isDeprecated": false, 733 | "deprecationReason": null 734 | }, 735 | { 736 | "name": "defaultValue", 737 | "description": "A GraphQL-formatted string representing the default value for this input value.", 738 | "args": [], 739 | "type": { 740 | "kind": "SCALAR", 741 | "name": "String", 742 | "ofType": null 743 | }, 744 | "isDeprecated": false, 745 | "deprecationReason": null 746 | } 747 | ], 748 | "inputFields": null, 749 | "interfaces": [], 750 | "enumValues": null, 751 | "possibleTypes": null 752 | }, 753 | { 754 | "kind": "OBJECT", 755 | "name": "__EnumValue", 756 | "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", 757 | "fields": [ 758 | { 759 | "name": "name", 760 | "description": null, 761 | "args": [], 762 | "type": { 763 | "kind": "NON_NULL", 764 | "name": null, 765 | "ofType": { 766 | "kind": "SCALAR", 767 | "name": "String", 768 | "ofType": null 769 | } 770 | }, 771 | "isDeprecated": false, 772 | "deprecationReason": null 773 | }, 774 | { 775 | "name": "description", 776 | "description": null, 777 | "args": [], 778 | "type": { 779 | "kind": "SCALAR", 780 | "name": "String", 781 | "ofType": null 782 | }, 783 | "isDeprecated": false, 784 | "deprecationReason": null 785 | }, 786 | { 787 | "name": "isDeprecated", 788 | "description": null, 789 | "args": [], 790 | "type": { 791 | "kind": "NON_NULL", 792 | "name": null, 793 | "ofType": { 794 | "kind": "SCALAR", 795 | "name": "Boolean", 796 | "ofType": null 797 | } 798 | }, 799 | "isDeprecated": false, 800 | "deprecationReason": null 801 | }, 802 | { 803 | "name": "deprecationReason", 804 | "description": null, 805 | "args": [], 806 | "type": { 807 | "kind": "SCALAR", 808 | "name": "String", 809 | "ofType": null 810 | }, 811 | "isDeprecated": false, 812 | "deprecationReason": null 813 | } 814 | ], 815 | "inputFields": null, 816 | "interfaces": [], 817 | "enumValues": null, 818 | "possibleTypes": null 819 | }, 820 | { 821 | "kind": "OBJECT", 822 | "name": "__Directive", 823 | "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", 824 | "fields": [ 825 | { 826 | "name": "name", 827 | "description": null, 828 | "args": [], 829 | "type": { 830 | "kind": "NON_NULL", 831 | "name": null, 832 | "ofType": { 833 | "kind": "SCALAR", 834 | "name": "String", 835 | "ofType": null 836 | } 837 | }, 838 | "isDeprecated": false, 839 | "deprecationReason": null 840 | }, 841 | { 842 | "name": "description", 843 | "description": null, 844 | "args": [], 845 | "type": { 846 | "kind": "SCALAR", 847 | "name": "String", 848 | "ofType": null 849 | }, 850 | "isDeprecated": false, 851 | "deprecationReason": null 852 | }, 853 | { 854 | "name": "locations", 855 | "description": null, 856 | "args": [], 857 | "type": { 858 | "kind": "NON_NULL", 859 | "name": null, 860 | "ofType": { 861 | "kind": "LIST", 862 | "name": null, 863 | "ofType": { 864 | "kind": "NON_NULL", 865 | "name": null, 866 | "ofType": { 867 | "kind": "ENUM", 868 | "name": "__DirectiveLocation", 869 | "ofType": null 870 | } 871 | } 872 | } 873 | }, 874 | "isDeprecated": false, 875 | "deprecationReason": null 876 | }, 877 | { 878 | "name": "args", 879 | "description": null, 880 | "args": [], 881 | "type": { 882 | "kind": "NON_NULL", 883 | "name": null, 884 | "ofType": { 885 | "kind": "LIST", 886 | "name": null, 887 | "ofType": { 888 | "kind": "NON_NULL", 889 | "name": null, 890 | "ofType": { 891 | "kind": "OBJECT", 892 | "name": "__InputValue", 893 | "ofType": null 894 | } 895 | } 896 | } 897 | }, 898 | "isDeprecated": false, 899 | "deprecationReason": null 900 | }, 901 | { 902 | "name": "onOperation", 903 | "description": null, 904 | "args": [], 905 | "type": { 906 | "kind": "NON_NULL", 907 | "name": null, 908 | "ofType": { 909 | "kind": "SCALAR", 910 | "name": "Boolean", 911 | "ofType": null 912 | } 913 | }, 914 | "isDeprecated": true, 915 | "deprecationReason": "Use `locations`." 916 | }, 917 | { 918 | "name": "onFragment", 919 | "description": null, 920 | "args": [], 921 | "type": { 922 | "kind": "NON_NULL", 923 | "name": null, 924 | "ofType": { 925 | "kind": "SCALAR", 926 | "name": "Boolean", 927 | "ofType": null 928 | } 929 | }, 930 | "isDeprecated": true, 931 | "deprecationReason": "Use `locations`." 932 | }, 933 | { 934 | "name": "onField", 935 | "description": null, 936 | "args": [], 937 | "type": { 938 | "kind": "NON_NULL", 939 | "name": null, 940 | "ofType": { 941 | "kind": "SCALAR", 942 | "name": "Boolean", 943 | "ofType": null 944 | } 945 | }, 946 | "isDeprecated": true, 947 | "deprecationReason": "Use `locations`." 948 | } 949 | ], 950 | "inputFields": null, 951 | "interfaces": [], 952 | "enumValues": null, 953 | "possibleTypes": null 954 | }, 955 | { 956 | "kind": "ENUM", 957 | "name": "__DirectiveLocation", 958 | "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", 959 | "fields": null, 960 | "inputFields": null, 961 | "interfaces": null, 962 | "enumValues": [ 963 | { 964 | "name": "QUERY", 965 | "description": "Location adjacent to a query operation.", 966 | "isDeprecated": false, 967 | "deprecationReason": null 968 | }, 969 | { 970 | "name": "MUTATION", 971 | "description": "Location adjacent to a mutation operation.", 972 | "isDeprecated": false, 973 | "deprecationReason": null 974 | }, 975 | { 976 | "name": "SUBSCRIPTION", 977 | "description": "Location adjacent to a subscription operation.", 978 | "isDeprecated": false, 979 | "deprecationReason": null 980 | }, 981 | { 982 | "name": "FIELD", 983 | "description": "Location adjacent to a field.", 984 | "isDeprecated": false, 985 | "deprecationReason": null 986 | }, 987 | { 988 | "name": "FRAGMENT_DEFINITION", 989 | "description": "Location adjacent to a fragment definition.", 990 | "isDeprecated": false, 991 | "deprecationReason": null 992 | }, 993 | { 994 | "name": "FRAGMENT_SPREAD", 995 | "description": "Location adjacent to a fragment spread.", 996 | "isDeprecated": false, 997 | "deprecationReason": null 998 | }, 999 | { 1000 | "name": "INLINE_FRAGMENT", 1001 | "description": "Location adjacent to an inline fragment.", 1002 | "isDeprecated": false, 1003 | "deprecationReason": null 1004 | }, 1005 | { 1006 | "name": "SCHEMA", 1007 | "description": "Location adjacent to a schema definition.", 1008 | "isDeprecated": false, 1009 | "deprecationReason": null 1010 | }, 1011 | { 1012 | "name": "SCALAR", 1013 | "description": "Location adjacent to a scalar definition.", 1014 | "isDeprecated": false, 1015 | "deprecationReason": null 1016 | }, 1017 | { 1018 | "name": "OBJECT", 1019 | "description": "Location adjacent to an object type definition.", 1020 | "isDeprecated": false, 1021 | "deprecationReason": null 1022 | }, 1023 | { 1024 | "name": "FIELD_DEFINITION", 1025 | "description": "Location adjacent to a field definition.", 1026 | "isDeprecated": false, 1027 | "deprecationReason": null 1028 | }, 1029 | { 1030 | "name": "ARGUMENT_DEFINITION", 1031 | "description": "Location adjacent to an argument definition.", 1032 | "isDeprecated": false, 1033 | "deprecationReason": null 1034 | }, 1035 | { 1036 | "name": "INTERFACE", 1037 | "description": "Location adjacent to an interface definition.", 1038 | "isDeprecated": false, 1039 | "deprecationReason": null 1040 | }, 1041 | { 1042 | "name": "UNION", 1043 | "description": "Location adjacent to a union definition.", 1044 | "isDeprecated": false, 1045 | "deprecationReason": null 1046 | }, 1047 | { 1048 | "name": "ENUM", 1049 | "description": "Location adjacent to an enum definition.", 1050 | "isDeprecated": false, 1051 | "deprecationReason": null 1052 | }, 1053 | { 1054 | "name": "ENUM_VALUE", 1055 | "description": "Location adjacent to an enum value definition.", 1056 | "isDeprecated": false, 1057 | "deprecationReason": null 1058 | }, 1059 | { 1060 | "name": "INPUT_OBJECT", 1061 | "description": "Location adjacent to an input object type definition.", 1062 | "isDeprecated": false, 1063 | "deprecationReason": null 1064 | }, 1065 | { 1066 | "name": "INPUT_FIELD_DEFINITION", 1067 | "description": "Location adjacent to an input object field definition.", 1068 | "isDeprecated": false, 1069 | "deprecationReason": null 1070 | } 1071 | ], 1072 | "possibleTypes": null 1073 | } 1074 | ], 1075 | "directives": [ 1076 | { 1077 | "name": "include", 1078 | "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", 1079 | "locations": [ 1080 | "FIELD", 1081 | "FRAGMENT_SPREAD", 1082 | "INLINE_FRAGMENT" 1083 | ], 1084 | "args": [ 1085 | { 1086 | "name": "if", 1087 | "description": "Included when true.", 1088 | "type": { 1089 | "kind": "NON_NULL", 1090 | "name": null, 1091 | "ofType": { 1092 | "kind": "SCALAR", 1093 | "name": "Boolean", 1094 | "ofType": null 1095 | } 1096 | }, 1097 | "defaultValue": null 1098 | } 1099 | ] 1100 | }, 1101 | { 1102 | "name": "skip", 1103 | "description": "Directs the executor to skip this field or fragment when the `if` argument is true.", 1104 | "locations": [ 1105 | "FIELD", 1106 | "FRAGMENT_SPREAD", 1107 | "INLINE_FRAGMENT" 1108 | ], 1109 | "args": [ 1110 | { 1111 | "name": "if", 1112 | "description": "Skipped when true.", 1113 | "type": { 1114 | "kind": "NON_NULL", 1115 | "name": null, 1116 | "ofType": { 1117 | "kind": "SCALAR", 1118 | "name": "Boolean", 1119 | "ofType": null 1120 | } 1121 | }, 1122 | "defaultValue": null 1123 | } 1124 | ] 1125 | }, 1126 | { 1127 | "name": "deprecated", 1128 | "description": "Marks an element of a GraphQL schema as no longer supported.", 1129 | "locations": [ 1130 | "FIELD_DEFINITION", 1131 | "ENUM_VALUE" 1132 | ], 1133 | "args": [ 1134 | { 1135 | "name": "reason", 1136 | "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).", 1137 | "type": { 1138 | "kind": "SCALAR", 1139 | "name": "String", 1140 | "ofType": null 1141 | }, 1142 | "defaultValue": "\"No longer supported\"" 1143 | } 1144 | ] 1145 | } 1146 | ] 1147 | } 1148 | } 1149 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "graphql-ufc-api", 3 | "version": "1.0.0", 4 | "description": "GraphQL Server", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "start": "node lib/index.js", 8 | "server": "nodemon src/index.js --exec babel-node", 9 | "test": "mocha --compilers js:babel-register", 10 | "build": "babel src -d lib", 11 | "prepublish": "npm run build", 12 | "update-schema": "babel-node ./scripts/updateSchema.js" 13 | }, 14 | "keywords": [ 15 | "graphql", 16 | "nodejs", 17 | "koa" 18 | ], 19 | "author": { 20 | "name": "Joao Marins", 21 | "email": "jgcmarins@gmail.com", 22 | "url": "https://github.com/jgcmarins" 23 | }, 24 | "license": "MIT", 25 | "dependencies": { 26 | "babel-polyfill": "^6.23.0", 27 | "graphiql": "^0.10.2", 28 | "graphql": "^0.9.6", 29 | "graphql-relay": "^0.6.0", 30 | "koa": "^2.13.1", 31 | "koa-graphql": "^0.8.0", 32 | "node-fetch": "^2.6.1" 33 | }, 34 | "optionalDependencies": { 35 | "react": "^17.0.2", 36 | "react-dom": "^17.0.2" 37 | }, 38 | "devDependencies": { 39 | "babel-cli": "^6.9.0", 40 | "babel-preset-es2015": "^6.9.0", 41 | "babel-preset-stage-0": "^6.24.1", 42 | "babel-register": "^6.9.0", 43 | "nodemon": "^2.0.12" 44 | }, 45 | "directories": { 46 | "test": "test" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /scripts/updateSchema.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env babel-node --optional es7.asyncFunctions 2 | 3 | import fs from 'fs'; 4 | import path from 'path'; 5 | import { schema } from '../src/schema' 6 | import { graphql } from 'graphql'; 7 | import { introspectionQuery, printSchema } from 'graphql/utilities'; 8 | 9 | // Save JSON of full schema introspection for Babel Relay Plugin to use 10 | (async () => { 11 | var result = await (graphql(schema, introspectionQuery)); 12 | if (result.errors) { 13 | console.error( 14 | 'ERROR introspecting schema: ', 15 | JSON.stringify(result.errors, null, 2) 16 | ); 17 | } else { 18 | fs.writeFileSync( 19 | path.join(__dirname, '../data/schema.json'), 20 | JSON.stringify(result, null, 2) 21 | ); 22 | } 23 | })(); 24 | 25 | // Save user readable type system shorthand of schema 26 | fs.writeFileSync( 27 | path.join(__dirname, '../data/schema.graphql'), 28 | printSchema(schema) 29 | ); 30 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import "babel-polyfill" 2 | import Koa from 'koa' 3 | import graphqlHttp from 'koa-graphql' 4 | //import { print } from 'graphql/language'; 5 | 6 | import { schema } from './schema' 7 | 8 | const PORT = process.env.PORT || 5000 9 | 10 | var app = new Koa() 11 | 12 | app.use(graphqlHttp({ 13 | schema, 14 | graphiql: true, 15 | /*extensions: ({ document, variables, operationName, result }) => { 16 | console.log(print(document)); 17 | console.log(variables); 18 | console.log(result); 19 | },*/ 20 | })) 21 | 22 | app.listen(PORT, () => { 23 | console.log('Server listening at port ' + PORT) 24 | }) 25 | -------------------------------------------------------------------------------- /src/schema.js: -------------------------------------------------------------------------------- 1 | import { 2 | GraphQLSchema, 3 | GraphQLObjectType, 4 | GraphQLString, 5 | GraphQLInt, 6 | GraphQLList 7 | } from 'graphql' 8 | import { 9 | globalIdField, 10 | } from 'graphql-relay'; 11 | 12 | import fetch from 'node-fetch' 13 | 14 | const FighterType = new GraphQLObjectType({ 15 | name: 'Fighter', 16 | fields: () => ({ 17 | id: globalIdField('Fighter'), 18 | _id: { 19 | type: GraphQLInt, 20 | resolve: fighter => fighter.id 21 | }, 22 | profileImage: { 23 | type: GraphQLString, 24 | resolve: fighter => fighter.profile_image 25 | }, 26 | firstName: { 27 | type: GraphQLString, 28 | resolve: fighter => fighter.first_name 29 | }, 30 | lastName: { 31 | type: GraphQLString, 32 | resolve: fighter => fighter.last_name 33 | }, 34 | nickname: { type: GraphQLString }, 35 | weightClass: { 36 | type: GraphQLString, 37 | resolve: fighter => fighter.weight_class 38 | }, 39 | wins: { type: GraphQLInt }, 40 | losses: { type: GraphQLInt }, 41 | draws: { type: GraphQLInt }, 42 | beltThumbnail: { 43 | type: GraphQLString, 44 | resolve: fighter => fighter.belt_thumbnail 45 | }, 46 | link: { type: GraphQLString } 47 | }) 48 | }) 49 | 50 | const QueryType = new GraphQLObjectType({ 51 | name: 'Query', 52 | fields: () => ({ 53 | allFighters: { 54 | type: new GraphQLList(FighterType), 55 | resolve: async () => { 56 | const resp = await fetch('http://ufc-data-api.ufc.com/api/v3/iphone/fighters/'); 57 | const data = await resp.json(); 58 | return data; 59 | } 60 | } 61 | }) 62 | }) 63 | 64 | export const schema = new GraphQLSchema({ 65 | query: QueryType 66 | }) 67 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | import { expect } from 'chai'; 2 | import app from '../src'; 3 | 4 | describe('sanity', () => { 5 | it('should exist', () => { 6 | expect('it').be.equal(true); 7 | }); 8 | }); 9 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@sindresorhus/is@^0.14.0": 6 | version "0.14.0" 7 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" 8 | 9 | "@szmarczak/http-timer@^1.1.2": 10 | version "1.1.2" 11 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" 12 | dependencies: 13 | defer-to-connect "^1.0.1" 14 | 15 | "@types/color-name@^1.1.1": 16 | version "1.1.1" 17 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 18 | 19 | abbrev@1: 20 | version "1.1.1" 21 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 22 | 23 | accepts@^1.3.5: 24 | version "1.3.7" 25 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" 26 | dependencies: 27 | mime-types "~2.1.24" 28 | negotiator "0.6.2" 29 | 30 | ajv@^4.9.1: 31 | version "4.11.8" 32 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 33 | dependencies: 34 | co "^4.6.0" 35 | json-stable-stringify "^1.0.1" 36 | 37 | ansi-align@^3.0.0: 38 | version "3.0.0" 39 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" 40 | dependencies: 41 | string-width "^3.0.0" 42 | 43 | ansi-regex@^2.0.0: 44 | version "2.1.1" 45 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 46 | 47 | ansi-regex@^4.1.0: 48 | version "4.1.0" 49 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 50 | 51 | ansi-regex@^5.0.0: 52 | version "5.0.0" 53 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 54 | 55 | ansi-styles@^2.2.1: 56 | version "2.2.1" 57 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 58 | 59 | ansi-styles@^4.1.0: 60 | version "4.2.1" 61 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 62 | dependencies: 63 | "@types/color-name" "^1.1.1" 64 | color-convert "^2.0.1" 65 | 66 | any-promise@^1.0.0, any-promise@^1.1.0: 67 | version "1.3.0" 68 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 69 | 70 | anymatch@^1.3.0: 71 | version "1.3.2" 72 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 73 | dependencies: 74 | micromatch "^2.1.5" 75 | normalize-path "^2.0.0" 76 | 77 | anymatch@~3.1.1: 78 | version "3.1.1" 79 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 80 | dependencies: 81 | normalize-path "^3.0.0" 82 | picomatch "^2.0.4" 83 | 84 | aproba@^1.0.3: 85 | version "1.2.0" 86 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 87 | 88 | are-we-there-yet@~1.1.2: 89 | version "1.1.4" 90 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 91 | dependencies: 92 | delegates "^1.0.0" 93 | readable-stream "^2.0.6" 94 | 95 | argparse@^1.0.7: 96 | version "1.0.10" 97 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 98 | dependencies: 99 | sprintf-js "~1.0.2" 100 | 101 | arr-diff@^2.0.0: 102 | version "2.0.0" 103 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 104 | dependencies: 105 | arr-flatten "^1.0.1" 106 | 107 | arr-flatten@^1.0.1: 108 | version "1.1.0" 109 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 110 | 111 | array-unique@^0.2.1: 112 | version "0.2.1" 113 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 114 | 115 | asn1@~0.2.3: 116 | version "0.2.4" 117 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 118 | dependencies: 119 | safer-buffer "~2.1.0" 120 | 121 | assert-plus@1.0.0, assert-plus@^1.0.0: 122 | version "1.0.0" 123 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 124 | 125 | assert-plus@^0.2.0: 126 | version "0.2.0" 127 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 128 | 129 | async-each@^1.0.0: 130 | version "1.0.1" 131 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 132 | 133 | asynckit@^0.4.0: 134 | version "0.4.0" 135 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 136 | 137 | aws-sign2@~0.6.0: 138 | version "0.6.0" 139 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 140 | 141 | aws4@^1.2.1: 142 | version "1.6.0" 143 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 144 | 145 | babel-cli@^6.9.0: 146 | version "6.26.0" 147 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 148 | dependencies: 149 | babel-core "^6.26.0" 150 | babel-polyfill "^6.26.0" 151 | babel-register "^6.26.0" 152 | babel-runtime "^6.26.0" 153 | commander "^2.11.0" 154 | convert-source-map "^1.5.0" 155 | fs-readdir-recursive "^1.0.0" 156 | glob "^7.1.2" 157 | lodash "^4.17.4" 158 | output-file-sync "^1.1.2" 159 | path-is-absolute "^1.0.1" 160 | slash "^1.0.0" 161 | source-map "^0.5.6" 162 | v8flags "^2.1.1" 163 | optionalDependencies: 164 | chokidar "^1.6.1" 165 | 166 | babel-code-frame@^6.26.0: 167 | version "6.26.0" 168 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 169 | dependencies: 170 | chalk "^1.1.3" 171 | esutils "^2.0.2" 172 | js-tokens "^3.0.2" 173 | 174 | babel-core@^6.26.0: 175 | version "6.26.0" 176 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 177 | dependencies: 178 | babel-code-frame "^6.26.0" 179 | babel-generator "^6.26.0" 180 | babel-helpers "^6.24.1" 181 | babel-messages "^6.23.0" 182 | babel-register "^6.26.0" 183 | babel-runtime "^6.26.0" 184 | babel-template "^6.26.0" 185 | babel-traverse "^6.26.0" 186 | babel-types "^6.26.0" 187 | babylon "^6.18.0" 188 | convert-source-map "^1.5.0" 189 | debug "^2.6.8" 190 | json5 "^0.5.1" 191 | lodash "^4.17.4" 192 | minimatch "^3.0.4" 193 | path-is-absolute "^1.0.1" 194 | private "^0.1.7" 195 | slash "^1.0.0" 196 | source-map "^0.5.6" 197 | 198 | babel-generator@^6.26.0: 199 | version "6.26.0" 200 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 201 | dependencies: 202 | babel-messages "^6.23.0" 203 | babel-runtime "^6.26.0" 204 | babel-types "^6.26.0" 205 | detect-indent "^4.0.0" 206 | jsesc "^1.3.0" 207 | lodash "^4.17.4" 208 | source-map "^0.5.6" 209 | trim-right "^1.0.1" 210 | 211 | babel-helper-bindify-decorators@^6.24.1: 212 | version "6.24.1" 213 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 214 | dependencies: 215 | babel-runtime "^6.22.0" 216 | babel-traverse "^6.24.1" 217 | babel-types "^6.24.1" 218 | 219 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 220 | version "6.24.1" 221 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 222 | dependencies: 223 | babel-helper-explode-assignable-expression "^6.24.1" 224 | babel-runtime "^6.22.0" 225 | babel-types "^6.24.1" 226 | 227 | babel-helper-call-delegate@^6.24.1: 228 | version "6.24.1" 229 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 230 | dependencies: 231 | babel-helper-hoist-variables "^6.24.1" 232 | babel-runtime "^6.22.0" 233 | babel-traverse "^6.24.1" 234 | babel-types "^6.24.1" 235 | 236 | babel-helper-define-map@^6.24.1: 237 | version "6.26.0" 238 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 239 | dependencies: 240 | babel-helper-function-name "^6.24.1" 241 | babel-runtime "^6.26.0" 242 | babel-types "^6.26.0" 243 | lodash "^4.17.4" 244 | 245 | babel-helper-explode-assignable-expression@^6.24.1: 246 | version "6.24.1" 247 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 248 | dependencies: 249 | babel-runtime "^6.22.0" 250 | babel-traverse "^6.24.1" 251 | babel-types "^6.24.1" 252 | 253 | babel-helper-explode-class@^6.24.1: 254 | version "6.24.1" 255 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 256 | dependencies: 257 | babel-helper-bindify-decorators "^6.24.1" 258 | babel-runtime "^6.22.0" 259 | babel-traverse "^6.24.1" 260 | babel-types "^6.24.1" 261 | 262 | babel-helper-function-name@^6.24.1: 263 | version "6.24.1" 264 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 265 | dependencies: 266 | babel-helper-get-function-arity "^6.24.1" 267 | babel-runtime "^6.22.0" 268 | babel-template "^6.24.1" 269 | babel-traverse "^6.24.1" 270 | babel-types "^6.24.1" 271 | 272 | babel-helper-get-function-arity@^6.24.1: 273 | version "6.24.1" 274 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 275 | dependencies: 276 | babel-runtime "^6.22.0" 277 | babel-types "^6.24.1" 278 | 279 | babel-helper-hoist-variables@^6.24.1: 280 | version "6.24.1" 281 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 282 | dependencies: 283 | babel-runtime "^6.22.0" 284 | babel-types "^6.24.1" 285 | 286 | babel-helper-optimise-call-expression@^6.24.1: 287 | version "6.24.1" 288 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 289 | dependencies: 290 | babel-runtime "^6.22.0" 291 | babel-types "^6.24.1" 292 | 293 | babel-helper-regex@^6.24.1: 294 | version "6.26.0" 295 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 296 | dependencies: 297 | babel-runtime "^6.26.0" 298 | babel-types "^6.26.0" 299 | lodash "^4.17.4" 300 | 301 | babel-helper-remap-async-to-generator@^6.24.1: 302 | version "6.24.1" 303 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 304 | dependencies: 305 | babel-helper-function-name "^6.24.1" 306 | babel-runtime "^6.22.0" 307 | babel-template "^6.24.1" 308 | babel-traverse "^6.24.1" 309 | babel-types "^6.24.1" 310 | 311 | babel-helper-replace-supers@^6.24.1: 312 | version "6.24.1" 313 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 314 | dependencies: 315 | babel-helper-optimise-call-expression "^6.24.1" 316 | babel-messages "^6.23.0" 317 | babel-runtime "^6.22.0" 318 | babel-template "^6.24.1" 319 | babel-traverse "^6.24.1" 320 | babel-types "^6.24.1" 321 | 322 | babel-helpers@^6.24.1: 323 | version "6.24.1" 324 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 325 | dependencies: 326 | babel-runtime "^6.22.0" 327 | babel-template "^6.24.1" 328 | 329 | babel-messages@^6.23.0: 330 | version "6.23.0" 331 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 332 | dependencies: 333 | babel-runtime "^6.22.0" 334 | 335 | babel-plugin-check-es2015-constants@^6.22.0: 336 | version "6.22.0" 337 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 338 | dependencies: 339 | babel-runtime "^6.22.0" 340 | 341 | babel-plugin-syntax-async-functions@^6.8.0: 342 | version "6.13.0" 343 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 344 | 345 | babel-plugin-syntax-async-generators@^6.5.0: 346 | version "6.13.0" 347 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 348 | 349 | babel-plugin-syntax-class-constructor-call@^6.18.0: 350 | version "6.18.0" 351 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 352 | 353 | babel-plugin-syntax-class-properties@^6.8.0: 354 | version "6.13.0" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 356 | 357 | babel-plugin-syntax-decorators@^6.13.0: 358 | version "6.13.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 360 | 361 | babel-plugin-syntax-do-expressions@^6.8.0: 362 | version "6.13.0" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-do-expressions/-/babel-plugin-syntax-do-expressions-6.13.0.tgz#5747756139aa26d390d09410b03744ba07e4796d" 364 | 365 | babel-plugin-syntax-dynamic-import@^6.18.0: 366 | version "6.18.0" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 368 | 369 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 370 | version "6.13.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 372 | 373 | babel-plugin-syntax-export-extensions@^6.8.0: 374 | version "6.13.0" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 376 | 377 | babel-plugin-syntax-function-bind@^6.8.0: 378 | version "6.13.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-function-bind/-/babel-plugin-syntax-function-bind-6.13.0.tgz#48c495f177bdf31a981e732f55adc0bdd2601f46" 380 | 381 | babel-plugin-syntax-object-rest-spread@^6.8.0: 382 | version "6.13.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 384 | 385 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 386 | version "6.22.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 388 | 389 | babel-plugin-transform-async-generator-functions@^6.24.1: 390 | version "6.24.1" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 392 | dependencies: 393 | babel-helper-remap-async-to-generator "^6.24.1" 394 | babel-plugin-syntax-async-generators "^6.5.0" 395 | babel-runtime "^6.22.0" 396 | 397 | babel-plugin-transform-async-to-generator@^6.24.1: 398 | version "6.24.1" 399 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 400 | dependencies: 401 | babel-helper-remap-async-to-generator "^6.24.1" 402 | babel-plugin-syntax-async-functions "^6.8.0" 403 | babel-runtime "^6.22.0" 404 | 405 | babel-plugin-transform-class-constructor-call@^6.24.1: 406 | version "6.24.1" 407 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.24.1.tgz#80dc285505ac067dcb8d6c65e2f6f11ab7765ef9" 408 | dependencies: 409 | babel-plugin-syntax-class-constructor-call "^6.18.0" 410 | babel-runtime "^6.22.0" 411 | babel-template "^6.24.1" 412 | 413 | babel-plugin-transform-class-properties@^6.24.1: 414 | version "6.24.1" 415 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 416 | dependencies: 417 | babel-helper-function-name "^6.24.1" 418 | babel-plugin-syntax-class-properties "^6.8.0" 419 | babel-runtime "^6.22.0" 420 | babel-template "^6.24.1" 421 | 422 | babel-plugin-transform-decorators@^6.24.1: 423 | version "6.24.1" 424 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 425 | dependencies: 426 | babel-helper-explode-class "^6.24.1" 427 | babel-plugin-syntax-decorators "^6.13.0" 428 | babel-runtime "^6.22.0" 429 | babel-template "^6.24.1" 430 | babel-types "^6.24.1" 431 | 432 | babel-plugin-transform-do-expressions@^6.22.0: 433 | version "6.22.0" 434 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb" 435 | dependencies: 436 | babel-plugin-syntax-do-expressions "^6.8.0" 437 | babel-runtime "^6.22.0" 438 | 439 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 440 | version "6.22.0" 441 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 442 | dependencies: 443 | babel-runtime "^6.22.0" 444 | 445 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 446 | version "6.22.0" 447 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 448 | dependencies: 449 | babel-runtime "^6.22.0" 450 | 451 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 452 | version "6.26.0" 453 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 454 | dependencies: 455 | babel-runtime "^6.26.0" 456 | babel-template "^6.26.0" 457 | babel-traverse "^6.26.0" 458 | babel-types "^6.26.0" 459 | lodash "^4.17.4" 460 | 461 | babel-plugin-transform-es2015-classes@^6.24.1: 462 | version "6.24.1" 463 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 464 | dependencies: 465 | babel-helper-define-map "^6.24.1" 466 | babel-helper-function-name "^6.24.1" 467 | babel-helper-optimise-call-expression "^6.24.1" 468 | babel-helper-replace-supers "^6.24.1" 469 | babel-messages "^6.23.0" 470 | babel-runtime "^6.22.0" 471 | babel-template "^6.24.1" 472 | babel-traverse "^6.24.1" 473 | babel-types "^6.24.1" 474 | 475 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 476 | version "6.24.1" 477 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 478 | dependencies: 479 | babel-runtime "^6.22.0" 480 | babel-template "^6.24.1" 481 | 482 | babel-plugin-transform-es2015-destructuring@^6.22.0: 483 | version "6.23.0" 484 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 485 | dependencies: 486 | babel-runtime "^6.22.0" 487 | 488 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 489 | version "6.24.1" 490 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 491 | dependencies: 492 | babel-runtime "^6.22.0" 493 | babel-types "^6.24.1" 494 | 495 | babel-plugin-transform-es2015-for-of@^6.22.0: 496 | version "6.23.0" 497 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 498 | dependencies: 499 | babel-runtime "^6.22.0" 500 | 501 | babel-plugin-transform-es2015-function-name@^6.24.1: 502 | version "6.24.1" 503 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 504 | dependencies: 505 | babel-helper-function-name "^6.24.1" 506 | babel-runtime "^6.22.0" 507 | babel-types "^6.24.1" 508 | 509 | babel-plugin-transform-es2015-literals@^6.22.0: 510 | version "6.22.0" 511 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 512 | dependencies: 513 | babel-runtime "^6.22.0" 514 | 515 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 516 | version "6.24.1" 517 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 518 | dependencies: 519 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 520 | babel-runtime "^6.22.0" 521 | babel-template "^6.24.1" 522 | 523 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 524 | version "6.26.0" 525 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 526 | dependencies: 527 | babel-plugin-transform-strict-mode "^6.24.1" 528 | babel-runtime "^6.26.0" 529 | babel-template "^6.26.0" 530 | babel-types "^6.26.0" 531 | 532 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 533 | version "6.24.1" 534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 535 | dependencies: 536 | babel-helper-hoist-variables "^6.24.1" 537 | babel-runtime "^6.22.0" 538 | babel-template "^6.24.1" 539 | 540 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 541 | version "6.24.1" 542 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 543 | dependencies: 544 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 545 | babel-runtime "^6.22.0" 546 | babel-template "^6.24.1" 547 | 548 | babel-plugin-transform-es2015-object-super@^6.24.1: 549 | version "6.24.1" 550 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 551 | dependencies: 552 | babel-helper-replace-supers "^6.24.1" 553 | babel-runtime "^6.22.0" 554 | 555 | babel-plugin-transform-es2015-parameters@^6.24.1: 556 | version "6.24.1" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 558 | dependencies: 559 | babel-helper-call-delegate "^6.24.1" 560 | babel-helper-get-function-arity "^6.24.1" 561 | babel-runtime "^6.22.0" 562 | babel-template "^6.24.1" 563 | babel-traverse "^6.24.1" 564 | babel-types "^6.24.1" 565 | 566 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 567 | version "6.24.1" 568 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 569 | dependencies: 570 | babel-runtime "^6.22.0" 571 | babel-types "^6.24.1" 572 | 573 | babel-plugin-transform-es2015-spread@^6.22.0: 574 | version "6.22.0" 575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 576 | dependencies: 577 | babel-runtime "^6.22.0" 578 | 579 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 580 | version "6.24.1" 581 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 582 | dependencies: 583 | babel-helper-regex "^6.24.1" 584 | babel-runtime "^6.22.0" 585 | babel-types "^6.24.1" 586 | 587 | babel-plugin-transform-es2015-template-literals@^6.22.0: 588 | version "6.22.0" 589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 590 | dependencies: 591 | babel-runtime "^6.22.0" 592 | 593 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 594 | version "6.23.0" 595 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 596 | dependencies: 597 | babel-runtime "^6.22.0" 598 | 599 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 600 | version "6.24.1" 601 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 602 | dependencies: 603 | babel-helper-regex "^6.24.1" 604 | babel-runtime "^6.22.0" 605 | regexpu-core "^2.0.0" 606 | 607 | babel-plugin-transform-exponentiation-operator@^6.24.1: 608 | version "6.24.1" 609 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 610 | dependencies: 611 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 612 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 613 | babel-runtime "^6.22.0" 614 | 615 | babel-plugin-transform-export-extensions@^6.22.0: 616 | version "6.22.0" 617 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 618 | dependencies: 619 | babel-plugin-syntax-export-extensions "^6.8.0" 620 | babel-runtime "^6.22.0" 621 | 622 | babel-plugin-transform-function-bind@^6.22.0: 623 | version "6.22.0" 624 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97" 625 | dependencies: 626 | babel-plugin-syntax-function-bind "^6.8.0" 627 | babel-runtime "^6.22.0" 628 | 629 | babel-plugin-transform-object-rest-spread@^6.22.0: 630 | version "6.26.0" 631 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 632 | dependencies: 633 | babel-plugin-syntax-object-rest-spread "^6.8.0" 634 | babel-runtime "^6.26.0" 635 | 636 | babel-plugin-transform-regenerator@^6.24.1: 637 | version "6.26.0" 638 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 639 | dependencies: 640 | regenerator-transform "^0.10.0" 641 | 642 | babel-plugin-transform-strict-mode@^6.24.1: 643 | version "6.24.1" 644 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 645 | dependencies: 646 | babel-runtime "^6.22.0" 647 | babel-types "^6.24.1" 648 | 649 | babel-polyfill@^6.23.0, babel-polyfill@^6.26.0: 650 | version "6.26.0" 651 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 652 | dependencies: 653 | babel-runtime "^6.26.0" 654 | core-js "^2.5.0" 655 | regenerator-runtime "^0.10.5" 656 | 657 | babel-preset-es2015@^6.9.0: 658 | version "6.24.1" 659 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 660 | dependencies: 661 | babel-plugin-check-es2015-constants "^6.22.0" 662 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 663 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 664 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 665 | babel-plugin-transform-es2015-classes "^6.24.1" 666 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 667 | babel-plugin-transform-es2015-destructuring "^6.22.0" 668 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 669 | babel-plugin-transform-es2015-for-of "^6.22.0" 670 | babel-plugin-transform-es2015-function-name "^6.24.1" 671 | babel-plugin-transform-es2015-literals "^6.22.0" 672 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 673 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 674 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 675 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 676 | babel-plugin-transform-es2015-object-super "^6.24.1" 677 | babel-plugin-transform-es2015-parameters "^6.24.1" 678 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 679 | babel-plugin-transform-es2015-spread "^6.22.0" 680 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 681 | babel-plugin-transform-es2015-template-literals "^6.22.0" 682 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 683 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 684 | babel-plugin-transform-regenerator "^6.24.1" 685 | 686 | babel-preset-stage-0@^6.24.1: 687 | version "6.24.1" 688 | resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.24.1.tgz#5642d15042f91384d7e5af8bc88b1db95b039e6a" 689 | dependencies: 690 | babel-plugin-transform-do-expressions "^6.22.0" 691 | babel-plugin-transform-function-bind "^6.22.0" 692 | babel-preset-stage-1 "^6.24.1" 693 | 694 | babel-preset-stage-1@^6.24.1: 695 | version "6.24.1" 696 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.24.1.tgz#7692cd7dcd6849907e6ae4a0a85589cfb9e2bfb0" 697 | dependencies: 698 | babel-plugin-transform-class-constructor-call "^6.24.1" 699 | babel-plugin-transform-export-extensions "^6.22.0" 700 | babel-preset-stage-2 "^6.24.1" 701 | 702 | babel-preset-stage-2@^6.24.1: 703 | version "6.24.1" 704 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 705 | dependencies: 706 | babel-plugin-syntax-dynamic-import "^6.18.0" 707 | babel-plugin-transform-class-properties "^6.24.1" 708 | babel-plugin-transform-decorators "^6.24.1" 709 | babel-preset-stage-3 "^6.24.1" 710 | 711 | babel-preset-stage-3@^6.24.1: 712 | version "6.24.1" 713 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 714 | dependencies: 715 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 716 | babel-plugin-transform-async-generator-functions "^6.24.1" 717 | babel-plugin-transform-async-to-generator "^6.24.1" 718 | babel-plugin-transform-exponentiation-operator "^6.24.1" 719 | babel-plugin-transform-object-rest-spread "^6.22.0" 720 | 721 | babel-register@^6.26.0, babel-register@^6.9.0: 722 | version "6.26.0" 723 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 724 | dependencies: 725 | babel-core "^6.26.0" 726 | babel-runtime "^6.26.0" 727 | core-js "^2.5.0" 728 | home-or-tmp "^2.0.0" 729 | lodash "^4.17.4" 730 | mkdirp "^0.5.1" 731 | source-map-support "^0.4.15" 732 | 733 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: 734 | version "6.26.0" 735 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 736 | dependencies: 737 | core-js "^2.4.0" 738 | regenerator-runtime "^0.11.0" 739 | 740 | babel-template@^6.24.1, babel-template@^6.26.0: 741 | version "6.26.0" 742 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 743 | dependencies: 744 | babel-runtime "^6.26.0" 745 | babel-traverse "^6.26.0" 746 | babel-types "^6.26.0" 747 | babylon "^6.18.0" 748 | lodash "^4.17.4" 749 | 750 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 751 | version "6.26.0" 752 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 753 | dependencies: 754 | babel-code-frame "^6.26.0" 755 | babel-messages "^6.23.0" 756 | babel-runtime "^6.26.0" 757 | babel-types "^6.26.0" 758 | babylon "^6.18.0" 759 | debug "^2.6.8" 760 | globals "^9.18.0" 761 | invariant "^2.2.2" 762 | lodash "^4.17.4" 763 | 764 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 765 | version "6.26.0" 766 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 767 | dependencies: 768 | babel-runtime "^6.26.0" 769 | esutils "^2.0.2" 770 | lodash "^4.17.4" 771 | to-fast-properties "^1.0.3" 772 | 773 | babylon@^6.18.0: 774 | version "6.18.0" 775 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 776 | 777 | balanced-match@^1.0.0: 778 | version "1.0.0" 779 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 780 | 781 | bcrypt-pbkdf@^1.0.0: 782 | version "1.0.2" 783 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" 784 | dependencies: 785 | tweetnacl "^0.14.3" 786 | 787 | binary-extensions@^1.0.0: 788 | version "1.11.0" 789 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205" 790 | 791 | binary-extensions@^2.0.0: 792 | version "2.0.0" 793 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" 794 | 795 | block-stream@*: 796 | version "0.0.9" 797 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 798 | dependencies: 799 | inherits "~2.0.0" 800 | 801 | boom@2.x.x: 802 | version "2.10.1" 803 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 804 | dependencies: 805 | hoek "2.x.x" 806 | 807 | boxen@^4.2.0: 808 | version "4.2.0" 809 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" 810 | dependencies: 811 | ansi-align "^3.0.0" 812 | camelcase "^5.3.1" 813 | chalk "^3.0.0" 814 | cli-boxes "^2.2.0" 815 | string-width "^4.1.0" 816 | term-size "^2.1.0" 817 | type-fest "^0.8.1" 818 | widest-line "^3.1.0" 819 | 820 | brace-expansion@^1.1.7: 821 | version "1.1.11" 822 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 823 | dependencies: 824 | balanced-match "^1.0.0" 825 | concat-map "0.0.1" 826 | 827 | braces@^1.8.2: 828 | version "1.8.5" 829 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 830 | dependencies: 831 | expand-range "^1.8.1" 832 | preserve "^0.2.0" 833 | repeat-element "^1.1.2" 834 | 835 | braces@~3.0.2: 836 | version "3.0.2" 837 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 838 | dependencies: 839 | fill-range "^7.0.1" 840 | 841 | bytes@3.1.0: 842 | version "3.1.0" 843 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 844 | 845 | cache-content-type@^1.0.0: 846 | version "1.0.1" 847 | resolved "https://registry.yarnpkg.com/cache-content-type/-/cache-content-type-1.0.1.tgz#035cde2b08ee2129f4a8315ea8f00a00dba1453c" 848 | dependencies: 849 | mime-types "^2.1.18" 850 | ylru "^1.2.0" 851 | 852 | cacheable-request@^6.0.0: 853 | version "6.1.0" 854 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" 855 | dependencies: 856 | clone-response "^1.0.2" 857 | get-stream "^5.1.0" 858 | http-cache-semantics "^4.0.0" 859 | keyv "^3.0.0" 860 | lowercase-keys "^2.0.0" 861 | normalize-url "^4.1.0" 862 | responselike "^1.0.2" 863 | 864 | camelcase@^5.3.1: 865 | version "5.3.1" 866 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 867 | 868 | caseless@~0.12.0: 869 | version "0.12.0" 870 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 871 | 872 | chalk@^1.1.3: 873 | version "1.1.3" 874 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 875 | dependencies: 876 | ansi-styles "^2.2.1" 877 | escape-string-regexp "^1.0.2" 878 | has-ansi "^2.0.0" 879 | strip-ansi "^3.0.0" 880 | supports-color "^2.0.0" 881 | 882 | chalk@^3.0.0: 883 | version "3.0.0" 884 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 885 | dependencies: 886 | ansi-styles "^4.1.0" 887 | supports-color "^7.1.0" 888 | 889 | chokidar@^1.6.1: 890 | version "1.7.0" 891 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 892 | dependencies: 893 | anymatch "^1.3.0" 894 | async-each "^1.0.0" 895 | glob-parent "^2.0.0" 896 | inherits "^2.0.1" 897 | is-binary-path "^1.0.0" 898 | is-glob "^2.0.0" 899 | path-is-absolute "^1.0.0" 900 | readdirp "^2.0.0" 901 | optionalDependencies: 902 | fsevents "^1.0.0" 903 | 904 | chokidar@^3.2.2: 905 | version "3.3.0" 906 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.0.tgz#12c0714668c55800f659e262d4962a97faf554a6" 907 | dependencies: 908 | anymatch "~3.1.1" 909 | braces "~3.0.2" 910 | glob-parent "~5.1.0" 911 | is-binary-path "~2.1.0" 912 | is-glob "~4.0.1" 913 | normalize-path "~3.0.0" 914 | readdirp "~3.2.0" 915 | optionalDependencies: 916 | fsevents "~2.1.1" 917 | 918 | ci-info@^2.0.0: 919 | version "2.0.0" 920 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" 921 | 922 | cli-boxes@^2.2.0: 923 | version "2.2.0" 924 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" 925 | 926 | clone-response@^1.0.2: 927 | version "1.0.2" 928 | resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b" 929 | dependencies: 930 | mimic-response "^1.0.0" 931 | 932 | co@^4.6.0: 933 | version "4.6.0" 934 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 935 | 936 | code-point-at@^1.0.0: 937 | version "1.1.0" 938 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 939 | 940 | codemirror-graphql@^0.6.4: 941 | version "0.6.12" 942 | resolved "https://registry.yarnpkg.com/codemirror-graphql/-/codemirror-graphql-0.6.12.tgz#91a273fe5188857524a30221d06e645b4ca41f00" 943 | dependencies: 944 | graphql-language-service-interface "^1.0.16" 945 | graphql-language-service-parser "^0.1.14" 946 | 947 | codemirror@^5.25.2: 948 | version "5.61.0" 949 | resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.61.0.tgz#318e5b034a707207948b92ffc2862195e8fdb08e" 950 | 951 | color-convert@^2.0.1: 952 | version "2.0.1" 953 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 954 | dependencies: 955 | color-name "~1.1.4" 956 | 957 | color-name@~1.1.4: 958 | version "1.1.4" 959 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 960 | 961 | combined-stream@^1.0.5, combined-stream@~1.0.5: 962 | version "1.0.5" 963 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 964 | dependencies: 965 | delayed-stream "~1.0.0" 966 | 967 | commander@^2.11.0: 968 | version "2.12.2" 969 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.12.2.tgz#0f5946c427ed9ec0d91a46bb9def53e54650e555" 970 | 971 | concat-map@0.0.1: 972 | version "0.0.1" 973 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 974 | 975 | configstore@^5.0.1: 976 | version "5.0.1" 977 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96" 978 | dependencies: 979 | dot-prop "^5.2.0" 980 | graceful-fs "^4.1.2" 981 | make-dir "^3.0.0" 982 | unique-string "^2.0.0" 983 | write-file-atomic "^3.0.0" 984 | xdg-basedir "^4.0.0" 985 | 986 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 987 | version "1.1.0" 988 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 989 | 990 | content-disposition@~0.5.2: 991 | version "0.5.3" 992 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" 993 | dependencies: 994 | safe-buffer "5.1.2" 995 | 996 | content-type@^1.0.4: 997 | version "1.0.4" 998 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 999 | 1000 | convert-source-map@^1.5.0: 1001 | version "1.5.1" 1002 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 1003 | 1004 | cookies@~0.8.0: 1005 | version "0.8.0" 1006 | resolved "https://registry.yarnpkg.com/cookies/-/cookies-0.8.0.tgz#1293ce4b391740a8406e3c9870e828c4b54f3f90" 1007 | dependencies: 1008 | depd "~2.0.0" 1009 | keygrip "~1.1.0" 1010 | 1011 | core-js@^2.4.0, core-js@^2.5.0: 1012 | version "2.5.3" 1013 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e" 1014 | 1015 | core-util-is@1.0.2, core-util-is@~1.0.0: 1016 | version "1.0.2" 1017 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1018 | 1019 | cross-fetch@0.0.8: 1020 | version "0.0.8" 1021 | resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-0.0.8.tgz#01ed94dc407df2c00f1807fde700a7cfa48a205c" 1022 | dependencies: 1023 | node-fetch "1.7.3" 1024 | whatwg-fetch "2.0.3" 1025 | 1026 | cryptiles@2.x.x: 1027 | version "2.0.5" 1028 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1029 | dependencies: 1030 | boom "2.x.x" 1031 | 1032 | crypto-random-string@^2.0.0: 1033 | version "2.0.0" 1034 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5" 1035 | 1036 | dashdash@^1.12.0: 1037 | version "1.14.1" 1038 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1039 | dependencies: 1040 | assert-plus "^1.0.0" 1041 | 1042 | debug@^2.2.0, debug@^2.6.8: 1043 | version "2.6.9" 1044 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 1045 | dependencies: 1046 | ms "2.0.0" 1047 | 1048 | debug@^3.2.6: 1049 | version "3.2.6" 1050 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 1051 | dependencies: 1052 | ms "^2.1.1" 1053 | 1054 | debug@~3.1.0: 1055 | version "3.1.0" 1056 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 1057 | dependencies: 1058 | ms "2.0.0" 1059 | 1060 | decompress-response@^3.3.0: 1061 | version "3.3.0" 1062 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" 1063 | dependencies: 1064 | mimic-response "^1.0.0" 1065 | 1066 | deep-equal@~1.0.1: 1067 | version "1.0.1" 1068 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" 1069 | 1070 | deep-extend@^0.6.0: 1071 | version "0.6.0" 1072 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 1073 | 1074 | deep-extend@~0.4.0: 1075 | version "0.4.2" 1076 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1077 | 1078 | defer-to-connect@^1.0.1: 1079 | version "1.1.3" 1080 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" 1081 | 1082 | delayed-stream@~1.0.0: 1083 | version "1.0.0" 1084 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1085 | 1086 | delegates@^1.0.0: 1087 | version "1.0.0" 1088 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1089 | 1090 | depd@^2.0.0, depd@~2.0.0: 1091 | version "2.0.0" 1092 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 1093 | 1094 | depd@~1.1.2: 1095 | version "1.1.2" 1096 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 1097 | 1098 | destroy@^1.0.4: 1099 | version "1.0.4" 1100 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1101 | 1102 | detect-indent@^4.0.0: 1103 | version "4.0.0" 1104 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1105 | dependencies: 1106 | repeating "^2.0.0" 1107 | 1108 | detect-libc@^1.0.2: 1109 | version "1.0.3" 1110 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 1111 | 1112 | dot-prop@^5.2.0: 1113 | version "5.2.0" 1114 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" 1115 | dependencies: 1116 | is-obj "^2.0.0" 1117 | 1118 | duplexer3@^0.1.4: 1119 | version "0.1.4" 1120 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 1121 | 1122 | ecc-jsbn@~0.1.1: 1123 | version "0.1.2" 1124 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" 1125 | dependencies: 1126 | jsbn "~0.1.0" 1127 | safer-buffer "^2.1.0" 1128 | 1129 | ee-first@1.1.1: 1130 | version "1.1.1" 1131 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1132 | 1133 | emoji-regex@^7.0.1: 1134 | version "7.0.3" 1135 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 1136 | 1137 | emoji-regex@^8.0.0: 1138 | version "8.0.0" 1139 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1140 | 1141 | encodeurl@^1.0.2: 1142 | version "1.0.2" 1143 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 1144 | 1145 | encoding@^0.1.11: 1146 | version "0.1.12" 1147 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1148 | dependencies: 1149 | iconv-lite "~0.4.13" 1150 | 1151 | end-of-stream@^1.1.0: 1152 | version "1.4.4" 1153 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 1154 | dependencies: 1155 | once "^1.4.0" 1156 | 1157 | escape-goat@^2.0.0: 1158 | version "2.1.1" 1159 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" 1160 | 1161 | escape-html@^1.0.3: 1162 | version "1.0.3" 1163 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1164 | 1165 | escape-string-regexp@^1.0.2: 1166 | version "1.0.5" 1167 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1168 | 1169 | esprima@^4.0.0: 1170 | version "4.0.1" 1171 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1172 | 1173 | esutils@^2.0.2: 1174 | version "2.0.2" 1175 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1176 | 1177 | expand-brackets@^0.1.4: 1178 | version "0.1.5" 1179 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1180 | dependencies: 1181 | is-posix-bracket "^0.1.0" 1182 | 1183 | expand-range@^1.8.1: 1184 | version "1.8.2" 1185 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1186 | dependencies: 1187 | fill-range "^2.1.0" 1188 | 1189 | express-graphql@0.7.1: 1190 | version "0.7.1" 1191 | resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.7.1.tgz#6c7712ee966c3aba1930e064ea4c8181e56fd3ef" 1192 | dependencies: 1193 | accepts "^1.3.5" 1194 | content-type "^1.0.4" 1195 | http-errors "^1.7.1" 1196 | raw-body "^2.3.3" 1197 | 1198 | extend@~3.0.0: 1199 | version "3.0.2" 1200 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1201 | 1202 | extglob@^0.3.1: 1203 | version "0.3.2" 1204 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1205 | dependencies: 1206 | is-extglob "^1.0.0" 1207 | 1208 | extsprintf@1.3.0: 1209 | version "1.3.0" 1210 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1211 | 1212 | extsprintf@^1.2.0: 1213 | version "1.4.0" 1214 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 1215 | 1216 | filename-regex@^2.0.0: 1217 | version "2.0.1" 1218 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1219 | 1220 | fill-range@^2.1.0: 1221 | version "2.2.3" 1222 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1223 | dependencies: 1224 | is-number "^2.1.0" 1225 | isobject "^2.0.0" 1226 | randomatic "^1.1.3" 1227 | repeat-element "^1.1.2" 1228 | repeat-string "^1.5.2" 1229 | 1230 | fill-range@^7.0.1: 1231 | version "7.0.1" 1232 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1233 | dependencies: 1234 | to-regex-range "^5.0.1" 1235 | 1236 | for-in@^1.0.1: 1237 | version "1.0.2" 1238 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1239 | 1240 | for-own@^0.1.4: 1241 | version "0.1.5" 1242 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1243 | dependencies: 1244 | for-in "^1.0.1" 1245 | 1246 | forever-agent@~0.6.1: 1247 | version "0.6.1" 1248 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1249 | 1250 | form-data@~2.1.1: 1251 | version "2.1.4" 1252 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1253 | dependencies: 1254 | asynckit "^0.4.0" 1255 | combined-stream "^1.0.5" 1256 | mime-types "^2.1.12" 1257 | 1258 | fresh@~0.5.2: 1259 | version "0.5.2" 1260 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 1261 | 1262 | fs-readdir-recursive@^1.0.0: 1263 | version "1.1.0" 1264 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" 1265 | 1266 | fs.realpath@^1.0.0: 1267 | version "1.0.0" 1268 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1269 | 1270 | fsevents@^1.0.0: 1271 | version "1.1.3" 1272 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" 1273 | dependencies: 1274 | nan "^2.3.0" 1275 | node-pre-gyp "^0.6.39" 1276 | 1277 | fsevents@~2.1.1: 1278 | version "2.1.2" 1279 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" 1280 | 1281 | fstream-ignore@^1.0.5: 1282 | version "1.0.5" 1283 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1284 | dependencies: 1285 | fstream "^1.0.0" 1286 | inherits "2" 1287 | minimatch "^3.0.0" 1288 | 1289 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.12: 1290 | version "1.0.12" 1291 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 1292 | dependencies: 1293 | graceful-fs "^4.1.2" 1294 | inherits "~2.0.0" 1295 | mkdirp ">=0.5 0" 1296 | rimraf "2" 1297 | 1298 | gauge@~2.7.3: 1299 | version "2.7.4" 1300 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1301 | dependencies: 1302 | aproba "^1.0.3" 1303 | console-control-strings "^1.0.0" 1304 | has-unicode "^2.0.0" 1305 | object-assign "^4.1.0" 1306 | signal-exit "^3.0.0" 1307 | string-width "^1.0.1" 1308 | strip-ansi "^3.0.1" 1309 | wide-align "^1.1.0" 1310 | 1311 | get-stream@^4.1.0: 1312 | version "4.1.0" 1313 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" 1314 | dependencies: 1315 | pump "^3.0.0" 1316 | 1317 | get-stream@^5.1.0: 1318 | version "5.1.0" 1319 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" 1320 | dependencies: 1321 | pump "^3.0.0" 1322 | 1323 | getpass@^0.1.1: 1324 | version "0.1.7" 1325 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1326 | dependencies: 1327 | assert-plus "^1.0.0" 1328 | 1329 | glob-base@^0.3.0: 1330 | version "0.3.0" 1331 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1332 | dependencies: 1333 | glob-parent "^2.0.0" 1334 | is-glob "^2.0.0" 1335 | 1336 | glob-parent@^2.0.0: 1337 | version "2.0.0" 1338 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1339 | dependencies: 1340 | is-glob "^2.0.0" 1341 | 1342 | glob-parent@~5.1.0: 1343 | version "5.1.0" 1344 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" 1345 | dependencies: 1346 | is-glob "^4.0.1" 1347 | 1348 | glob@^7.1.2: 1349 | version "7.1.2" 1350 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1351 | dependencies: 1352 | fs.realpath "^1.0.0" 1353 | inflight "^1.0.4" 1354 | inherits "2" 1355 | minimatch "^3.0.4" 1356 | once "^1.3.0" 1357 | path-is-absolute "^1.0.0" 1358 | 1359 | glob@^7.1.3: 1360 | version "7.1.4" 1361 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" 1362 | dependencies: 1363 | fs.realpath "^1.0.0" 1364 | inflight "^1.0.4" 1365 | inherits "2" 1366 | minimatch "^3.0.4" 1367 | once "^1.3.0" 1368 | path-is-absolute "^1.0.0" 1369 | 1370 | global-dirs@^2.0.1: 1371 | version "2.0.1" 1372 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.0.1.tgz#acdf3bb6685bcd55cb35e8a052266569e9469201" 1373 | dependencies: 1374 | ini "^1.3.5" 1375 | 1376 | globals@^9.18.0: 1377 | version "9.18.0" 1378 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1379 | 1380 | got@^9.6.0: 1381 | version "9.6.0" 1382 | resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" 1383 | dependencies: 1384 | "@sindresorhus/is" "^0.14.0" 1385 | "@szmarczak/http-timer" "^1.1.2" 1386 | cacheable-request "^6.0.0" 1387 | decompress-response "^3.3.0" 1388 | duplexer3 "^0.1.4" 1389 | get-stream "^4.1.0" 1390 | lowercase-keys "^1.0.1" 1391 | mimic-response "^1.0.1" 1392 | p-cancelable "^1.0.0" 1393 | to-readable-stream "^1.0.0" 1394 | url-parse-lax "^3.0.0" 1395 | 1396 | graceful-fs@^4.1.2, graceful-fs@^4.1.4: 1397 | version "4.2.2" 1398 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" 1399 | 1400 | graphiql@^0.10.2: 1401 | version "0.10.2" 1402 | resolved "https://registry.yarnpkg.com/graphiql/-/graphiql-0.10.2.tgz#21f60a26cd3b942e28ce1df6165b002a3e7ad6ab" 1403 | dependencies: 1404 | codemirror "^5.25.2" 1405 | codemirror-graphql "^0.6.4" 1406 | marked "0.3.6" 1407 | 1408 | graphql-config@1.0.8: 1409 | version "1.0.8" 1410 | resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-1.0.8.tgz#6dd1cd76ff6fbb01662704f8bddc403f6b0c24d9" 1411 | dependencies: 1412 | graphql "^0.11.7" 1413 | graphql-request "^1.4.0" 1414 | js-yaml "^3.10.0" 1415 | minimatch "^3.0.4" 1416 | rimraf "^2.6.2" 1417 | 1418 | graphql-language-service-interface@^1.0.16: 1419 | version "1.0.16" 1420 | resolved "https://registry.yarnpkg.com/graphql-language-service-interface/-/graphql-language-service-interface-1.0.16.tgz#0e6dd855bf0bdee84e7456b2128a2e5f56e4f47b" 1421 | dependencies: 1422 | graphql-config "1.0.8" 1423 | graphql-language-service-parser "^0.1.14" 1424 | graphql-language-service-types "^0.1.14" 1425 | graphql-language-service-utils "^1.0.16" 1426 | 1427 | graphql-language-service-parser@^0.1.14: 1428 | version "0.1.14" 1429 | resolved "https://registry.yarnpkg.com/graphql-language-service-parser/-/graphql-language-service-parser-0.1.14.tgz#dd25abda5dcff4f2268c9a19e026004271491661" 1430 | dependencies: 1431 | graphql-language-service-types "^0.1.14" 1432 | 1433 | graphql-language-service-types@^0.1.14: 1434 | version "0.1.14" 1435 | resolved "https://registry.yarnpkg.com/graphql-language-service-types/-/graphql-language-service-types-0.1.14.tgz#e6112785fc23ea8222f59a7f00e61b359f263c88" 1436 | 1437 | graphql-language-service-utils@^1.0.16: 1438 | version "1.0.16" 1439 | resolved "https://registry.yarnpkg.com/graphql-language-service-utils/-/graphql-language-service-utils-1.0.16.tgz#eb4e4495aeef0c4b6ffd8c681858558862c65e9e" 1440 | dependencies: 1441 | graphql-config "1.0.8" 1442 | graphql-language-service-types "^0.1.14" 1443 | 1444 | graphql-relay@^0.6.0: 1445 | version "0.6.0" 1446 | resolved "https://registry.yarnpkg.com/graphql-relay/-/graphql-relay-0.6.0.tgz#18ec36b772cfcb3dbb9bd369c3f8004cf42c7b93" 1447 | dependencies: 1448 | prettier "^1.16.0" 1449 | 1450 | graphql-request@^1.4.0: 1451 | version "1.4.0" 1452 | resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-1.4.0.tgz#f5b067c83070296d93fb45760e83dfad0d9f537a" 1453 | dependencies: 1454 | cross-fetch "0.0.8" 1455 | 1456 | graphql@^0.11.7: 1457 | version "0.11.7" 1458 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.11.7.tgz#e5abaa9cb7b7cccb84e9f0836bf4370d268750c6" 1459 | dependencies: 1460 | iterall "1.1.3" 1461 | 1462 | graphql@^0.9.6: 1463 | version "0.9.6" 1464 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.9.6.tgz#514421e9d225c29dfc8fd305459abae58815ef2c" 1465 | dependencies: 1466 | iterall "^1.0.0" 1467 | 1468 | har-schema@^1.0.5: 1469 | version "1.0.5" 1470 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1471 | 1472 | har-validator@~4.2.1: 1473 | version "4.2.1" 1474 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1475 | dependencies: 1476 | ajv "^4.9.1" 1477 | har-schema "^1.0.5" 1478 | 1479 | has-ansi@^2.0.0: 1480 | version "2.0.0" 1481 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1482 | dependencies: 1483 | ansi-regex "^2.0.0" 1484 | 1485 | has-flag@^3.0.0: 1486 | version "3.0.0" 1487 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1488 | 1489 | has-flag@^4.0.0: 1490 | version "4.0.0" 1491 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1492 | 1493 | has-unicode@^2.0.0: 1494 | version "2.0.1" 1495 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1496 | 1497 | has-yarn@^2.1.0: 1498 | version "2.1.0" 1499 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" 1500 | 1501 | hawk@3.1.3, hawk@~3.1.3: 1502 | version "3.1.3" 1503 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1504 | dependencies: 1505 | boom "2.x.x" 1506 | cryptiles "2.x.x" 1507 | hoek "2.x.x" 1508 | sntp "1.x.x" 1509 | 1510 | hoek@2.x.x: 1511 | version "2.16.3" 1512 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1513 | 1514 | home-or-tmp@^2.0.0: 1515 | version "2.0.0" 1516 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1517 | dependencies: 1518 | os-homedir "^1.0.0" 1519 | os-tmpdir "^1.0.1" 1520 | 1521 | http-assert@^1.3.0: 1522 | version "1.4.1" 1523 | resolved "https://registry.yarnpkg.com/http-assert/-/http-assert-1.4.1.tgz#c5f725d677aa7e873ef736199b89686cceb37878" 1524 | dependencies: 1525 | deep-equal "~1.0.1" 1526 | http-errors "~1.7.2" 1527 | 1528 | http-cache-semantics@^4.0.0: 1529 | version "4.1.0" 1530 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 1531 | 1532 | http-errors@1.7.3, http-errors@^1.6.3, http-errors@^1.7.1, http-errors@~1.7.2: 1533 | version "1.7.3" 1534 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" 1535 | dependencies: 1536 | depd "~1.1.2" 1537 | inherits "2.0.4" 1538 | setprototypeof "1.1.1" 1539 | statuses ">= 1.5.0 < 2" 1540 | toidentifier "1.0.0" 1541 | 1542 | http-signature@~1.1.0: 1543 | version "1.1.1" 1544 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1545 | dependencies: 1546 | assert-plus "^0.2.0" 1547 | jsprim "^1.2.2" 1548 | sshpk "^1.7.0" 1549 | 1550 | iconv-lite@0.4.24: 1551 | version "0.4.24" 1552 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1553 | dependencies: 1554 | safer-buffer ">= 2.1.2 < 3" 1555 | 1556 | iconv-lite@~0.4.13: 1557 | version "0.4.19" 1558 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1559 | 1560 | ignore-by-default@^1.0.1: 1561 | version "1.0.1" 1562 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 1563 | 1564 | import-lazy@^2.1.0: 1565 | version "2.1.0" 1566 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 1567 | 1568 | imurmurhash@^0.1.4: 1569 | version "0.1.4" 1570 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1571 | 1572 | inflight@^1.0.4: 1573 | version "1.0.6" 1574 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1575 | dependencies: 1576 | once "^1.3.0" 1577 | wrappy "1" 1578 | 1579 | inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.3: 1580 | version "2.0.4" 1581 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1582 | 1583 | ini@^1.3.5, ini@~1.3.0: 1584 | version "1.3.7" 1585 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" 1586 | 1587 | invariant@^2.2.2: 1588 | version "2.2.2" 1589 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1590 | dependencies: 1591 | loose-envify "^1.0.0" 1592 | 1593 | is-binary-path@^1.0.0: 1594 | version "1.0.1" 1595 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1596 | dependencies: 1597 | binary-extensions "^1.0.0" 1598 | 1599 | is-binary-path@~2.1.0: 1600 | version "2.1.0" 1601 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1602 | dependencies: 1603 | binary-extensions "^2.0.0" 1604 | 1605 | is-buffer@^1.1.5: 1606 | version "1.1.6" 1607 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 1608 | 1609 | is-ci@^2.0.0: 1610 | version "2.0.0" 1611 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" 1612 | dependencies: 1613 | ci-info "^2.0.0" 1614 | 1615 | is-dotfile@^1.0.0: 1616 | version "1.0.3" 1617 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1618 | 1619 | is-equal-shallow@^0.1.3: 1620 | version "0.1.3" 1621 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1622 | dependencies: 1623 | is-primitive "^2.0.0" 1624 | 1625 | is-extendable@^0.1.1: 1626 | version "0.1.1" 1627 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1628 | 1629 | is-extglob@^1.0.0: 1630 | version "1.0.0" 1631 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1632 | 1633 | is-extglob@^2.1.1: 1634 | version "2.1.1" 1635 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1636 | 1637 | is-finite@^1.0.0: 1638 | version "1.0.2" 1639 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1640 | dependencies: 1641 | number-is-nan "^1.0.0" 1642 | 1643 | is-fullwidth-code-point@^1.0.0: 1644 | version "1.0.0" 1645 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1646 | dependencies: 1647 | number-is-nan "^1.0.0" 1648 | 1649 | is-fullwidth-code-point@^2.0.0: 1650 | version "2.0.0" 1651 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1652 | 1653 | is-fullwidth-code-point@^3.0.0: 1654 | version "3.0.0" 1655 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1656 | 1657 | is-generator-function@^1.0.7: 1658 | version "1.0.7" 1659 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.7.tgz#d2132e529bb0000a7f80794d4bdf5cd5e5813522" 1660 | 1661 | is-glob@^2.0.0, is-glob@^2.0.1: 1662 | version "2.0.1" 1663 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1664 | dependencies: 1665 | is-extglob "^1.0.0" 1666 | 1667 | is-glob@^4.0.1, is-glob@~4.0.1: 1668 | version "4.0.1" 1669 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1670 | dependencies: 1671 | is-extglob "^2.1.1" 1672 | 1673 | is-installed-globally@^0.3.1: 1674 | version "0.3.2" 1675 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141" 1676 | dependencies: 1677 | global-dirs "^2.0.1" 1678 | is-path-inside "^3.0.1" 1679 | 1680 | is-npm@^4.0.0: 1681 | version "4.0.0" 1682 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" 1683 | 1684 | is-number@^2.1.0: 1685 | version "2.1.0" 1686 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1687 | dependencies: 1688 | kind-of "^3.0.2" 1689 | 1690 | is-number@^3.0.0: 1691 | version "3.0.0" 1692 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1693 | dependencies: 1694 | kind-of "^3.0.2" 1695 | 1696 | is-number@^7.0.0: 1697 | version "7.0.0" 1698 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1699 | 1700 | is-obj@^2.0.0: 1701 | version "2.0.0" 1702 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 1703 | 1704 | is-path-inside@^3.0.1: 1705 | version "3.0.2" 1706 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 1707 | 1708 | is-posix-bracket@^0.1.0: 1709 | version "0.1.1" 1710 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1711 | 1712 | is-primitive@^2.0.0: 1713 | version "2.0.0" 1714 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1715 | 1716 | is-stream@^1.0.1: 1717 | version "1.1.0" 1718 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1719 | 1720 | is-typedarray@^1.0.0, is-typedarray@~1.0.0: 1721 | version "1.0.0" 1722 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1723 | 1724 | is-yarn-global@^0.3.0: 1725 | version "0.3.0" 1726 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232" 1727 | 1728 | isarray@1.0.0, isarray@~1.0.0: 1729 | version "1.0.0" 1730 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1731 | 1732 | isobject@^2.0.0: 1733 | version "2.1.0" 1734 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1735 | dependencies: 1736 | isarray "1.0.0" 1737 | 1738 | isstream@~0.1.2: 1739 | version "0.1.2" 1740 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1741 | 1742 | iterall@1.1.3, iterall@^1.0.0: 1743 | version "1.1.3" 1744 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.3.tgz#1cbbff96204056dde6656e2ed2e2226d0e6d72c9" 1745 | 1746 | "js-tokens@^3.0.0 || ^4.0.0": 1747 | version "4.0.0" 1748 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1749 | 1750 | js-tokens@^3.0.2: 1751 | version "3.0.2" 1752 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1753 | 1754 | js-yaml@^3.10.0: 1755 | version "3.14.0" 1756 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" 1757 | dependencies: 1758 | argparse "^1.0.7" 1759 | esprima "^4.0.0" 1760 | 1761 | jsbn@~0.1.0: 1762 | version "0.1.1" 1763 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1764 | 1765 | jsesc@^1.3.0: 1766 | version "1.3.0" 1767 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1768 | 1769 | jsesc@~0.5.0: 1770 | version "0.5.0" 1771 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1772 | 1773 | json-buffer@3.0.0: 1774 | version "3.0.0" 1775 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" 1776 | 1777 | json-schema@0.2.3: 1778 | version "0.2.3" 1779 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1780 | 1781 | json-stable-stringify@^1.0.1: 1782 | version "1.0.1" 1783 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1784 | dependencies: 1785 | jsonify "~0.0.0" 1786 | 1787 | json-stringify-safe@~5.0.1: 1788 | version "5.0.1" 1789 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1790 | 1791 | json5@^0.5.1: 1792 | version "0.5.1" 1793 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1794 | 1795 | jsonify@~0.0.0: 1796 | version "0.0.0" 1797 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1798 | 1799 | jsprim@^1.2.2: 1800 | version "1.4.1" 1801 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1802 | dependencies: 1803 | assert-plus "1.0.0" 1804 | extsprintf "1.3.0" 1805 | json-schema "0.2.3" 1806 | verror "1.10.0" 1807 | 1808 | keygrip@~1.1.0: 1809 | version "1.1.0" 1810 | resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226" 1811 | dependencies: 1812 | tsscmp "1.0.6" 1813 | 1814 | keyv@^3.0.0: 1815 | version "3.1.0" 1816 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" 1817 | dependencies: 1818 | json-buffer "3.0.0" 1819 | 1820 | kind-of@^3.0.2: 1821 | version "3.2.2" 1822 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1823 | dependencies: 1824 | is-buffer "^1.1.5" 1825 | 1826 | kind-of@^4.0.0: 1827 | version "4.0.0" 1828 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1829 | dependencies: 1830 | is-buffer "^1.1.5" 1831 | 1832 | koa-compose@^3.0.0: 1833 | version "3.2.1" 1834 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-3.2.1.tgz#a85ccb40b7d986d8e5a345b3a1ace8eabcf54de7" 1835 | dependencies: 1836 | any-promise "^1.1.0" 1837 | 1838 | koa-compose@^4.1.0: 1839 | version "4.1.0" 1840 | resolved "https://registry.yarnpkg.com/koa-compose/-/koa-compose-4.1.0.tgz#507306b9371901db41121c812e923d0d67d3e877" 1841 | 1842 | koa-convert@^1.2.0: 1843 | version "1.2.0" 1844 | resolved "https://registry.yarnpkg.com/koa-convert/-/koa-convert-1.2.0.tgz#da40875df49de0539098d1700b50820cebcd21d0" 1845 | dependencies: 1846 | co "^4.6.0" 1847 | koa-compose "^3.0.0" 1848 | 1849 | koa-graphql@^0.8.0: 1850 | version "0.8.0" 1851 | resolved "https://registry.yarnpkg.com/koa-graphql/-/koa-graphql-0.8.0.tgz#82afc2521bae38db0ed09cdb6c8a73c60136c1bd" 1852 | dependencies: 1853 | babel-runtime "^6.26.0" 1854 | express-graphql "0.7.1" 1855 | http-errors "^1.7.1" 1856 | thenify "^3.3.0" 1857 | 1858 | koa@^2.13.1: 1859 | version "2.13.1" 1860 | resolved "https://registry.yarnpkg.com/koa/-/koa-2.13.1.tgz#6275172875b27bcfe1d454356a5b6b9f5a9b1051" 1861 | dependencies: 1862 | accepts "^1.3.5" 1863 | cache-content-type "^1.0.0" 1864 | content-disposition "~0.5.2" 1865 | content-type "^1.0.4" 1866 | cookies "~0.8.0" 1867 | debug "~3.1.0" 1868 | delegates "^1.0.0" 1869 | depd "^2.0.0" 1870 | destroy "^1.0.4" 1871 | encodeurl "^1.0.2" 1872 | escape-html "^1.0.3" 1873 | fresh "~0.5.2" 1874 | http-assert "^1.3.0" 1875 | http-errors "^1.6.3" 1876 | is-generator-function "^1.0.7" 1877 | koa-compose "^4.1.0" 1878 | koa-convert "^1.2.0" 1879 | on-finished "^2.3.0" 1880 | only "~0.0.2" 1881 | parseurl "^1.3.2" 1882 | statuses "^1.5.0" 1883 | type-is "^1.6.16" 1884 | vary "^1.1.2" 1885 | 1886 | latest-version@^5.0.0: 1887 | version "5.1.0" 1888 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" 1889 | dependencies: 1890 | package-json "^6.3.0" 1891 | 1892 | lodash@^4.17.4: 1893 | version "4.17.21" 1894 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1895 | 1896 | loose-envify@^1.0.0, loose-envify@^1.1.0: 1897 | version "1.4.0" 1898 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1899 | dependencies: 1900 | js-tokens "^3.0.0 || ^4.0.0" 1901 | 1902 | lowercase-keys@^1.0.0: 1903 | version "1.0.0" 1904 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" 1905 | 1906 | lowercase-keys@^1.0.1: 1907 | version "1.0.1" 1908 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1909 | 1910 | lowercase-keys@^2.0.0: 1911 | version "2.0.0" 1912 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" 1913 | 1914 | make-dir@^3.0.0: 1915 | version "3.0.2" 1916 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392" 1917 | dependencies: 1918 | semver "^6.0.0" 1919 | 1920 | marked@0.3.6: 1921 | version "0.3.6" 1922 | resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" 1923 | 1924 | media-typer@0.3.0: 1925 | version "0.3.0" 1926 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1927 | 1928 | micromatch@^2.1.5: 1929 | version "2.3.11" 1930 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1931 | dependencies: 1932 | arr-diff "^2.0.0" 1933 | array-unique "^0.2.1" 1934 | braces "^1.8.2" 1935 | expand-brackets "^0.1.4" 1936 | extglob "^0.3.1" 1937 | filename-regex "^2.0.0" 1938 | is-extglob "^1.0.0" 1939 | is-glob "^2.0.1" 1940 | kind-of "^3.0.2" 1941 | normalize-path "^2.0.1" 1942 | object.omit "^2.0.0" 1943 | parse-glob "^3.0.4" 1944 | regex-cache "^0.4.2" 1945 | 1946 | mime-db@1.40.0: 1947 | version "1.40.0" 1948 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" 1949 | 1950 | mime-db@~1.30.0: 1951 | version "1.30.0" 1952 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1953 | 1954 | mime-types@^2.1.12, mime-types@~2.1.7: 1955 | version "2.1.17" 1956 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1957 | dependencies: 1958 | mime-db "~1.30.0" 1959 | 1960 | mime-types@^2.1.18, mime-types@~2.1.24: 1961 | version "2.1.24" 1962 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" 1963 | dependencies: 1964 | mime-db "1.40.0" 1965 | 1966 | mimic-response@^1.0.0, mimic-response@^1.0.1: 1967 | version "1.0.1" 1968 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" 1969 | 1970 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1971 | version "3.0.4" 1972 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1973 | dependencies: 1974 | brace-expansion "^1.1.7" 1975 | 1976 | minimist@0.0.8: 1977 | version "0.0.8" 1978 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1979 | 1980 | minimist@^1.2.0: 1981 | version "1.2.0" 1982 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1983 | 1984 | "mkdirp@>=0.5 0", mkdirp@^0.5.1: 1985 | version "0.5.1" 1986 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1987 | dependencies: 1988 | minimist "0.0.8" 1989 | 1990 | ms@2.0.0: 1991 | version "2.0.0" 1992 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1993 | 1994 | ms@^2.1.1: 1995 | version "2.1.2" 1996 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1997 | 1998 | nan@^2.3.0: 1999 | version "2.8.0" 2000 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 2001 | 2002 | negotiator@0.6.2: 2003 | version "0.6.2" 2004 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" 2005 | 2006 | node-fetch@1.7.3: 2007 | version "1.7.3" 2008 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" 2009 | dependencies: 2010 | encoding "^0.1.11" 2011 | is-stream "^1.0.1" 2012 | 2013 | node-fetch@^2.6.1: 2014 | version "2.6.1" 2015 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 2016 | 2017 | node-pre-gyp@^0.6.39: 2018 | version "0.6.39" 2019 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" 2020 | dependencies: 2021 | detect-libc "^1.0.2" 2022 | hawk "3.1.3" 2023 | mkdirp "^0.5.1" 2024 | nopt "^4.0.1" 2025 | npmlog "^4.0.2" 2026 | rc "^1.1.7" 2027 | request "2.81.0" 2028 | rimraf "^2.6.1" 2029 | semver "^5.3.0" 2030 | tar "^2.2.1" 2031 | tar-pack "^3.4.0" 2032 | 2033 | nodemon@^2.0.12: 2034 | version "2.0.12" 2035 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.12.tgz#5dae4e162b617b91f1873b3bfea215dd71e144d5" 2036 | dependencies: 2037 | chokidar "^3.2.2" 2038 | debug "^3.2.6" 2039 | ignore-by-default "^1.0.1" 2040 | minimatch "^3.0.4" 2041 | pstree.remy "^1.1.7" 2042 | semver "^5.7.1" 2043 | supports-color "^5.5.0" 2044 | touch "^3.1.0" 2045 | undefsafe "^2.0.3" 2046 | update-notifier "^4.1.0" 2047 | 2048 | nopt@^4.0.1: 2049 | version "4.0.1" 2050 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2051 | dependencies: 2052 | abbrev "1" 2053 | osenv "^0.1.4" 2054 | 2055 | nopt@~1.0.10: 2056 | version "1.0.10" 2057 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 2058 | dependencies: 2059 | abbrev "1" 2060 | 2061 | normalize-path@^2.0.0, normalize-path@^2.0.1: 2062 | version "2.1.1" 2063 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2064 | dependencies: 2065 | remove-trailing-separator "^1.0.1" 2066 | 2067 | normalize-path@^3.0.0, normalize-path@~3.0.0: 2068 | version "3.0.0" 2069 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2070 | 2071 | normalize-url@^4.1.0: 2072 | version "4.5.1" 2073 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" 2074 | 2075 | npmlog@^4.0.2: 2076 | version "4.1.2" 2077 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 2078 | dependencies: 2079 | are-we-there-yet "~1.1.2" 2080 | console-control-strings "~1.1.0" 2081 | gauge "~2.7.3" 2082 | set-blocking "~2.0.0" 2083 | 2084 | number-is-nan@^1.0.0: 2085 | version "1.0.1" 2086 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2087 | 2088 | oauth-sign@~0.8.1: 2089 | version "0.8.2" 2090 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2091 | 2092 | object-assign@^4.1.0, object-assign@^4.1.1: 2093 | version "4.1.1" 2094 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2095 | 2096 | object.omit@^2.0.0: 2097 | version "2.0.1" 2098 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2099 | dependencies: 2100 | for-own "^0.1.4" 2101 | is-extendable "^0.1.1" 2102 | 2103 | on-finished@^2.3.0: 2104 | version "2.3.0" 2105 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2106 | dependencies: 2107 | ee-first "1.1.1" 2108 | 2109 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: 2110 | version "1.4.0" 2111 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2112 | dependencies: 2113 | wrappy "1" 2114 | 2115 | only@~0.0.2: 2116 | version "0.0.2" 2117 | resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4" 2118 | 2119 | os-homedir@^1.0.0: 2120 | version "1.0.2" 2121 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2122 | 2123 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2124 | version "1.0.2" 2125 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2126 | 2127 | osenv@^0.1.4: 2128 | version "0.1.4" 2129 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2130 | dependencies: 2131 | os-homedir "^1.0.0" 2132 | os-tmpdir "^1.0.0" 2133 | 2134 | output-file-sync@^1.1.2: 2135 | version "1.1.2" 2136 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2137 | dependencies: 2138 | graceful-fs "^4.1.4" 2139 | mkdirp "^0.5.1" 2140 | object-assign "^4.1.0" 2141 | 2142 | p-cancelable@^1.0.0: 2143 | version "1.1.0" 2144 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" 2145 | 2146 | package-json@^6.3.0: 2147 | version "6.5.0" 2148 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0" 2149 | dependencies: 2150 | got "^9.6.0" 2151 | registry-auth-token "^4.0.0" 2152 | registry-url "^5.0.0" 2153 | semver "^6.2.0" 2154 | 2155 | parse-glob@^3.0.4: 2156 | version "3.0.4" 2157 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2158 | dependencies: 2159 | glob-base "^0.3.0" 2160 | is-dotfile "^1.0.0" 2161 | is-extglob "^1.0.0" 2162 | is-glob "^2.0.0" 2163 | 2164 | parseurl@^1.3.2: 2165 | version "1.3.3" 2166 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" 2167 | 2168 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2169 | version "1.0.1" 2170 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2171 | 2172 | performance-now@^0.2.0: 2173 | version "0.2.0" 2174 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2175 | 2176 | picomatch@^2.0.4: 2177 | version "2.1.1" 2178 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.1.1.tgz#ecdfbea7704adb5fe6fb47f9866c4c0e15e905c5" 2179 | 2180 | prepend-http@^2.0.0: 2181 | version "2.0.0" 2182 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" 2183 | 2184 | preserve@^0.2.0: 2185 | version "0.2.0" 2186 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2187 | 2188 | prettier@^1.16.0: 2189 | version "1.18.2" 2190 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" 2191 | 2192 | private@^0.1.6, private@^0.1.7: 2193 | version "0.1.8" 2194 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" 2195 | 2196 | process-nextick-args@~1.0.6: 2197 | version "1.0.7" 2198 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2199 | 2200 | pstree.remy@^1.1.7: 2201 | version "1.1.7" 2202 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.7.tgz#c76963a28047ed61542dc361aa26ee55a7fa15f3" 2203 | 2204 | pump@^3.0.0: 2205 | version "3.0.0" 2206 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 2207 | dependencies: 2208 | end-of-stream "^1.1.0" 2209 | once "^1.3.1" 2210 | 2211 | punycode@^1.4.1: 2212 | version "1.4.1" 2213 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2214 | 2215 | pupa@^2.0.1: 2216 | version "2.0.1" 2217 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.0.1.tgz#dbdc9ff48ffbea4a26a069b6f9f7abb051008726" 2218 | dependencies: 2219 | escape-goat "^2.0.0" 2220 | 2221 | qs@~6.4.0: 2222 | version "6.4.0" 2223 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2224 | 2225 | randomatic@^1.1.3: 2226 | version "1.1.7" 2227 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2228 | dependencies: 2229 | is-number "^3.0.0" 2230 | kind-of "^4.0.0" 2231 | 2232 | raw-body@^2.3.3: 2233 | version "2.4.1" 2234 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" 2235 | dependencies: 2236 | bytes "3.1.0" 2237 | http-errors "1.7.3" 2238 | iconv-lite "0.4.24" 2239 | unpipe "1.0.0" 2240 | 2241 | rc@^1.1.7: 2242 | version "1.2.2" 2243 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" 2244 | dependencies: 2245 | deep-extend "~0.4.0" 2246 | ini "~1.3.0" 2247 | minimist "^1.2.0" 2248 | strip-json-comments "~2.0.1" 2249 | 2250 | rc@^1.2.8: 2251 | version "1.2.8" 2252 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 2253 | dependencies: 2254 | deep-extend "^0.6.0" 2255 | ini "~1.3.0" 2256 | minimist "^1.2.0" 2257 | strip-json-comments "~2.0.1" 2258 | 2259 | react-dom@^17.0.2: 2260 | version "17.0.2" 2261 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" 2262 | dependencies: 2263 | loose-envify "^1.1.0" 2264 | object-assign "^4.1.1" 2265 | scheduler "^0.20.2" 2266 | 2267 | react@^17.0.2: 2268 | version "17.0.2" 2269 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" 2270 | dependencies: 2271 | loose-envify "^1.1.0" 2272 | object-assign "^4.1.1" 2273 | 2274 | readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.4: 2275 | version "2.3.3" 2276 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2277 | dependencies: 2278 | core-util-is "~1.0.0" 2279 | inherits "~2.0.3" 2280 | isarray "~1.0.0" 2281 | process-nextick-args "~1.0.6" 2282 | safe-buffer "~5.1.1" 2283 | string_decoder "~1.0.3" 2284 | util-deprecate "~1.0.1" 2285 | 2286 | readdirp@^2.0.0: 2287 | version "2.1.0" 2288 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2289 | dependencies: 2290 | graceful-fs "^4.1.2" 2291 | minimatch "^3.0.2" 2292 | readable-stream "^2.0.2" 2293 | set-immediate-shim "^1.0.1" 2294 | 2295 | readdirp@~3.2.0: 2296 | version "3.2.0" 2297 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" 2298 | dependencies: 2299 | picomatch "^2.0.4" 2300 | 2301 | regenerate@^1.2.1: 2302 | version "1.3.3" 2303 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f" 2304 | 2305 | regenerator-runtime@^0.10.5: 2306 | version "0.10.5" 2307 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2308 | 2309 | regenerator-runtime@^0.11.0: 2310 | version "0.11.1" 2311 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" 2312 | 2313 | regenerator-transform@^0.10.0: 2314 | version "0.10.1" 2315 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2316 | dependencies: 2317 | babel-runtime "^6.18.0" 2318 | babel-types "^6.19.0" 2319 | private "^0.1.6" 2320 | 2321 | regex-cache@^0.4.2: 2322 | version "0.4.4" 2323 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2324 | dependencies: 2325 | is-equal-shallow "^0.1.3" 2326 | 2327 | regexpu-core@^2.0.0: 2328 | version "2.0.0" 2329 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2330 | dependencies: 2331 | regenerate "^1.2.1" 2332 | regjsgen "^0.2.0" 2333 | regjsparser "^0.1.4" 2334 | 2335 | registry-auth-token@^4.0.0: 2336 | version "4.1.1" 2337 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.1.tgz#40a33be1e82539460f94328b0f7f0f84c16d9479" 2338 | dependencies: 2339 | rc "^1.2.8" 2340 | 2341 | registry-url@^5.0.0: 2342 | version "5.1.0" 2343 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009" 2344 | dependencies: 2345 | rc "^1.2.8" 2346 | 2347 | regjsgen@^0.2.0: 2348 | version "0.2.0" 2349 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2350 | 2351 | regjsparser@^0.1.4: 2352 | version "0.1.5" 2353 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2354 | dependencies: 2355 | jsesc "~0.5.0" 2356 | 2357 | remove-trailing-separator@^1.0.1: 2358 | version "1.1.0" 2359 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2360 | 2361 | repeat-element@^1.1.2: 2362 | version "1.1.2" 2363 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2364 | 2365 | repeat-string@^1.5.2: 2366 | version "1.6.1" 2367 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2368 | 2369 | repeating@^2.0.0: 2370 | version "2.0.1" 2371 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2372 | dependencies: 2373 | is-finite "^1.0.0" 2374 | 2375 | request@2.81.0: 2376 | version "2.81.0" 2377 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2378 | dependencies: 2379 | aws-sign2 "~0.6.0" 2380 | aws4 "^1.2.1" 2381 | caseless "~0.12.0" 2382 | combined-stream "~1.0.5" 2383 | extend "~3.0.0" 2384 | forever-agent "~0.6.1" 2385 | form-data "~2.1.1" 2386 | har-validator "~4.2.1" 2387 | hawk "~3.1.3" 2388 | http-signature "~1.1.0" 2389 | is-typedarray "~1.0.0" 2390 | isstream "~0.1.2" 2391 | json-stringify-safe "~5.0.1" 2392 | mime-types "~2.1.7" 2393 | oauth-sign "~0.8.1" 2394 | performance-now "^0.2.0" 2395 | qs "~6.4.0" 2396 | safe-buffer "^5.0.1" 2397 | stringstream "~0.0.4" 2398 | tough-cookie "~2.3.0" 2399 | tunnel-agent "^0.6.0" 2400 | uuid "^3.0.0" 2401 | 2402 | responselike@^1.0.2: 2403 | version "1.0.2" 2404 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" 2405 | dependencies: 2406 | lowercase-keys "^1.0.0" 2407 | 2408 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1, rimraf@^2.6.2: 2409 | version "2.7.1" 2410 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 2411 | dependencies: 2412 | glob "^7.1.3" 2413 | 2414 | safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2415 | version "5.1.2" 2416 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2417 | 2418 | safe-buffer@^5.0.1: 2419 | version "5.2.0" 2420 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 2421 | 2422 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: 2423 | version "2.1.2" 2424 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2425 | 2426 | scheduler@^0.20.2: 2427 | version "0.20.2" 2428 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" 2429 | dependencies: 2430 | loose-envify "^1.1.0" 2431 | object-assign "^4.1.1" 2432 | 2433 | semver-diff@^3.1.1: 2434 | version "3.1.1" 2435 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b" 2436 | dependencies: 2437 | semver "^6.3.0" 2438 | 2439 | semver@^5.3.0, semver@^5.7.1: 2440 | version "5.7.1" 2441 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 2442 | 2443 | semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 2444 | version "6.3.0" 2445 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2446 | 2447 | set-blocking@~2.0.0: 2448 | version "2.0.0" 2449 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2450 | 2451 | set-immediate-shim@^1.0.1: 2452 | version "1.0.1" 2453 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2454 | 2455 | setprototypeof@1.1.1: 2456 | version "1.1.1" 2457 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 2458 | 2459 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2460 | version "3.0.2" 2461 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2462 | 2463 | slash@^1.0.0: 2464 | version "1.0.0" 2465 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2466 | 2467 | sntp@1.x.x: 2468 | version "1.0.9" 2469 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2470 | dependencies: 2471 | hoek "2.x.x" 2472 | 2473 | source-map-support@^0.4.15: 2474 | version "0.4.18" 2475 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 2476 | dependencies: 2477 | source-map "^0.5.6" 2478 | 2479 | source-map@^0.5.6: 2480 | version "0.5.7" 2481 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2482 | 2483 | sprintf-js@~1.0.2: 2484 | version "1.0.3" 2485 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2486 | 2487 | sshpk@^1.7.0: 2488 | version "1.16.1" 2489 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" 2490 | dependencies: 2491 | asn1 "~0.2.3" 2492 | assert-plus "^1.0.0" 2493 | bcrypt-pbkdf "^1.0.0" 2494 | dashdash "^1.12.0" 2495 | ecc-jsbn "~0.1.1" 2496 | getpass "^0.1.1" 2497 | jsbn "~0.1.0" 2498 | safer-buffer "^2.0.2" 2499 | tweetnacl "~0.14.0" 2500 | 2501 | "statuses@>= 1.5.0 < 2", statuses@^1.5.0: 2502 | version "1.5.0" 2503 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 2504 | 2505 | string-width@^1.0.1, string-width@^1.0.2: 2506 | version "1.0.2" 2507 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2508 | dependencies: 2509 | code-point-at "^1.0.0" 2510 | is-fullwidth-code-point "^1.0.0" 2511 | strip-ansi "^3.0.0" 2512 | 2513 | string-width@^3.0.0: 2514 | version "3.1.0" 2515 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 2516 | dependencies: 2517 | emoji-regex "^7.0.1" 2518 | is-fullwidth-code-point "^2.0.0" 2519 | strip-ansi "^5.1.0" 2520 | 2521 | string-width@^4.0.0, string-width@^4.1.0: 2522 | version "4.2.0" 2523 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 2524 | dependencies: 2525 | emoji-regex "^8.0.0" 2526 | is-fullwidth-code-point "^3.0.0" 2527 | strip-ansi "^6.0.0" 2528 | 2529 | string_decoder@~1.0.3: 2530 | version "1.0.3" 2531 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2532 | dependencies: 2533 | safe-buffer "~5.1.0" 2534 | 2535 | stringstream@~0.0.4: 2536 | version "0.0.6" 2537 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72" 2538 | 2539 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2540 | version "3.0.1" 2541 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2542 | dependencies: 2543 | ansi-regex "^2.0.0" 2544 | 2545 | strip-ansi@^5.1.0: 2546 | version "5.2.0" 2547 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 2548 | dependencies: 2549 | ansi-regex "^4.1.0" 2550 | 2551 | strip-ansi@^6.0.0: 2552 | version "6.0.0" 2553 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 2554 | dependencies: 2555 | ansi-regex "^5.0.0" 2556 | 2557 | strip-json-comments@~2.0.1: 2558 | version "2.0.1" 2559 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2560 | 2561 | supports-color@^2.0.0: 2562 | version "2.0.0" 2563 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2564 | 2565 | supports-color@^5.5.0: 2566 | version "5.5.0" 2567 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2568 | dependencies: 2569 | has-flag "^3.0.0" 2570 | 2571 | supports-color@^7.1.0: 2572 | version "7.1.0" 2573 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 2574 | dependencies: 2575 | has-flag "^4.0.0" 2576 | 2577 | tar-pack@^3.4.0: 2578 | version "3.4.1" 2579 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.1.tgz#e1dbc03a9b9d3ba07e896ad027317eb679a10a1f" 2580 | dependencies: 2581 | debug "^2.2.0" 2582 | fstream "^1.0.10" 2583 | fstream-ignore "^1.0.5" 2584 | once "^1.3.3" 2585 | readable-stream "^2.1.4" 2586 | rimraf "^2.5.1" 2587 | tar "^2.2.1" 2588 | uid-number "^0.0.6" 2589 | 2590 | tar@^2.2.1: 2591 | version "2.2.2" 2592 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 2593 | dependencies: 2594 | block-stream "*" 2595 | fstream "^1.0.12" 2596 | inherits "2" 2597 | 2598 | term-size@^2.1.0: 2599 | version "2.2.0" 2600 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" 2601 | 2602 | thenify@^3.3.0: 2603 | version "3.3.0" 2604 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.0.tgz#e69e38a1babe969b0108207978b9f62b88604839" 2605 | dependencies: 2606 | any-promise "^1.0.0" 2607 | 2608 | to-fast-properties@^1.0.3: 2609 | version "1.0.3" 2610 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2611 | 2612 | to-readable-stream@^1.0.0: 2613 | version "1.0.0" 2614 | resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" 2615 | 2616 | to-regex-range@^5.0.1: 2617 | version "5.0.1" 2618 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2619 | dependencies: 2620 | is-number "^7.0.0" 2621 | 2622 | toidentifier@1.0.0: 2623 | version "1.0.0" 2624 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 2625 | 2626 | touch@^3.1.0: 2627 | version "3.1.0" 2628 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 2629 | dependencies: 2630 | nopt "~1.0.10" 2631 | 2632 | tough-cookie@~2.3.0: 2633 | version "2.3.3" 2634 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 2635 | dependencies: 2636 | punycode "^1.4.1" 2637 | 2638 | trim-right@^1.0.1: 2639 | version "1.0.1" 2640 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2641 | 2642 | tsscmp@1.0.6: 2643 | version "1.0.6" 2644 | resolved "https://registry.yarnpkg.com/tsscmp/-/tsscmp-1.0.6.tgz#85b99583ac3589ec4bfef825b5000aa911d605eb" 2645 | 2646 | tunnel-agent@^0.6.0: 2647 | version "0.6.0" 2648 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2649 | dependencies: 2650 | safe-buffer "^5.0.1" 2651 | 2652 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2653 | version "0.14.5" 2654 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2655 | 2656 | type-fest@^0.8.1: 2657 | version "0.8.1" 2658 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 2659 | 2660 | type-is@^1.6.16: 2661 | version "1.6.18" 2662 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" 2663 | dependencies: 2664 | media-typer "0.3.0" 2665 | mime-types "~2.1.24" 2666 | 2667 | typedarray-to-buffer@^3.1.5: 2668 | version "3.1.5" 2669 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2670 | dependencies: 2671 | is-typedarray "^1.0.0" 2672 | 2673 | uid-number@^0.0.6: 2674 | version "0.0.6" 2675 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2676 | 2677 | undefsafe@^2.0.3: 2678 | version "2.0.3" 2679 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae" 2680 | dependencies: 2681 | debug "^2.2.0" 2682 | 2683 | unique-string@^2.0.0: 2684 | version "2.0.0" 2685 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" 2686 | dependencies: 2687 | crypto-random-string "^2.0.0" 2688 | 2689 | unpipe@1.0.0: 2690 | version "1.0.0" 2691 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2692 | 2693 | update-notifier@^4.1.0: 2694 | version "4.1.3" 2695 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3" 2696 | dependencies: 2697 | boxen "^4.2.0" 2698 | chalk "^3.0.0" 2699 | configstore "^5.0.1" 2700 | has-yarn "^2.1.0" 2701 | import-lazy "^2.1.0" 2702 | is-ci "^2.0.0" 2703 | is-installed-globally "^0.3.1" 2704 | is-npm "^4.0.0" 2705 | is-yarn-global "^0.3.0" 2706 | latest-version "^5.0.0" 2707 | pupa "^2.0.1" 2708 | semver-diff "^3.1.1" 2709 | xdg-basedir "^4.0.0" 2710 | 2711 | url-parse-lax@^3.0.0: 2712 | version "3.0.0" 2713 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" 2714 | dependencies: 2715 | prepend-http "^2.0.0" 2716 | 2717 | user-home@^1.1.1: 2718 | version "1.1.1" 2719 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2720 | 2721 | util-deprecate@~1.0.1: 2722 | version "1.0.2" 2723 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2724 | 2725 | uuid@^3.0.0: 2726 | version "3.1.0" 2727 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2728 | 2729 | v8flags@^2.1.1: 2730 | version "2.1.1" 2731 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2732 | dependencies: 2733 | user-home "^1.1.1" 2734 | 2735 | vary@^1.1.2: 2736 | version "1.1.2" 2737 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 2738 | 2739 | verror@1.10.0: 2740 | version "1.10.0" 2741 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2742 | dependencies: 2743 | assert-plus "^1.0.0" 2744 | core-util-is "1.0.2" 2745 | extsprintf "^1.2.0" 2746 | 2747 | whatwg-fetch@2.0.3: 2748 | version "2.0.3" 2749 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 2750 | 2751 | wide-align@^1.1.0: 2752 | version "1.1.2" 2753 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2754 | dependencies: 2755 | string-width "^1.0.2" 2756 | 2757 | widest-line@^3.1.0: 2758 | version "3.1.0" 2759 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" 2760 | dependencies: 2761 | string-width "^4.0.0" 2762 | 2763 | wrappy@1: 2764 | version "1.0.2" 2765 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2766 | 2767 | write-file-atomic@^3.0.0: 2768 | version "3.0.3" 2769 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2770 | dependencies: 2771 | imurmurhash "^0.1.4" 2772 | is-typedarray "^1.0.0" 2773 | signal-exit "^3.0.2" 2774 | typedarray-to-buffer "^3.1.5" 2775 | 2776 | xdg-basedir@^4.0.0: 2777 | version "4.0.0" 2778 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" 2779 | 2780 | ylru@^1.2.0: 2781 | version "1.2.1" 2782 | resolved "https://registry.yarnpkg.com/ylru/-/ylru-1.2.1.tgz#f576b63341547989c1de7ba288760923b27fe84f" 2783 | --------------------------------------------------------------------------------