├── .gitignore ├── LICENSE ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── AddBook.js │ │ ├── BookDetails.js │ │ └── BookList.js │ ├── index.css │ ├── index.js │ └── queries │ │ └── queries.js └── yarn.lock └── server ├── .env ├── example-queries-mutation.md ├── models ├── author.model.js ├── book.model.js └── dummy-data.js ├── now.json ├── package.json ├── schema └── schema.js ├── server.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | server/node_modules/ 2 | server/.env 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Tanay Pratap 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 | # Reading List App 2 | Learning GraphQL Apollo with React 3 | 4 | Running the app will create a book list keeping app as shown in below screenshot: 5 | 6 | ![Final App Screenshot](https://i.imgur.com/OD1tcNx.png) 7 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 2 | 3 | ## Available Scripts 4 | 5 | In the project directory, you can run: 6 | 7 | ### `npm start` 8 | 9 | Runs the app in the development mode.
10 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 11 | 12 | The page will reload if you make edits.
13 | You will also see any lint errors in the console. 14 | 15 | ### `npm test` 16 | 17 | Launches the test runner in the interactive watch mode.
18 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 19 | 20 | ### `npm run build` 21 | 22 | Builds the app for production to the `build` folder.
23 | It correctly bundles React in production mode and optimizes the build for the best performance. 24 | 25 | The build is minified and the filenames include the hashes.
26 | Your app is ready to be deployed! 27 | 28 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 29 | 30 | ### `npm run eject` 31 | 32 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 33 | 34 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 35 | 36 | Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 37 | 38 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 39 | 40 | ## Learn More 41 | 42 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 43 | 44 | To learn React, check out the [React documentation](https://reactjs.org/). 45 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "client", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "apollo-boost": "^0.1.20", 7 | "graphql": "^14.0.2", 8 | "react": "^16.6.0", 9 | "react-apollo": "^2.2.4", 10 | "react-dom": "^16.6.0", 11 | "react-scripts": "2.1.1" 12 | }, 13 | "scripts": { 14 | "start": "react-scripts start", 15 | "build": "react-scripts build", 16 | "test": "react-scripts test", 17 | "eject": "react-scripts eject" 18 | }, 19 | "eslintConfig": { 20 | "extends": "react-app" 21 | }, 22 | "browserslist": [ 23 | ">0.2%", 24 | "not dead", 25 | "not ie <= 11", 26 | "not op_mini all" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanaypratap/reading-list-app/74fb952be5922c91c8f6904168cc9d050cf069d4/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | Book Reader 14 | 15 | 16 | 19 |
20 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import ApolloClient from 'apollo-boost'; 3 | import { ApolloProvider } from 'react-apollo'; 4 | 5 | // Components 6 | import BookList from './components/BookList'; 7 | import AddBook from './components/AddBook'; 8 | 9 | // Apollo Client Setup 10 | const client = new ApolloClient({ 11 | uri: 'https://reading-list-app-server.tanaypratap.now.sh/graphql', 12 | }); 13 | 14 | class App extends Component { 15 | render() { 16 | return ( 17 | 18 |
19 |

Reading List

20 | 21 | 22 |
23 |
24 | ); 25 | } 26 | } 27 | 28 | export default App; 29 | -------------------------------------------------------------------------------- /client/src/components/AddBook.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { graphql, compose } from 'react-apollo'; 3 | 4 | import { getAuthorsQuery, addBookMutation, getBooksQuery } from '../queries/queries'; 5 | 6 | // Adding comment just to test 7 | class AddBook extends Component { 8 | state = { 9 | name: '', 10 | genre: '', 11 | authorId: '', 12 | }; 13 | 14 | submitForm = event => { 15 | event.preventDefault(); 16 | this.props.addBookMutation({ 17 | variables: { 18 | name: this.state.name, 19 | genre: this.state.genre, 20 | authorId: 21 | this.state.authorId.length > 0 ? this.state.authorId : this.props.getAuthorsQuery.authors[0].id, 22 | }, 23 | refetchQueries: [{ query: getBooksQuery }], 24 | }); 25 | }; 26 | render() { 27 | const { 28 | getAuthorsQuery: { authors, loading }, 29 | } = this.props; 30 | 31 | return ( 32 |
33 | {loading &&
Form loading ...
} 34 | {!loading && ( 35 |
36 |
37 | 38 | this.setState({ name: e.target.value })} /> 39 |
40 |
41 | 42 | this.setState({ genre: e.target.value })} /> 43 |
44 |
45 | 46 | 54 |
55 | 56 | 57 |
58 | )} 59 |
60 | ); 61 | } 62 | } 63 | 64 | export default compose( 65 | graphql(getAuthorsQuery, { name: 'getAuthorsQuery' }), 66 | graphql(addBookMutation, { name: 'addBookMutation' }) 67 | )(AddBook); 68 | -------------------------------------------------------------------------------- /client/src/components/BookDetails.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { graphql } from "react-apollo"; 3 | import { getBookQuery } from '../queries/queries'; 4 | 5 | class BookDetails extends React.Component { 6 | render() { 7 | const { book } = this.props.data 8 | return ( 9 |
10 | 11 | { book &&
12 |

{ book.name }

13 |

Genre: {book.genre}

14 |

Author: {book.author.name}

15 |

Books from same author

16 | 21 |
} 22 |
23 | ); 24 | } 25 | } 26 | 27 | export default graphql(getBookQuery, { 28 | options: (props) => { 29 | return { 30 | variables: { 31 | id: props.bookId 32 | } 33 | } 34 | } 35 | })(BookDetails); -------------------------------------------------------------------------------- /client/src/components/BookList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { graphql } from "react-apollo"; 3 | 4 | import { getBooksQuery } from "../queries/queries"; 5 | import BookDetails from './BookDetails'; 6 | 7 | class BookList extends Component { 8 | state = { 9 | selectedBook: null 10 | } 11 | render() { 12 | const { loading, books } = this.props.data 13 | return
14 | {loading &&
Loading Books..
} 15 | 33 | {this.state.selectedBook && } 34 |
; 35 | } 36 | } 37 | 38 | export default graphql(getBooksQuery)(BookList); 39 | -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 4 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | background-color: "#eee" 9 | } 10 | 11 | #main h1 { 12 | color: #444; 13 | text-align: center 14 | } 15 | 16 | #main { 17 | padding: 0px; 18 | box-sizing: border-box; 19 | width: 60%; 20 | height: 100%; 21 | } 22 | 23 | #book-list { 24 | padding: 0; 25 | } 26 | 27 | #book-list li{ 28 | display: inline-block; 29 | margin: 12px; 30 | padding: 10px; 31 | border-radius: 4px; 32 | border: 1px solid #880E4F; 33 | box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3); 34 | cursor: pointer; 35 | color: #880E4F 36 | } 37 | 38 | form { 39 | background: #fff; 40 | box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3); 41 | padding: 20px; 42 | position: fixed; 43 | left: 0; 44 | bottom: 0; 45 | width: 400px; 46 | } 47 | 48 | form .field{ 49 | display: grid; 50 | grid-template-columns: 1fr 1fr; 51 | gap: 10px; 52 | } 53 | 54 | form label { 55 | text-align: right; 56 | padding: 6px; 57 | } 58 | 59 | form select, form input { 60 | margin: 4px; 61 | padding: 6px; 62 | box-sizing: border-box; 63 | } 64 | 65 | form button { 66 | color: #fff; 67 | font-size: 2em; 68 | background: #AD1457; 69 | border: 0; 70 | padding: 0 10px; 71 | border-radius: 50%; 72 | cursor: pointer; 73 | position: absolute; 74 | bottom: 10px; 75 | left: 10px; 76 | } 77 | 78 | #book-details { 79 | position: fixed; 80 | top:0; 81 | right: 0; 82 | width:40%; 83 | height: 100%; 84 | background: #AD1457; 85 | padding: 30px; 86 | overflow: auto; 87 | box-shadow: -2px -3px 5px rgba(0, 0, 0, 0.3); 88 | box-sizing: border-box; 89 | color: #fff; 90 | } -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | 6 | ReactDOM.render(, document.getElementById('root')); 7 | -------------------------------------------------------------------------------- /client/src/queries/queries.js: -------------------------------------------------------------------------------- 1 | import { gql } from 'apollo-boost' 2 | 3 | const getAuthorsQuery = gql` 4 | { 5 | authors { 6 | name 7 | id 8 | } 9 | } 10 | `; 11 | 12 | const getBooksQuery = gql` 13 | { 14 | books { 15 | name 16 | id 17 | } 18 | } 19 | `; 20 | 21 | const getBookQuery = gql` 22 | query($id: ID){ 23 | book(id: $id){ 24 | id 25 | name 26 | genre 27 | author{ 28 | id 29 | name 30 | age 31 | books{ 32 | name 33 | id 34 | } 35 | } 36 | } 37 | } 38 | ` 39 | 40 | const addBookMutation = gql` 41 | mutation AddBook($name: String!, $genre: String!, $authorId: ID!){ 42 | addBook(name: $name, genre: $genre, authorId: $authorId) { 43 | name 44 | id 45 | } 46 | } 47 | `; 48 | 49 | export { getAuthorsQuery, getBooksQuery, addBookMutation, getBookQuery } -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- 1 | MONGO_CONN_URL="mongodb://tanay:graphql123@ds151863.mlab.com:51863/graphql-demo" 2 | 3 | PORT=4000 -------------------------------------------------------------------------------- /server/example-queries-mutation.md: -------------------------------------------------------------------------------- 1 | Some Example Queries, Mutations and their results 2 | ================================================= 3 | 4 | Query 5 | ----- 6 | 7 | `{ 8 | book(id: "5be00697dfbd6761a50a6e74") { 9 | name 10 | genre 11 | author{ 12 | name 13 | age 14 | books { 15 | name 16 | genre 17 | } 18 | } 19 | } 20 | }` 21 | 22 | Output 23 | ------ 24 | 25 | `{ 26 | "data": { 27 | "book": { 28 | "name": "The Hero of Ages", 29 | "genre": "Fantasy", 30 | "author": { 31 | "name": "Brandon Sanderson", 32 | "age": 42, 33 | "books": [ 34 | { 35 | "name": "The Final Empire", 36 | "genre": "Fantasy" 37 | }, 38 | { 39 | "name": "The Hero of Ages", 40 | "genre": "Fantasy" 41 | } 42 | ] 43 | } 44 | } 45 | } 46 | } 47 | ` 48 | 49 | Query 50 | ----- 51 | `{ 52 | authors { 53 | name 54 | age 55 | books{ 56 | name 57 | } 58 | } 59 | }` 60 | 61 | Output 62 | ------ 63 | 64 | `{ 65 | "data": { 66 | "authors": [ 67 | { 68 | "name": "Patrick Rothfuss", 69 | "age": 44, 70 | "books": [ 71 | { 72 | "name": "Name of the Wind" 73 | } 74 | ] 75 | }, 76 | { 77 | "name": "Brandon Sanderson", 78 | "age": 42, 79 | "books": [ 80 | { 81 | "name": "The Final Empire" 82 | }, 83 | { 84 | "name": "The Hero of Ages" 85 | } 86 | ] 87 | }, 88 | { 89 | "name": "Terry Pratchett", 90 | "age": 66, 91 | "books": [ 92 | { 93 | "name": "The Colour of Magic" 94 | }, 95 | { 96 | "name": "The Light Fantastic" 97 | }, 98 | { 99 | "name": "The Long Earth" 100 | } 101 | ] 102 | } 103 | ] 104 | } 105 | }` -------------------------------------------------------------------------------- /server/models/author.model.js: -------------------------------------------------------------------------------- 1 | const mongoose = require("mongoose") 2 | const Schema = mongoose.Schema; 3 | 4 | const authorSchema = new Schema({ 5 | name: String, 6 | age: Number 7 | }); 8 | 9 | module.exports = mongoose.model('Author', authorSchema) 10 | -------------------------------------------------------------------------------- /server/models/book.model.js: -------------------------------------------------------------------------------- 1 | const mongoose = require('mongoose') 2 | const Schema = mongoose.Schema 3 | 4 | const bookSchema = new Schema({ 5 | name: String, 6 | genre: String, 7 | authorId: String 8 | }) 9 | 10 | module.exports = mongoose.model('Book', bookSchema) -------------------------------------------------------------------------------- /server/models/dummy-data.js: -------------------------------------------------------------------------------- 1 | var books = [ 2 | { name: 'Name of the Wind', genre: 'Fantasy', id: '1', authorId: '1' 3 | }, 4 | { name: 'The Final Empire', genre: 'Fantasy', id: '2', authorId: '2' 5 | }, 6 | { name: 'The Hero of Ages', genre: 'Fantasy', id: '4', authorId: '2' 7 | }, 8 | { name: 'The Long Earth', genre: 'Sci-Fi', id: '3', authorId: '3' 9 | }, 10 | { name: 'The Colour of Magic', genre: 'Fantasy', id: '5', authorId: '3' 11 | }, 12 | { name: 'The Light Fantastic', genre: 'Fantasy', id: '6', authorId: '3' 13 | }, 14 | ]; 15 | 16 | var authors = [ 17 | { name: 'Patrick Rothfuss', age: 44, id: '1' 18 | }, 19 | { name: 'Brandon Sanderson', age: 42, id: '2' 20 | }, 21 | { name: 'Terry Pratchett', age: 66, id: '3' 22 | } 23 | ]; -------------------------------------------------------------------------------- /server/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "name": "reading-list-app-server", 4 | "builds": [ 5 | { 6 | "src": "server.js", 7 | "use": "@now/node-server" 8 | } 9 | ], 10 | "routes": [ 11 | { 12 | "src": "/(.*)", 13 | "dest": "server.js" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "description": "Demo app using react with graphql and apollo", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "nodemon server.js" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/tanaypratap/graphql-apollo-demo.git" 12 | }, 13 | "keywords": [ 14 | "react", 15 | "graphql", 16 | "apollo" 17 | ], 18 | "author": "Tanay Pratap", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/tanaypratap/graphql-apollo-demo/issues" 22 | }, 23 | "homepage": "https://github.com/tanaypratap/graphql-apollo-demo#readme", 24 | "dependencies": { 25 | "cors": "^2.8.5", 26 | "dotenv": "^6.1.0", 27 | "express": "^4.16.4", 28 | "express-graphql": "^0.7.1", 29 | "graphql": "^14.0.2", 30 | "mongoose": "^5.3.9" 31 | }, 32 | "devDependencies": { 33 | "nodemon": "^1.18.5" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /server/schema/schema.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @description main schema file for graphql 3 | */ 4 | 5 | const graphql = require('graphql') 6 | const _ = require('lodash') 7 | 8 | const Book = require('../models/book.model') 9 | const Author = require('../models/author.model') 10 | 11 | const { GraphQLObjectType, 12 | GraphQLString, 13 | GraphQLSchema, 14 | GraphQLID, 15 | GraphQLInt, 16 | GraphQLList, 17 | GraphQLNonNull } = graphql 18 | 19 | /** 20 | * Book schema, this is more like defining a new type, a struct or interface 21 | */ 22 | const BookType = new GraphQLObjectType({ 23 | name: 'Book', 24 | fields: () => ({ /** Function wrapping to execute it later, otherwise AuthortType will error out */ 25 | id: { type: GraphQLID }, 26 | name: { type: GraphQLString }, 27 | genre: { type: GraphQLString }, 28 | author: { 29 | type: AuthorType, 30 | resolve(parent, _){ 31 | return Author.findOne({ _id: parent.authorId }) 32 | } 33 | } 34 | }) 35 | }) 36 | 37 | const AuthorType = new GraphQLObjectType({ 38 | name: 'Author', 39 | fields: () => ({ 40 | id: { type: GraphQLID }, 41 | name: { type: GraphQLString }, 42 | age: { type: GraphQLInt }, 43 | books: { 44 | type: new GraphQLList(BookType), 45 | resolve(parent, _) { 46 | return Book.find({ authorId: parent.id }) 47 | } 48 | } 49 | }) 50 | }) 51 | 52 | /** 53 | * Root queries are the entry point for GraphQl 54 | */ 55 | const RootQuery = new GraphQLObjectType({ 56 | name: 'RootQueryType', 57 | fields: { 58 | book: { 59 | type: BookType, /** This is a query for book */ 60 | args: { id: { type: GraphQLID } }, /** User should pass the argument along, when there's a query for book */ 61 | resolve: (_, args) => { 62 | return Book.findOne({ _id: args.id }) 63 | } 64 | }, 65 | author: { 66 | type: AuthorType, 67 | args: { id: { type: GraphQLID }}, 68 | resolve: (_, args) => { 69 | return Author.findOne({ _id: args.id }) 70 | } 71 | }, 72 | books: { 73 | type: new GraphQLList(BookType), 74 | resolve(_, args){ 75 | return Book.find({}) 76 | } 77 | }, 78 | authors: { 79 | type: new GraphQLList(AuthorType), 80 | resolve(){ 81 | return Author.find({}) 82 | } 83 | } 84 | } 85 | }) 86 | 87 | const Mutation = new GraphQLObjectType({ 88 | name: "Mutation", 89 | fields: { 90 | addAuthor: { 91 | type: AuthorType, 92 | args: { 93 | name: { type: new GraphQLNonNull(GraphQLString) }, 94 | age: { type: new GraphQLNonNull(GraphQLInt) } 95 | }, 96 | resolve(parent, args) { 97 | let author = new Author({ 98 | ...args 99 | }); 100 | return author.save(); 101 | } 102 | }, 103 | 104 | addBook: { 105 | type: BookType, 106 | args: { 107 | name: { type: new GraphQLNonNull(GraphQLString) }, 108 | genre: { type: new GraphQLNonNull(GraphQLString) }, 109 | authorId: { type: new GraphQLNonNull(GraphQLID) } 110 | }, 111 | resolve(_, args) { 112 | let book = new Book({ 113 | ...args 114 | }); 115 | return book.save(); 116 | } 117 | } 118 | } 119 | }); 120 | 121 | /** 122 | * Declaring the schema and exporting it 123 | */ 124 | module.exports = new GraphQLSchema({ 125 | query: RootQuery, 126 | mutation: Mutation 127 | }) -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @description main server file, runs express app and gives graphql as a middleware 3 | */ 4 | 5 | const express = require('express'); 6 | const graphqlIHTTP = require('express-graphql'); 7 | const mongoose = require('mongoose'); 8 | const env = require('dotenv'); 9 | const cors = require('cors'); 10 | 11 | const schema = require('./schema/schema'); 12 | 13 | env.load(); 14 | 15 | const app = express(); 16 | 17 | // allow cross-origin request 18 | app.use(cors()); 19 | 20 | // connect to mLab DB 21 | // need to put db string with your creds to run in .env file 22 | mongoose.connect('mongodb://tanay:graphql123@ds151863.mlab.com:51863/graphql-demo'); 23 | mongoose.connection.once('open', () => { 24 | console.log('Connection to mLab successful!'); 25 | }); 26 | 27 | app.get('/', (req, res) => res.send('Hello World!' + process.env.PORT)); 28 | app.use( 29 | '/graphql', 30 | graphqlIHTTP({ 31 | schema, 32 | graphiql: true, 33 | }) 34 | ); 35 | 36 | // set port in .env file or env variable as PORT, 37 | // avoid 3000 as client uses that port 38 | app.listen(process.env.PORT, () => console.log(`Server is listening at port ${process.env.PORT}`)); 39 | -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 8 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 9 | 10 | accepts@^1.3.5, accepts@~1.3.5: 11 | version "1.3.5" 12 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" 13 | integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= 14 | dependencies: 15 | mime-types "~2.1.18" 16 | negotiator "0.6.1" 17 | 18 | ansi-align@^2.0.0: 19 | version "2.0.0" 20 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 21 | integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= 22 | dependencies: 23 | string-width "^2.0.0" 24 | 25 | ansi-regex@^2.0.0: 26 | version "2.1.1" 27 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 28 | integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= 29 | 30 | ansi-regex@^3.0.0: 31 | version "3.0.0" 32 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 33 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 34 | 35 | ansi-styles@^3.2.1: 36 | version "3.2.1" 37 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 38 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 39 | dependencies: 40 | color-convert "^1.9.0" 41 | 42 | anymatch@^2.0.0: 43 | version "2.0.0" 44 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" 45 | integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== 46 | dependencies: 47 | micromatch "^3.1.4" 48 | normalize-path "^2.1.1" 49 | 50 | aproba@^1.0.3: 51 | version "1.2.0" 52 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" 53 | integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== 54 | 55 | are-we-there-yet@~1.1.2: 56 | version "1.1.5" 57 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" 58 | integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== 59 | dependencies: 60 | delegates "^1.0.0" 61 | readable-stream "^2.0.6" 62 | 63 | arr-diff@^4.0.0: 64 | version "4.0.0" 65 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" 66 | integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= 67 | 68 | arr-flatten@^1.1.0: 69 | version "1.1.0" 70 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 71 | integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== 72 | 73 | arr-union@^3.1.0: 74 | version "3.1.0" 75 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 76 | integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 77 | 78 | array-flatten@1.1.1: 79 | version "1.1.1" 80 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 81 | integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 82 | 83 | array-unique@^0.3.2: 84 | version "0.3.2" 85 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" 86 | integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= 87 | 88 | assign-symbols@^1.0.0: 89 | version "1.0.0" 90 | resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 91 | integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 92 | 93 | async-each@^1.0.1: 94 | version "1.0.2" 95 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.2.tgz#8b8a7ca2a658f927e9f307d6d1a42f4199f0f735" 96 | integrity sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg== 97 | 98 | async@2.6.1: 99 | version "2.6.1" 100 | resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" 101 | integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ== 102 | dependencies: 103 | lodash "^4.17.10" 104 | 105 | atob@^2.1.1: 106 | version "2.1.2" 107 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 108 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 109 | 110 | balanced-match@^1.0.0: 111 | version "1.0.0" 112 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 113 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 114 | 115 | base@^0.11.1: 116 | version "0.11.2" 117 | resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" 118 | integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== 119 | dependencies: 120 | cache-base "^1.0.1" 121 | class-utils "^0.3.5" 122 | component-emitter "^1.2.1" 123 | define-property "^1.0.0" 124 | isobject "^3.0.1" 125 | mixin-deep "^1.2.0" 126 | pascalcase "^0.1.1" 127 | 128 | binary-extensions@^1.0.0: 129 | version "1.13.0" 130 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.0.tgz#9523e001306a32444b907423f1de2164222f6ab1" 131 | integrity sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw== 132 | 133 | bluebird@3.5.1: 134 | version "3.5.1" 135 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 136 | integrity sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA== 137 | 138 | body-parser@1.18.3: 139 | version "1.18.3" 140 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz#5b292198ffdd553b3a0f20ded0592b956955c8b4" 141 | integrity sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ= 142 | dependencies: 143 | bytes "3.0.0" 144 | content-type "~1.0.4" 145 | debug "2.6.9" 146 | depd "~1.1.2" 147 | http-errors "~1.6.3" 148 | iconv-lite "0.4.23" 149 | on-finished "~2.3.0" 150 | qs "6.5.2" 151 | raw-body "2.3.3" 152 | type-is "~1.6.16" 153 | 154 | boxen@^1.2.1: 155 | version "1.3.0" 156 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 157 | integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== 158 | dependencies: 159 | ansi-align "^2.0.0" 160 | camelcase "^4.0.0" 161 | chalk "^2.0.1" 162 | cli-boxes "^1.0.0" 163 | string-width "^2.0.0" 164 | term-size "^1.2.0" 165 | widest-line "^2.0.0" 166 | 167 | brace-expansion@^1.1.7: 168 | version "1.1.11" 169 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 170 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 171 | dependencies: 172 | balanced-match "^1.0.0" 173 | concat-map "0.0.1" 174 | 175 | braces@^2.3.1, braces@^2.3.2: 176 | version "2.3.2" 177 | resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" 178 | integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== 179 | dependencies: 180 | arr-flatten "^1.1.0" 181 | array-unique "^0.3.2" 182 | extend-shallow "^2.0.1" 183 | fill-range "^4.0.0" 184 | isobject "^3.0.1" 185 | repeat-element "^1.1.2" 186 | snapdragon "^0.8.1" 187 | snapdragon-node "^2.0.1" 188 | split-string "^3.0.2" 189 | to-regex "^3.0.1" 190 | 191 | bson@^1.1.0, bson@~1.1.0: 192 | version "1.1.1" 193 | resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.1.tgz#4330f5e99104c4e751e7351859e2d408279f2f13" 194 | integrity sha512-jCGVYLoYMHDkOsbwJZBCqwMHyH4c+wzgI9hG7Z6SZJRXWr+x58pdIbm2i9a/jFGCkRJqRUr8eoI7lDWa0hTkxg== 195 | 196 | bytes@3.0.0: 197 | version "3.0.0" 198 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" 199 | integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= 200 | 201 | cache-base@^1.0.1: 202 | version "1.0.1" 203 | resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" 204 | integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== 205 | dependencies: 206 | collection-visit "^1.0.0" 207 | component-emitter "^1.2.1" 208 | get-value "^2.0.6" 209 | has-value "^1.0.0" 210 | isobject "^3.0.1" 211 | set-value "^2.0.0" 212 | to-object-path "^0.3.0" 213 | union-value "^1.0.0" 214 | unset-value "^1.0.0" 215 | 216 | camelcase@^4.0.0: 217 | version "4.1.0" 218 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 219 | integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= 220 | 221 | capture-stack-trace@^1.0.0: 222 | version "1.0.1" 223 | resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" 224 | integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== 225 | 226 | chalk@^2.0.1: 227 | version "2.4.2" 228 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 229 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 230 | dependencies: 231 | ansi-styles "^3.2.1" 232 | escape-string-regexp "^1.0.5" 233 | supports-color "^5.3.0" 234 | 235 | chokidar@^2.1.0: 236 | version "2.1.2" 237 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.2.tgz#9c23ea40b01638439e0513864d362aeacc5ad058" 238 | integrity sha512-IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg== 239 | dependencies: 240 | anymatch "^2.0.0" 241 | async-each "^1.0.1" 242 | braces "^2.3.2" 243 | glob-parent "^3.1.0" 244 | inherits "^2.0.3" 245 | is-binary-path "^1.0.0" 246 | is-glob "^4.0.0" 247 | normalize-path "^3.0.0" 248 | path-is-absolute "^1.0.0" 249 | readdirp "^2.2.1" 250 | upath "^1.1.0" 251 | optionalDependencies: 252 | fsevents "^1.2.7" 253 | 254 | chownr@^1.1.1: 255 | version "1.1.1" 256 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" 257 | integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== 258 | 259 | ci-info@^1.5.0: 260 | version "1.6.0" 261 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" 262 | integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== 263 | 264 | class-utils@^0.3.5: 265 | version "0.3.6" 266 | resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" 267 | integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== 268 | dependencies: 269 | arr-union "^3.1.0" 270 | define-property "^0.2.5" 271 | isobject "^3.0.0" 272 | static-extend "^0.1.1" 273 | 274 | cli-boxes@^1.0.0: 275 | version "1.0.0" 276 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 277 | integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 278 | 279 | code-point-at@^1.0.0: 280 | version "1.1.0" 281 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 282 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= 283 | 284 | collection-visit@^1.0.0: 285 | version "1.0.0" 286 | resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" 287 | integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= 288 | dependencies: 289 | map-visit "^1.0.0" 290 | object-visit "^1.0.0" 291 | 292 | color-convert@^1.9.0: 293 | version "1.9.3" 294 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 295 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 296 | dependencies: 297 | color-name "1.1.3" 298 | 299 | color-name@1.1.3: 300 | version "1.1.3" 301 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 302 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 303 | 304 | component-emitter@^1.2.1: 305 | version "1.2.1" 306 | resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" 307 | integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= 308 | 309 | concat-map@0.0.1: 310 | version "0.0.1" 311 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 312 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 313 | 314 | configstore@^3.0.0: 315 | version "3.1.2" 316 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" 317 | integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== 318 | dependencies: 319 | dot-prop "^4.1.0" 320 | graceful-fs "^4.1.2" 321 | make-dir "^1.0.0" 322 | unique-string "^1.0.0" 323 | write-file-atomic "^2.0.0" 324 | xdg-basedir "^3.0.0" 325 | 326 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 327 | version "1.1.0" 328 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 329 | integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= 330 | 331 | content-disposition@0.5.2: 332 | version "0.5.2" 333 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 334 | integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= 335 | 336 | content-type@^1.0.4, content-type@~1.0.4: 337 | version "1.0.4" 338 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" 339 | integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== 340 | 341 | cookie-signature@1.0.6: 342 | version "1.0.6" 343 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 344 | integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= 345 | 346 | cookie@0.3.1: 347 | version "0.3.1" 348 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 349 | integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= 350 | 351 | copy-descriptor@^0.1.0: 352 | version "0.1.1" 353 | resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" 354 | integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 355 | 356 | core-util-is@~1.0.0: 357 | version "1.0.2" 358 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 359 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= 360 | 361 | cors@^2.8.5: 362 | version "2.8.5" 363 | resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29" 364 | integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== 365 | dependencies: 366 | object-assign "^4" 367 | vary "^1" 368 | 369 | create-error-class@^3.0.0: 370 | version "3.0.2" 371 | resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" 372 | integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= 373 | dependencies: 374 | capture-stack-trace "^1.0.0" 375 | 376 | cross-spawn@^5.0.1: 377 | version "5.1.0" 378 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 379 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 380 | dependencies: 381 | lru-cache "^4.0.1" 382 | shebang-command "^1.2.0" 383 | which "^1.2.9" 384 | 385 | crypto-random-string@^1.0.0: 386 | version "1.0.0" 387 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" 388 | integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= 389 | 390 | debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: 391 | version "2.6.9" 392 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 393 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 394 | dependencies: 395 | ms "2.0.0" 396 | 397 | debug@3.1.0: 398 | version "3.1.0" 399 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 400 | integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== 401 | dependencies: 402 | ms "2.0.0" 403 | 404 | debug@^3.1.0: 405 | version "3.2.6" 406 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" 407 | integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== 408 | dependencies: 409 | ms "^2.1.1" 410 | 411 | decode-uri-component@^0.2.0: 412 | version "0.2.0" 413 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 414 | integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 415 | 416 | deep-extend@^0.6.0: 417 | version "0.6.0" 418 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 419 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 420 | 421 | define-property@^0.2.5: 422 | version "0.2.5" 423 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" 424 | integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= 425 | dependencies: 426 | is-descriptor "^0.1.0" 427 | 428 | define-property@^1.0.0: 429 | version "1.0.0" 430 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" 431 | integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= 432 | dependencies: 433 | is-descriptor "^1.0.0" 434 | 435 | define-property@^2.0.2: 436 | version "2.0.2" 437 | resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" 438 | integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== 439 | dependencies: 440 | is-descriptor "^1.0.2" 441 | isobject "^3.0.1" 442 | 443 | delegates@^1.0.0: 444 | version "1.0.0" 445 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 446 | integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= 447 | 448 | depd@~1.1.2: 449 | version "1.1.2" 450 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" 451 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= 452 | 453 | destroy@~1.0.4: 454 | version "1.0.4" 455 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 456 | integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 457 | 458 | detect-libc@^1.0.2: 459 | version "1.0.3" 460 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" 461 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= 462 | 463 | dot-prop@^4.1.0: 464 | version "4.2.0" 465 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" 466 | integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== 467 | dependencies: 468 | is-obj "^1.0.0" 469 | 470 | dotenv@^6.1.0: 471 | version "6.2.0" 472 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064" 473 | integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== 474 | 475 | duplexer3@^0.1.4: 476 | version "0.1.4" 477 | resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" 478 | integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= 479 | 480 | ee-first@1.1.1: 481 | version "1.1.1" 482 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 483 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 484 | 485 | encodeurl@~1.0.2: 486 | version "1.0.2" 487 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" 488 | integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= 489 | 490 | escape-html@~1.0.3: 491 | version "1.0.3" 492 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 493 | integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 494 | 495 | escape-string-regexp@^1.0.5: 496 | version "1.0.5" 497 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 498 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 499 | 500 | etag@~1.8.1: 501 | version "1.8.1" 502 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" 503 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= 504 | 505 | execa@^0.7.0: 506 | version "0.7.0" 507 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 508 | integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 509 | dependencies: 510 | cross-spawn "^5.0.1" 511 | get-stream "^3.0.0" 512 | is-stream "^1.1.0" 513 | npm-run-path "^2.0.0" 514 | p-finally "^1.0.0" 515 | signal-exit "^3.0.0" 516 | strip-eof "^1.0.0" 517 | 518 | expand-brackets@^2.1.4: 519 | version "2.1.4" 520 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" 521 | integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= 522 | dependencies: 523 | debug "^2.3.3" 524 | define-property "^0.2.5" 525 | extend-shallow "^2.0.1" 526 | posix-character-classes "^0.1.0" 527 | regex-not "^1.0.0" 528 | snapdragon "^0.8.1" 529 | to-regex "^3.0.1" 530 | 531 | express-graphql@^0.7.1: 532 | version "0.7.1" 533 | resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.7.1.tgz#6c7712ee966c3aba1930e064ea4c8181e56fd3ef" 534 | integrity sha512-YpheAqTbSKpb5h57rV2yu2dPNUBi4FvZDspZ5iEV3ov34PBRgnM4lEBkv60+vZRJ6SweYL14N8AGYdov7g6ooQ== 535 | dependencies: 536 | accepts "^1.3.5" 537 | content-type "^1.0.4" 538 | http-errors "^1.7.1" 539 | raw-body "^2.3.3" 540 | 541 | express@^4.16.4: 542 | version "4.16.4" 543 | resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e" 544 | integrity sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg== 545 | dependencies: 546 | accepts "~1.3.5" 547 | array-flatten "1.1.1" 548 | body-parser "1.18.3" 549 | content-disposition "0.5.2" 550 | content-type "~1.0.4" 551 | cookie "0.3.1" 552 | cookie-signature "1.0.6" 553 | debug "2.6.9" 554 | depd "~1.1.2" 555 | encodeurl "~1.0.2" 556 | escape-html "~1.0.3" 557 | etag "~1.8.1" 558 | finalhandler "1.1.1" 559 | fresh "0.5.2" 560 | merge-descriptors "1.0.1" 561 | methods "~1.1.2" 562 | on-finished "~2.3.0" 563 | parseurl "~1.3.2" 564 | path-to-regexp "0.1.7" 565 | proxy-addr "~2.0.4" 566 | qs "6.5.2" 567 | range-parser "~1.2.0" 568 | safe-buffer "5.1.2" 569 | send "0.16.2" 570 | serve-static "1.13.2" 571 | setprototypeof "1.1.0" 572 | statuses "~1.4.0" 573 | type-is "~1.6.16" 574 | utils-merge "1.0.1" 575 | vary "~1.1.2" 576 | 577 | extend-shallow@^2.0.1: 578 | version "2.0.1" 579 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" 580 | integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= 581 | dependencies: 582 | is-extendable "^0.1.0" 583 | 584 | extend-shallow@^3.0.0, extend-shallow@^3.0.2: 585 | version "3.0.2" 586 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" 587 | integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= 588 | dependencies: 589 | assign-symbols "^1.0.0" 590 | is-extendable "^1.0.1" 591 | 592 | extglob@^2.0.4: 593 | version "2.0.4" 594 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" 595 | integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== 596 | dependencies: 597 | array-unique "^0.3.2" 598 | define-property "^1.0.0" 599 | expand-brackets "^2.1.4" 600 | extend-shallow "^2.0.1" 601 | fragment-cache "^0.2.1" 602 | regex-not "^1.0.0" 603 | snapdragon "^0.8.1" 604 | to-regex "^3.0.1" 605 | 606 | fill-range@^4.0.0: 607 | version "4.0.0" 608 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" 609 | integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= 610 | dependencies: 611 | extend-shallow "^2.0.1" 612 | is-number "^3.0.0" 613 | repeat-string "^1.6.1" 614 | to-regex-range "^2.1.0" 615 | 616 | finalhandler@1.1.1: 617 | version "1.1.1" 618 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105" 619 | integrity sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg== 620 | dependencies: 621 | debug "2.6.9" 622 | encodeurl "~1.0.2" 623 | escape-html "~1.0.3" 624 | on-finished "~2.3.0" 625 | parseurl "~1.3.2" 626 | statuses "~1.4.0" 627 | unpipe "~1.0.0" 628 | 629 | for-in@^1.0.2: 630 | version "1.0.2" 631 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 632 | integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= 633 | 634 | forwarded@~0.1.2: 635 | version "0.1.2" 636 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" 637 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= 638 | 639 | fragment-cache@^0.2.1: 640 | version "0.2.1" 641 | resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" 642 | integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= 643 | dependencies: 644 | map-cache "^0.2.2" 645 | 646 | fresh@0.5.2: 647 | version "0.5.2" 648 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" 649 | integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= 650 | 651 | fs-minipass@^1.2.5: 652 | version "1.2.5" 653 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" 654 | integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== 655 | dependencies: 656 | minipass "^2.2.1" 657 | 658 | fs.realpath@^1.0.0: 659 | version "1.0.0" 660 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 661 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 662 | 663 | fsevents@^1.2.7: 664 | version "1.2.7" 665 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" 666 | integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw== 667 | dependencies: 668 | nan "^2.9.2" 669 | node-pre-gyp "^0.10.0" 670 | 671 | gauge@~2.7.3: 672 | version "2.7.4" 673 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 674 | integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= 675 | dependencies: 676 | aproba "^1.0.3" 677 | console-control-strings "^1.0.0" 678 | has-unicode "^2.0.0" 679 | object-assign "^4.1.0" 680 | signal-exit "^3.0.0" 681 | string-width "^1.0.1" 682 | strip-ansi "^3.0.1" 683 | wide-align "^1.1.0" 684 | 685 | get-stream@^3.0.0: 686 | version "3.0.0" 687 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 688 | integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 689 | 690 | get-value@^2.0.3, get-value@^2.0.6: 691 | version "2.0.6" 692 | resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 693 | integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 694 | 695 | glob-parent@^3.1.0: 696 | version "3.1.0" 697 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 698 | integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 699 | dependencies: 700 | is-glob "^3.1.0" 701 | path-dirname "^1.0.0" 702 | 703 | glob@^7.1.3: 704 | version "7.1.3" 705 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" 706 | integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== 707 | dependencies: 708 | fs.realpath "^1.0.0" 709 | inflight "^1.0.4" 710 | inherits "2" 711 | minimatch "^3.0.4" 712 | once "^1.3.0" 713 | path-is-absolute "^1.0.0" 714 | 715 | global-dirs@^0.1.0: 716 | version "0.1.1" 717 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" 718 | integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= 719 | dependencies: 720 | ini "^1.3.4" 721 | 722 | got@^6.7.1: 723 | version "6.7.1" 724 | resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" 725 | integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= 726 | dependencies: 727 | create-error-class "^3.0.0" 728 | duplexer3 "^0.1.4" 729 | get-stream "^3.0.0" 730 | is-redirect "^1.0.0" 731 | is-retry-allowed "^1.0.0" 732 | is-stream "^1.0.0" 733 | lowercase-keys "^1.0.0" 734 | safe-buffer "^5.0.1" 735 | timed-out "^4.0.0" 736 | unzip-response "^2.0.1" 737 | url-parse-lax "^1.0.0" 738 | 739 | graceful-fs@^4.1.11, graceful-fs@^4.1.2: 740 | version "4.1.15" 741 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" 742 | integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== 743 | 744 | graphql@^14.0.2: 745 | version "14.1.1" 746 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-14.1.1.tgz#d5d77df4b19ef41538d7215d1e7a28834619fac0" 747 | integrity sha512-C5zDzLqvfPAgTtP8AUPIt9keDabrdRAqSWjj2OPRKrKxI9Fb65I36s1uCs1UUBFnSWTdO7hyHi7z1ZbwKMKF6Q== 748 | dependencies: 749 | iterall "^1.2.2" 750 | 751 | has-flag@^3.0.0: 752 | version "3.0.0" 753 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 754 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 755 | 756 | has-unicode@^2.0.0: 757 | version "2.0.1" 758 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 759 | integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= 760 | 761 | has-value@^0.3.1: 762 | version "0.3.1" 763 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" 764 | integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= 765 | dependencies: 766 | get-value "^2.0.3" 767 | has-values "^0.1.4" 768 | isobject "^2.0.0" 769 | 770 | has-value@^1.0.0: 771 | version "1.0.0" 772 | resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" 773 | integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= 774 | dependencies: 775 | get-value "^2.0.6" 776 | has-values "^1.0.0" 777 | isobject "^3.0.0" 778 | 779 | has-values@^0.1.4: 780 | version "0.1.4" 781 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" 782 | integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= 783 | 784 | has-values@^1.0.0: 785 | version "1.0.0" 786 | resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" 787 | integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= 788 | dependencies: 789 | is-number "^3.0.0" 790 | kind-of "^4.0.0" 791 | 792 | http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3: 793 | version "1.6.3" 794 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" 795 | integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= 796 | dependencies: 797 | depd "~1.1.2" 798 | inherits "2.0.3" 799 | setprototypeof "1.1.0" 800 | statuses ">= 1.4.0 < 2" 801 | 802 | http-errors@^1.7.1: 803 | version "1.7.2" 804 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" 805 | integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== 806 | dependencies: 807 | depd "~1.1.2" 808 | inherits "2.0.3" 809 | setprototypeof "1.1.1" 810 | statuses ">= 1.5.0 < 2" 811 | toidentifier "1.0.0" 812 | 813 | iconv-lite@0.4.23: 814 | version "0.4.23" 815 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63" 816 | integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA== 817 | dependencies: 818 | safer-buffer ">= 2.1.2 < 3" 819 | 820 | iconv-lite@^0.4.4: 821 | version "0.4.24" 822 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 823 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 824 | dependencies: 825 | safer-buffer ">= 2.1.2 < 3" 826 | 827 | ignore-by-default@^1.0.1: 828 | version "1.0.1" 829 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 830 | integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= 831 | 832 | ignore-walk@^3.0.1: 833 | version "3.0.1" 834 | resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" 835 | integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== 836 | dependencies: 837 | minimatch "^3.0.4" 838 | 839 | import-lazy@^2.1.0: 840 | version "2.1.0" 841 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" 842 | integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= 843 | 844 | imurmurhash@^0.1.4: 845 | version "0.1.4" 846 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 847 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 848 | 849 | inflight@^1.0.4: 850 | version "1.0.6" 851 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 852 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 853 | dependencies: 854 | once "^1.3.0" 855 | wrappy "1" 856 | 857 | inherits@2, inherits@2.0.3, inherits@^2.0.3, inherits@~2.0.3: 858 | version "2.0.3" 859 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 860 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 861 | 862 | ini@^1.3.4, ini@~1.3.0: 863 | version "1.3.5" 864 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" 865 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== 866 | 867 | ipaddr.js@1.8.0: 868 | version "1.8.0" 869 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e" 870 | integrity sha1-6qM9bd16zo9/b+DJygRA5wZzix4= 871 | 872 | is-accessor-descriptor@^0.1.6: 873 | version "0.1.6" 874 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" 875 | integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= 876 | dependencies: 877 | kind-of "^3.0.2" 878 | 879 | is-accessor-descriptor@^1.0.0: 880 | version "1.0.0" 881 | resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" 882 | integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== 883 | dependencies: 884 | kind-of "^6.0.0" 885 | 886 | is-binary-path@^1.0.0: 887 | version "1.0.1" 888 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 889 | integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= 890 | dependencies: 891 | binary-extensions "^1.0.0" 892 | 893 | is-buffer@^1.1.5: 894 | version "1.1.6" 895 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" 896 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== 897 | 898 | is-ci@^1.0.10: 899 | version "1.2.1" 900 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" 901 | integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== 902 | dependencies: 903 | ci-info "^1.5.0" 904 | 905 | is-data-descriptor@^0.1.4: 906 | version "0.1.4" 907 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" 908 | integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= 909 | dependencies: 910 | kind-of "^3.0.2" 911 | 912 | is-data-descriptor@^1.0.0: 913 | version "1.0.0" 914 | resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" 915 | integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== 916 | dependencies: 917 | kind-of "^6.0.0" 918 | 919 | is-descriptor@^0.1.0: 920 | version "0.1.6" 921 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" 922 | integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== 923 | dependencies: 924 | is-accessor-descriptor "^0.1.6" 925 | is-data-descriptor "^0.1.4" 926 | kind-of "^5.0.0" 927 | 928 | is-descriptor@^1.0.0, is-descriptor@^1.0.2: 929 | version "1.0.2" 930 | resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" 931 | integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== 932 | dependencies: 933 | is-accessor-descriptor "^1.0.0" 934 | is-data-descriptor "^1.0.0" 935 | kind-of "^6.0.2" 936 | 937 | is-extendable@^0.1.0, is-extendable@^0.1.1: 938 | version "0.1.1" 939 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 940 | integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= 941 | 942 | is-extendable@^1.0.1: 943 | version "1.0.1" 944 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" 945 | integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== 946 | dependencies: 947 | is-plain-object "^2.0.4" 948 | 949 | is-extglob@^2.1.0, is-extglob@^2.1.1: 950 | version "2.1.1" 951 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 952 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 953 | 954 | is-fullwidth-code-point@^1.0.0: 955 | version "1.0.0" 956 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 957 | integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= 958 | dependencies: 959 | number-is-nan "^1.0.0" 960 | 961 | is-fullwidth-code-point@^2.0.0: 962 | version "2.0.0" 963 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 964 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 965 | 966 | is-glob@^3.1.0: 967 | version "3.1.0" 968 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 969 | integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 970 | dependencies: 971 | is-extglob "^2.1.0" 972 | 973 | is-glob@^4.0.0: 974 | version "4.0.0" 975 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 976 | integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= 977 | dependencies: 978 | is-extglob "^2.1.1" 979 | 980 | is-installed-globally@^0.1.0: 981 | version "0.1.0" 982 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" 983 | integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= 984 | dependencies: 985 | global-dirs "^0.1.0" 986 | is-path-inside "^1.0.0" 987 | 988 | is-npm@^1.0.0: 989 | version "1.0.0" 990 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" 991 | integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= 992 | 993 | is-number@^3.0.0: 994 | version "3.0.0" 995 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 996 | integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= 997 | dependencies: 998 | kind-of "^3.0.2" 999 | 1000 | is-obj@^1.0.0: 1001 | version "1.0.1" 1002 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1003 | integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= 1004 | 1005 | is-path-inside@^1.0.0: 1006 | version "1.0.1" 1007 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 1008 | integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= 1009 | dependencies: 1010 | path-is-inside "^1.0.1" 1011 | 1012 | is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: 1013 | version "2.0.4" 1014 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" 1015 | integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== 1016 | dependencies: 1017 | isobject "^3.0.1" 1018 | 1019 | is-redirect@^1.0.0: 1020 | version "1.0.0" 1021 | resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" 1022 | integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= 1023 | 1024 | is-retry-allowed@^1.0.0: 1025 | version "1.1.0" 1026 | resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" 1027 | integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= 1028 | 1029 | is-stream@^1.0.0, is-stream@^1.1.0: 1030 | version "1.1.0" 1031 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1032 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= 1033 | 1034 | is-windows@^1.0.2: 1035 | version "1.0.2" 1036 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 1037 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 1038 | 1039 | isarray@1.0.0, isarray@~1.0.0: 1040 | version "1.0.0" 1041 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1042 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 1043 | 1044 | isexe@^2.0.0: 1045 | version "2.0.0" 1046 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1047 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1048 | 1049 | isobject@^2.0.0: 1050 | version "2.1.0" 1051 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1052 | integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= 1053 | dependencies: 1054 | isarray "1.0.0" 1055 | 1056 | isobject@^3.0.0, isobject@^3.0.1: 1057 | version "3.0.1" 1058 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" 1059 | integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= 1060 | 1061 | iterall@^1.2.2: 1062 | version "1.2.2" 1063 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.2.tgz#92d70deb8028e0c39ff3164fdbf4d8b088130cd7" 1064 | integrity sha512-yynBb1g+RFUPY64fTrFv7nsjRrENBQJaX2UL+2Szc9REFrSNm1rpSXHGzhmAy7a9uv3vlvgBlXnf9RqmPH1/DA== 1065 | 1066 | kareem@2.3.0: 1067 | version "2.3.0" 1068 | resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.3.0.tgz#ef33c42e9024dce511eeaf440cd684f3af1fc769" 1069 | integrity sha512-6hHxsp9e6zQU8nXsP+02HGWXwTkOEw6IROhF2ZA28cYbUk4eJ6QbtZvdqZOdD9YPKghG3apk5eOCvs+tLl3lRg== 1070 | 1071 | kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 1072 | version "3.2.2" 1073 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1074 | integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= 1075 | dependencies: 1076 | is-buffer "^1.1.5" 1077 | 1078 | kind-of@^4.0.0: 1079 | version "4.0.0" 1080 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1081 | integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= 1082 | dependencies: 1083 | is-buffer "^1.1.5" 1084 | 1085 | kind-of@^5.0.0: 1086 | version "5.1.0" 1087 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" 1088 | integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== 1089 | 1090 | kind-of@^6.0.0, kind-of@^6.0.2: 1091 | version "6.0.2" 1092 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" 1093 | integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== 1094 | 1095 | latest-version@^3.0.0: 1096 | version "3.1.0" 1097 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" 1098 | integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= 1099 | dependencies: 1100 | package-json "^4.0.0" 1101 | 1102 | lodash@^4.17.10: 1103 | version "4.17.11" 1104 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" 1105 | integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== 1106 | 1107 | lowercase-keys@^1.0.0: 1108 | version "1.0.1" 1109 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" 1110 | integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== 1111 | 1112 | lru-cache@^4.0.1: 1113 | version "4.1.5" 1114 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 1115 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 1116 | dependencies: 1117 | pseudomap "^1.0.2" 1118 | yallist "^2.1.2" 1119 | 1120 | make-dir@^1.0.0: 1121 | version "1.3.0" 1122 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" 1123 | integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== 1124 | dependencies: 1125 | pify "^3.0.0" 1126 | 1127 | map-cache@^0.2.2: 1128 | version "0.2.2" 1129 | resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 1130 | integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 1131 | 1132 | map-visit@^1.0.0: 1133 | version "1.0.0" 1134 | resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" 1135 | integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= 1136 | dependencies: 1137 | object-visit "^1.0.0" 1138 | 1139 | media-typer@0.3.0: 1140 | version "0.3.0" 1141 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 1142 | integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 1143 | 1144 | memory-pager@^1.0.2: 1145 | version "1.5.0" 1146 | resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5" 1147 | integrity sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg== 1148 | 1149 | merge-descriptors@1.0.1: 1150 | version "1.0.1" 1151 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 1152 | integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 1153 | 1154 | methods@~1.1.2: 1155 | version "1.1.2" 1156 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 1157 | integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 1158 | 1159 | micromatch@^3.1.10, micromatch@^3.1.4: 1160 | version "3.1.10" 1161 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 1162 | integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== 1163 | dependencies: 1164 | arr-diff "^4.0.0" 1165 | array-unique "^0.3.2" 1166 | braces "^2.3.1" 1167 | define-property "^2.0.2" 1168 | extend-shallow "^3.0.2" 1169 | extglob "^2.0.4" 1170 | fragment-cache "^0.2.1" 1171 | kind-of "^6.0.2" 1172 | nanomatch "^1.2.9" 1173 | object.pick "^1.3.0" 1174 | regex-not "^1.0.0" 1175 | snapdragon "^0.8.1" 1176 | to-regex "^3.0.2" 1177 | 1178 | mime-db@~1.38.0: 1179 | version "1.38.0" 1180 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad" 1181 | integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg== 1182 | 1183 | mime-types@~2.1.18: 1184 | version "2.1.22" 1185 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd" 1186 | integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog== 1187 | dependencies: 1188 | mime-db "~1.38.0" 1189 | 1190 | mime@1.4.1: 1191 | version "1.4.1" 1192 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" 1193 | integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ== 1194 | 1195 | minimatch@^3.0.4: 1196 | version "3.0.4" 1197 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1198 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1199 | dependencies: 1200 | brace-expansion "^1.1.7" 1201 | 1202 | minimist@0.0.8: 1203 | version "0.0.8" 1204 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1205 | integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 1206 | 1207 | minimist@^1.2.0: 1208 | version "1.2.0" 1209 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1210 | integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= 1211 | 1212 | minipass@^2.2.1, minipass@^2.3.4: 1213 | version "2.3.5" 1214 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" 1215 | integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== 1216 | dependencies: 1217 | safe-buffer "^5.1.2" 1218 | yallist "^3.0.0" 1219 | 1220 | minizlib@^1.1.1: 1221 | version "1.2.1" 1222 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" 1223 | integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== 1224 | dependencies: 1225 | minipass "^2.2.1" 1226 | 1227 | mixin-deep@^1.2.0: 1228 | version "1.3.1" 1229 | resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" 1230 | integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== 1231 | dependencies: 1232 | for-in "^1.0.2" 1233 | is-extendable "^1.0.1" 1234 | 1235 | mkdirp@^0.5.0, mkdirp@^0.5.1: 1236 | version "0.5.1" 1237 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1238 | integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 1239 | dependencies: 1240 | minimist "0.0.8" 1241 | 1242 | mongodb-core@3.1.11: 1243 | version "3.1.11" 1244 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-3.1.11.tgz#b253038dbb4d7329f3d1c2ee5400bb0c9221fde5" 1245 | integrity sha512-rD2US2s5qk/ckbiiGFHeu+yKYDXdJ1G87F6CG3YdaZpzdOm5zpoAZd/EKbPmFO6cQZ+XVXBXBJ660sSI0gc6qg== 1246 | dependencies: 1247 | bson "^1.1.0" 1248 | require_optional "^1.0.1" 1249 | safe-buffer "^5.1.2" 1250 | optionalDependencies: 1251 | saslprep "^1.0.0" 1252 | 1253 | mongodb@3.1.13: 1254 | version "3.1.13" 1255 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.1.13.tgz#f8cdcbb36ad7a08b570bd1271c8525753f75f9f4" 1256 | integrity sha512-sz2dhvBZQWf3LRNDhbd30KHVzdjZx9IKC0L+kSZ/gzYquCF5zPOgGqRz6sSCqYZtKP2ekB4nfLxhGtzGHnIKxA== 1257 | dependencies: 1258 | mongodb-core "3.1.11" 1259 | safe-buffer "^5.1.2" 1260 | 1261 | mongoose-legacy-pluralize@1.0.2: 1262 | version "1.0.2" 1263 | resolved "https://registry.yarnpkg.com/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz#3ba9f91fa507b5186d399fb40854bff18fb563e4" 1264 | integrity sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ== 1265 | 1266 | mongoose@^5.3.9: 1267 | version "5.4.19" 1268 | resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.4.19.tgz#fdca94ee7f71da2cf0e941d02255aa02007c55c0" 1269 | integrity sha512-paRU3nbCrPIUVw1GAlxo11uIIqrYORctUx1kcLj7i2NhkxPQuy5OK2/FYj8+tglsaixycmONSyop2HQp1IUQSA== 1270 | dependencies: 1271 | async "2.6.1" 1272 | bson "~1.1.0" 1273 | kareem "2.3.0" 1274 | mongodb "3.1.13" 1275 | mongodb-core "3.1.11" 1276 | mongoose-legacy-pluralize "1.0.2" 1277 | mpath "0.5.1" 1278 | mquery "3.2.0" 1279 | ms "2.1.1" 1280 | regexp-clone "0.0.1" 1281 | safe-buffer "5.1.2" 1282 | sliced "1.0.1" 1283 | 1284 | mpath@0.5.1: 1285 | version "0.5.1" 1286 | resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.5.1.tgz#17131501f1ff9e6e4fbc8ffa875aa7065b5775ab" 1287 | integrity sha512-H8OVQ+QEz82sch4wbODFOz+3YQ61FYz/z3eJ5pIdbMEaUzDqA268Wd+Vt4Paw9TJfvDgVKaayC0gBzMIw2jhsg== 1288 | 1289 | mquery@3.2.0: 1290 | version "3.2.0" 1291 | resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.0.tgz#e276472abd5109686a15eb2a8e0761db813c81cc" 1292 | integrity sha512-qPJcdK/yqcbQiKoemAt62Y0BAc0fTEKo1IThodBD+O5meQRJT/2HSe5QpBNwaa4CjskoGrYWsEyjkqgiE0qjhg== 1293 | dependencies: 1294 | bluebird "3.5.1" 1295 | debug "3.1.0" 1296 | regexp-clone "0.0.1" 1297 | safe-buffer "5.1.2" 1298 | sliced "1.0.1" 1299 | 1300 | ms@2.0.0: 1301 | version "2.0.0" 1302 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1303 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 1304 | 1305 | ms@2.1.1, ms@^2.1.1: 1306 | version "2.1.1" 1307 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" 1308 | integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== 1309 | 1310 | nan@^2.9.2: 1311 | version "2.13.1" 1312 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.13.1.tgz#a15bee3790bde247e8f38f1d446edcdaeb05f2dd" 1313 | integrity sha512-I6YB/YEuDeUZMmhscXKxGgZlFnhsn5y0hgOZBadkzfTRrZBtJDZeg6eQf7PYMIEclwmorTKK8GztsyOUSVBREA== 1314 | 1315 | nanomatch@^1.2.9: 1316 | version "1.2.13" 1317 | resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" 1318 | integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== 1319 | dependencies: 1320 | arr-diff "^4.0.0" 1321 | array-unique "^0.3.2" 1322 | define-property "^2.0.2" 1323 | extend-shallow "^3.0.2" 1324 | fragment-cache "^0.2.1" 1325 | is-windows "^1.0.2" 1326 | kind-of "^6.0.2" 1327 | object.pick "^1.3.0" 1328 | regex-not "^1.0.0" 1329 | snapdragon "^0.8.1" 1330 | to-regex "^3.0.1" 1331 | 1332 | needle@^2.2.1: 1333 | version "2.2.4" 1334 | resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" 1335 | integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== 1336 | dependencies: 1337 | debug "^2.1.2" 1338 | iconv-lite "^0.4.4" 1339 | sax "^1.2.4" 1340 | 1341 | negotiator@0.6.1: 1342 | version "0.6.1" 1343 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 1344 | integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk= 1345 | 1346 | node-pre-gyp@^0.10.0: 1347 | version "0.10.3" 1348 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" 1349 | integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== 1350 | dependencies: 1351 | detect-libc "^1.0.2" 1352 | mkdirp "^0.5.1" 1353 | needle "^2.2.1" 1354 | nopt "^4.0.1" 1355 | npm-packlist "^1.1.6" 1356 | npmlog "^4.0.2" 1357 | rc "^1.2.7" 1358 | rimraf "^2.6.1" 1359 | semver "^5.3.0" 1360 | tar "^4" 1361 | 1362 | nodemon@^1.18.5: 1363 | version "1.18.10" 1364 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.18.10.tgz#3ba63f64eb4c283cf3e4f75f30817e9d4f393afe" 1365 | integrity sha512-we51yBb1TfEvZamFchRgcfLbVYgg0xlGbyXmOtbBzDwxwgewYS/YbZ5tnlnsH51+AoSTTsT3A2E/FloUbtH8cQ== 1366 | dependencies: 1367 | chokidar "^2.1.0" 1368 | debug "^3.1.0" 1369 | ignore-by-default "^1.0.1" 1370 | minimatch "^3.0.4" 1371 | pstree.remy "^1.1.6" 1372 | semver "^5.5.0" 1373 | supports-color "^5.2.0" 1374 | touch "^3.1.0" 1375 | undefsafe "^2.0.2" 1376 | update-notifier "^2.5.0" 1377 | 1378 | nopt@^4.0.1: 1379 | version "4.0.1" 1380 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1381 | integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= 1382 | dependencies: 1383 | abbrev "1" 1384 | osenv "^0.1.4" 1385 | 1386 | nopt@~1.0.10: 1387 | version "1.0.10" 1388 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 1389 | integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= 1390 | dependencies: 1391 | abbrev "1" 1392 | 1393 | normalize-path@^2.1.1: 1394 | version "2.1.1" 1395 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1396 | integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= 1397 | dependencies: 1398 | remove-trailing-separator "^1.0.1" 1399 | 1400 | normalize-path@^3.0.0: 1401 | version "3.0.0" 1402 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1403 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1404 | 1405 | npm-bundled@^1.0.1: 1406 | version "1.0.6" 1407 | resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" 1408 | integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== 1409 | 1410 | npm-packlist@^1.1.6: 1411 | version "1.4.1" 1412 | resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" 1413 | integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== 1414 | dependencies: 1415 | ignore-walk "^3.0.1" 1416 | npm-bundled "^1.0.1" 1417 | 1418 | npm-run-path@^2.0.0: 1419 | version "2.0.2" 1420 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1421 | integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= 1422 | dependencies: 1423 | path-key "^2.0.0" 1424 | 1425 | npmlog@^4.0.2: 1426 | version "4.1.2" 1427 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1428 | integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== 1429 | dependencies: 1430 | are-we-there-yet "~1.1.2" 1431 | console-control-strings "~1.1.0" 1432 | gauge "~2.7.3" 1433 | set-blocking "~2.0.0" 1434 | 1435 | number-is-nan@^1.0.0: 1436 | version "1.0.1" 1437 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1438 | integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= 1439 | 1440 | object-assign@^4, object-assign@^4.1.0: 1441 | version "4.1.1" 1442 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1443 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1444 | 1445 | object-copy@^0.1.0: 1446 | version "0.1.0" 1447 | resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" 1448 | integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= 1449 | dependencies: 1450 | copy-descriptor "^0.1.0" 1451 | define-property "^0.2.5" 1452 | kind-of "^3.0.3" 1453 | 1454 | object-visit@^1.0.0: 1455 | version "1.0.1" 1456 | resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" 1457 | integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= 1458 | dependencies: 1459 | isobject "^3.0.0" 1460 | 1461 | object.pick@^1.3.0: 1462 | version "1.3.0" 1463 | resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" 1464 | integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= 1465 | dependencies: 1466 | isobject "^3.0.1" 1467 | 1468 | on-finished@~2.3.0: 1469 | version "2.3.0" 1470 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 1471 | integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= 1472 | dependencies: 1473 | ee-first "1.1.1" 1474 | 1475 | once@^1.3.0: 1476 | version "1.4.0" 1477 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1478 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1479 | dependencies: 1480 | wrappy "1" 1481 | 1482 | os-homedir@^1.0.0: 1483 | version "1.0.2" 1484 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1485 | integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 1486 | 1487 | os-tmpdir@^1.0.0: 1488 | version "1.0.2" 1489 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1490 | integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 1491 | 1492 | osenv@^0.1.4: 1493 | version "0.1.5" 1494 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 1495 | integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== 1496 | dependencies: 1497 | os-homedir "^1.0.0" 1498 | os-tmpdir "^1.0.0" 1499 | 1500 | p-finally@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1503 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 1504 | 1505 | package-json@^4.0.0: 1506 | version "4.0.1" 1507 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" 1508 | integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= 1509 | dependencies: 1510 | got "^6.7.1" 1511 | registry-auth-token "^3.0.1" 1512 | registry-url "^3.0.3" 1513 | semver "^5.1.0" 1514 | 1515 | parseurl@~1.3.2: 1516 | version "1.3.2" 1517 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3" 1518 | integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M= 1519 | 1520 | pascalcase@^0.1.1: 1521 | version "0.1.1" 1522 | resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 1523 | integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 1524 | 1525 | path-dirname@^1.0.0: 1526 | version "1.0.2" 1527 | resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 1528 | integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 1529 | 1530 | path-is-absolute@^1.0.0: 1531 | version "1.0.1" 1532 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1533 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1534 | 1535 | path-is-inside@^1.0.1: 1536 | version "1.0.2" 1537 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 1538 | integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 1539 | 1540 | path-key@^2.0.0: 1541 | version "2.0.1" 1542 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1543 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 1544 | 1545 | path-to-regexp@0.1.7: 1546 | version "0.1.7" 1547 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 1548 | integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= 1549 | 1550 | pify@^3.0.0: 1551 | version "3.0.0" 1552 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1553 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 1554 | 1555 | posix-character-classes@^0.1.0: 1556 | version "0.1.1" 1557 | resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" 1558 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= 1559 | 1560 | prepend-http@^1.0.1: 1561 | version "1.0.4" 1562 | resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 1563 | integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= 1564 | 1565 | process-nextick-args@~2.0.0: 1566 | version "2.0.0" 1567 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" 1568 | integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== 1569 | 1570 | proxy-addr@~2.0.4: 1571 | version "2.0.4" 1572 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.4.tgz#ecfc733bf22ff8c6f407fa275327b9ab67e48b93" 1573 | integrity sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA== 1574 | dependencies: 1575 | forwarded "~0.1.2" 1576 | ipaddr.js "1.8.0" 1577 | 1578 | pseudomap@^1.0.2: 1579 | version "1.0.2" 1580 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1581 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 1582 | 1583 | pstree.remy@^1.1.6: 1584 | version "1.1.6" 1585 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.6.tgz#73a55aad9e2d95814927131fbf4dc1b62d259f47" 1586 | integrity sha512-NdF35+QsqD7EgNEI5mkI/X+UwaxVEbQaz9f4IooEmMUv6ZPmlTQYGjBPJGgrlzNdjSvIy4MWMg6Q6vCgBO2K+w== 1587 | 1588 | qs@6.5.2: 1589 | version "6.5.2" 1590 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 1591 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 1592 | 1593 | range-parser@~1.2.0: 1594 | version "1.2.0" 1595 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 1596 | integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= 1597 | 1598 | raw-body@2.3.3, raw-body@^2.3.3: 1599 | version "2.3.3" 1600 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" 1601 | integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw== 1602 | dependencies: 1603 | bytes "3.0.0" 1604 | http-errors "1.6.3" 1605 | iconv-lite "0.4.23" 1606 | unpipe "1.0.0" 1607 | 1608 | rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: 1609 | version "1.2.8" 1610 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1611 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1612 | dependencies: 1613 | deep-extend "^0.6.0" 1614 | ini "~1.3.0" 1615 | minimist "^1.2.0" 1616 | strip-json-comments "~2.0.1" 1617 | 1618 | readable-stream@^2.0.2, readable-stream@^2.0.6: 1619 | version "2.3.6" 1620 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" 1621 | integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== 1622 | dependencies: 1623 | core-util-is "~1.0.0" 1624 | inherits "~2.0.3" 1625 | isarray "~1.0.0" 1626 | process-nextick-args "~2.0.0" 1627 | safe-buffer "~5.1.1" 1628 | string_decoder "~1.1.1" 1629 | util-deprecate "~1.0.1" 1630 | 1631 | readdirp@^2.2.1: 1632 | version "2.2.1" 1633 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" 1634 | integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== 1635 | dependencies: 1636 | graceful-fs "^4.1.11" 1637 | micromatch "^3.1.10" 1638 | readable-stream "^2.0.2" 1639 | 1640 | regex-not@^1.0.0, regex-not@^1.0.2: 1641 | version "1.0.2" 1642 | resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" 1643 | integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== 1644 | dependencies: 1645 | extend-shallow "^3.0.2" 1646 | safe-regex "^1.1.0" 1647 | 1648 | regexp-clone@0.0.1: 1649 | version "0.0.1" 1650 | resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-0.0.1.tgz#a7c2e09891fdbf38fbb10d376fb73003e68ac589" 1651 | integrity sha1-p8LgmJH9vzj7sQ03b7cwA+aKxYk= 1652 | 1653 | registry-auth-token@^3.0.1: 1654 | version "3.3.2" 1655 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" 1656 | integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== 1657 | dependencies: 1658 | rc "^1.1.6" 1659 | safe-buffer "^5.0.1" 1660 | 1661 | registry-url@^3.0.3: 1662 | version "3.1.0" 1663 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" 1664 | integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= 1665 | dependencies: 1666 | rc "^1.0.1" 1667 | 1668 | remove-trailing-separator@^1.0.1: 1669 | version "1.1.0" 1670 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1671 | integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 1672 | 1673 | repeat-element@^1.1.2: 1674 | version "1.1.3" 1675 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 1676 | integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 1677 | 1678 | repeat-string@^1.6.1: 1679 | version "1.6.1" 1680 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1681 | integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= 1682 | 1683 | require_optional@^1.0.1: 1684 | version "1.0.1" 1685 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e" 1686 | integrity sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g== 1687 | dependencies: 1688 | resolve-from "^2.0.0" 1689 | semver "^5.1.0" 1690 | 1691 | resolve-from@^2.0.0: 1692 | version "2.0.0" 1693 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" 1694 | integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c= 1695 | 1696 | resolve-url@^0.2.1: 1697 | version "0.2.1" 1698 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 1699 | integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 1700 | 1701 | ret@~0.1.10: 1702 | version "0.1.15" 1703 | resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 1704 | integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 1705 | 1706 | rimraf@^2.6.1: 1707 | version "2.6.3" 1708 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 1709 | integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 1710 | dependencies: 1711 | glob "^7.1.3" 1712 | 1713 | safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1714 | version "5.1.2" 1715 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1716 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1717 | 1718 | safe-regex@^1.1.0: 1719 | version "1.1.0" 1720 | resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" 1721 | integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= 1722 | dependencies: 1723 | ret "~0.1.10" 1724 | 1725 | "safer-buffer@>= 2.1.2 < 3": 1726 | version "2.1.2" 1727 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 1728 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 1729 | 1730 | saslprep@^1.0.0: 1731 | version "1.0.2" 1732 | resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.2.tgz#da5ab936e6ea0bbae911ffec77534be370c9f52d" 1733 | integrity sha512-4cDsYuAjXssUSjxHKRe4DTZC0agDwsCqcMqtJAQPzC74nJ7LfAJflAtC1Zed5hMzEQKj82d3tuzqdGNRsLJ4Gw== 1734 | dependencies: 1735 | sparse-bitfield "^3.0.3" 1736 | 1737 | sax@^1.2.4: 1738 | version "1.2.4" 1739 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 1740 | integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 1741 | 1742 | semver-diff@^2.0.0: 1743 | version "2.1.0" 1744 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" 1745 | integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= 1746 | dependencies: 1747 | semver "^5.0.3" 1748 | 1749 | semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.5.0: 1750 | version "5.6.0" 1751 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" 1752 | integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== 1753 | 1754 | send@0.16.2: 1755 | version "0.16.2" 1756 | resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1" 1757 | integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw== 1758 | dependencies: 1759 | debug "2.6.9" 1760 | depd "~1.1.2" 1761 | destroy "~1.0.4" 1762 | encodeurl "~1.0.2" 1763 | escape-html "~1.0.3" 1764 | etag "~1.8.1" 1765 | fresh "0.5.2" 1766 | http-errors "~1.6.2" 1767 | mime "1.4.1" 1768 | ms "2.0.0" 1769 | on-finished "~2.3.0" 1770 | range-parser "~1.2.0" 1771 | statuses "~1.4.0" 1772 | 1773 | serve-static@1.13.2: 1774 | version "1.13.2" 1775 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1" 1776 | integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw== 1777 | dependencies: 1778 | encodeurl "~1.0.2" 1779 | escape-html "~1.0.3" 1780 | parseurl "~1.3.2" 1781 | send "0.16.2" 1782 | 1783 | set-blocking@~2.0.0: 1784 | version "2.0.0" 1785 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1786 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1787 | 1788 | set-value@^0.4.3: 1789 | version "0.4.3" 1790 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" 1791 | integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= 1792 | dependencies: 1793 | extend-shallow "^2.0.1" 1794 | is-extendable "^0.1.1" 1795 | is-plain-object "^2.0.1" 1796 | to-object-path "^0.3.0" 1797 | 1798 | set-value@^2.0.0: 1799 | version "2.0.0" 1800 | resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" 1801 | integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== 1802 | dependencies: 1803 | extend-shallow "^2.0.1" 1804 | is-extendable "^0.1.1" 1805 | is-plain-object "^2.0.3" 1806 | split-string "^3.0.1" 1807 | 1808 | setprototypeof@1.1.0: 1809 | version "1.1.0" 1810 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" 1811 | integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== 1812 | 1813 | setprototypeof@1.1.1: 1814 | version "1.1.1" 1815 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" 1816 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== 1817 | 1818 | shebang-command@^1.2.0: 1819 | version "1.2.0" 1820 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1821 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1822 | dependencies: 1823 | shebang-regex "^1.0.0" 1824 | 1825 | shebang-regex@^1.0.0: 1826 | version "1.0.0" 1827 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1828 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1829 | 1830 | signal-exit@^3.0.0, signal-exit@^3.0.2: 1831 | version "3.0.2" 1832 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 1833 | integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= 1834 | 1835 | sliced@1.0.1: 1836 | version "1.0.1" 1837 | resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41" 1838 | integrity sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E= 1839 | 1840 | snapdragon-node@^2.0.1: 1841 | version "2.1.1" 1842 | resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" 1843 | integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== 1844 | dependencies: 1845 | define-property "^1.0.0" 1846 | isobject "^3.0.0" 1847 | snapdragon-util "^3.0.1" 1848 | 1849 | snapdragon-util@^3.0.1: 1850 | version "3.0.1" 1851 | resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" 1852 | integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== 1853 | dependencies: 1854 | kind-of "^3.2.0" 1855 | 1856 | snapdragon@^0.8.1: 1857 | version "0.8.2" 1858 | resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" 1859 | integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== 1860 | dependencies: 1861 | base "^0.11.1" 1862 | debug "^2.2.0" 1863 | define-property "^0.2.5" 1864 | extend-shallow "^2.0.1" 1865 | map-cache "^0.2.2" 1866 | source-map "^0.5.6" 1867 | source-map-resolve "^0.5.0" 1868 | use "^3.1.0" 1869 | 1870 | source-map-resolve@^0.5.0: 1871 | version "0.5.2" 1872 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" 1873 | integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== 1874 | dependencies: 1875 | atob "^2.1.1" 1876 | decode-uri-component "^0.2.0" 1877 | resolve-url "^0.2.1" 1878 | source-map-url "^0.4.0" 1879 | urix "^0.1.0" 1880 | 1881 | source-map-url@^0.4.0: 1882 | version "0.4.0" 1883 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 1884 | integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 1885 | 1886 | source-map@^0.5.6: 1887 | version "0.5.7" 1888 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1889 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1890 | 1891 | sparse-bitfield@^3.0.3: 1892 | version "3.0.3" 1893 | resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11" 1894 | integrity sha1-/0rm5oZWBWuks+eSqzM004JzyhE= 1895 | dependencies: 1896 | memory-pager "^1.0.2" 1897 | 1898 | split-string@^3.0.1, split-string@^3.0.2: 1899 | version "3.1.0" 1900 | resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" 1901 | integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== 1902 | dependencies: 1903 | extend-shallow "^3.0.0" 1904 | 1905 | static-extend@^0.1.1: 1906 | version "0.1.2" 1907 | resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" 1908 | integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= 1909 | dependencies: 1910 | define-property "^0.2.5" 1911 | object-copy "^0.1.0" 1912 | 1913 | "statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2": 1914 | version "1.5.0" 1915 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 1916 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 1917 | 1918 | statuses@~1.4.0: 1919 | version "1.4.0" 1920 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087" 1921 | integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew== 1922 | 1923 | string-width@^1.0.1: 1924 | version "1.0.2" 1925 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 1926 | integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= 1927 | dependencies: 1928 | code-point-at "^1.0.0" 1929 | is-fullwidth-code-point "^1.0.0" 1930 | strip-ansi "^3.0.0" 1931 | 1932 | "string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: 1933 | version "2.1.1" 1934 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1935 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1936 | dependencies: 1937 | is-fullwidth-code-point "^2.0.0" 1938 | strip-ansi "^4.0.0" 1939 | 1940 | string_decoder@~1.1.1: 1941 | version "1.1.1" 1942 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 1943 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 1944 | dependencies: 1945 | safe-buffer "~5.1.0" 1946 | 1947 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 1948 | version "3.0.1" 1949 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1950 | integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= 1951 | dependencies: 1952 | ansi-regex "^2.0.0" 1953 | 1954 | strip-ansi@^4.0.0: 1955 | version "4.0.0" 1956 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1957 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1958 | dependencies: 1959 | ansi-regex "^3.0.0" 1960 | 1961 | strip-eof@^1.0.0: 1962 | version "1.0.0" 1963 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 1964 | integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= 1965 | 1966 | strip-json-comments@~2.0.1: 1967 | version "2.0.1" 1968 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1969 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1970 | 1971 | supports-color@^5.2.0, supports-color@^5.3.0: 1972 | version "5.5.0" 1973 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1974 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1975 | dependencies: 1976 | has-flag "^3.0.0" 1977 | 1978 | tar@^4: 1979 | version "4.4.8" 1980 | resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" 1981 | integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== 1982 | dependencies: 1983 | chownr "^1.1.1" 1984 | fs-minipass "^1.2.5" 1985 | minipass "^2.3.4" 1986 | minizlib "^1.1.1" 1987 | mkdirp "^0.5.0" 1988 | safe-buffer "^5.1.2" 1989 | yallist "^3.0.2" 1990 | 1991 | term-size@^1.2.0: 1992 | version "1.2.0" 1993 | resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 1994 | integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= 1995 | dependencies: 1996 | execa "^0.7.0" 1997 | 1998 | timed-out@^4.0.0: 1999 | version "4.0.1" 2000 | resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" 2001 | integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= 2002 | 2003 | to-object-path@^0.3.0: 2004 | version "0.3.0" 2005 | resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" 2006 | integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= 2007 | dependencies: 2008 | kind-of "^3.0.2" 2009 | 2010 | to-regex-range@^2.1.0: 2011 | version "2.1.1" 2012 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" 2013 | integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= 2014 | dependencies: 2015 | is-number "^3.0.0" 2016 | repeat-string "^1.6.1" 2017 | 2018 | to-regex@^3.0.1, to-regex@^3.0.2: 2019 | version "3.0.2" 2020 | resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" 2021 | integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== 2022 | dependencies: 2023 | define-property "^2.0.2" 2024 | extend-shallow "^3.0.2" 2025 | regex-not "^1.0.2" 2026 | safe-regex "^1.1.0" 2027 | 2028 | toidentifier@1.0.0: 2029 | version "1.0.0" 2030 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" 2031 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== 2032 | 2033 | touch@^3.1.0: 2034 | version "3.1.0" 2035 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 2036 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 2037 | dependencies: 2038 | nopt "~1.0.10" 2039 | 2040 | type-is@~1.6.16: 2041 | version "1.6.16" 2042 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194" 2043 | integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q== 2044 | dependencies: 2045 | media-typer "0.3.0" 2046 | mime-types "~2.1.18" 2047 | 2048 | undefsafe@^2.0.2: 2049 | version "2.0.2" 2050 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76" 2051 | integrity sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY= 2052 | dependencies: 2053 | debug "^2.2.0" 2054 | 2055 | union-value@^1.0.0: 2056 | version "1.0.0" 2057 | resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" 2058 | integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= 2059 | dependencies: 2060 | arr-union "^3.1.0" 2061 | get-value "^2.0.6" 2062 | is-extendable "^0.1.1" 2063 | set-value "^0.4.3" 2064 | 2065 | unique-string@^1.0.0: 2066 | version "1.0.0" 2067 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" 2068 | integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= 2069 | dependencies: 2070 | crypto-random-string "^1.0.0" 2071 | 2072 | unpipe@1.0.0, unpipe@~1.0.0: 2073 | version "1.0.0" 2074 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 2075 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= 2076 | 2077 | unset-value@^1.0.0: 2078 | version "1.0.0" 2079 | resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" 2080 | integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= 2081 | dependencies: 2082 | has-value "^0.3.1" 2083 | isobject "^3.0.0" 2084 | 2085 | unzip-response@^2.0.1: 2086 | version "2.0.1" 2087 | resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" 2088 | integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= 2089 | 2090 | upath@^1.1.0: 2091 | version "1.1.2" 2092 | resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" 2093 | integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== 2094 | 2095 | update-notifier@^2.5.0: 2096 | version "2.5.0" 2097 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" 2098 | integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== 2099 | dependencies: 2100 | boxen "^1.2.1" 2101 | chalk "^2.0.1" 2102 | configstore "^3.0.0" 2103 | import-lazy "^2.1.0" 2104 | is-ci "^1.0.10" 2105 | is-installed-globally "^0.1.0" 2106 | is-npm "^1.0.0" 2107 | latest-version "^3.0.0" 2108 | semver-diff "^2.0.0" 2109 | xdg-basedir "^3.0.0" 2110 | 2111 | urix@^0.1.0: 2112 | version "0.1.0" 2113 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 2114 | integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 2115 | 2116 | url-parse-lax@^1.0.0: 2117 | version "1.0.0" 2118 | resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" 2119 | integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= 2120 | dependencies: 2121 | prepend-http "^1.0.1" 2122 | 2123 | use@^3.1.0: 2124 | version "3.1.1" 2125 | resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" 2126 | integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== 2127 | 2128 | util-deprecate@~1.0.1: 2129 | version "1.0.2" 2130 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2131 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 2132 | 2133 | utils-merge@1.0.1: 2134 | version "1.0.1" 2135 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" 2136 | integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= 2137 | 2138 | vary@^1, vary@~1.1.2: 2139 | version "1.1.2" 2140 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 2141 | integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 2142 | 2143 | which@^1.2.9: 2144 | version "1.3.1" 2145 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2146 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2147 | dependencies: 2148 | isexe "^2.0.0" 2149 | 2150 | wide-align@^1.1.0: 2151 | version "1.1.3" 2152 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 2153 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 2154 | dependencies: 2155 | string-width "^1.0.2 || 2" 2156 | 2157 | widest-line@^2.0.0: 2158 | version "2.0.1" 2159 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 2160 | integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== 2161 | dependencies: 2162 | string-width "^2.1.1" 2163 | 2164 | wrappy@1: 2165 | version "1.0.2" 2166 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2167 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2168 | 2169 | write-file-atomic@^2.0.0: 2170 | version "2.4.2" 2171 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9" 2172 | integrity sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g== 2173 | dependencies: 2174 | graceful-fs "^4.1.11" 2175 | imurmurhash "^0.1.4" 2176 | signal-exit "^3.0.2" 2177 | 2178 | xdg-basedir@^3.0.0: 2179 | version "3.0.0" 2180 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" 2181 | integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= 2182 | 2183 | yallist@^2.1.2: 2184 | version "2.1.2" 2185 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2186 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 2187 | 2188 | yallist@^3.0.0, yallist@^3.0.2: 2189 | version "3.0.3" 2190 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" 2191 | integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== 2192 | --------------------------------------------------------------------------------