├── Lyrical-GraphQL
├── .babelrc
├── .gitignore
├── README.md
├── client
│ ├── components
│ │ ├── App.js
│ │ ├── LyricCreate.js
│ │ ├── LyricList.js
│ │ ├── SongCreate.js
│ │ ├── SongDetail.js
│ │ └── SongList.js
│ ├── index.html
│ ├── index.js
│ ├── queries
│ │ ├── fetchSong.js
│ │ └── fetchSongs.js
│ └── style
│ │ └── style.css
├── index.js
├── package.json
├── server
│ ├── models
│ │ ├── index.js
│ │ ├── lyric.js
│ │ └── song.js
│ ├── schema
│ │ ├── lyric_type.js
│ │ ├── mutations.js
│ │ ├── root_query_type.js
│ │ ├── schema.js
│ │ └── song_type.js
│ └── server.js
└── webpack.config.js
├── README.md
├── auth-graphql-starter
├── .DS_Store
├── .babelrc
├── .gitignore
├── client
│ ├── components
│ │ ├── App.js
│ │ ├── AuthForm.js
│ │ ├── Dashboard.js
│ │ ├── Header.js
│ │ ├── LoginForm.js
│ │ ├── SignupForm.js
│ │ └── requireAuth.js
│ ├── index.html
│ ├── index.js
│ ├── mutations
│ │ ├── Login.js
│ │ ├── Logout.js
│ │ └── Signup.js
│ └── queries
│ │ └── CurrentUser.js
├── index.js
├── package.json
├── server
│ ├── models
│ │ ├── index.js
│ │ └── user.js
│ ├── schema
│ │ ├── mutations.js
│ │ ├── schema.js
│ │ └── types
│ │ │ ├── root_query_type.js
│ │ │ └── user_type.js
│ ├── server.js
│ └── services
│ │ └── auth.js
├── webpack.config.js
└── yarn.lock
└── users
├── .gitignore
├── db.json
├── package.json
├── schema
└── schema.js
└── server.js
/Lyrical-GraphQL/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["env", "react"]
3 | }
4 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .DS_STORE
3 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/README.md:
--------------------------------------------------------------------------------
1 | # Lyrical-GraphQL
2 | Starter project from a GraphQL course on Udemy.com
3 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/components/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | export default ({ children }) => {
4 | return
{children}
;
5 | };
6 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/components/LyricCreate.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import gql from 'graphql-tag';
3 | import { graphql } from 'react-apollo';
4 |
5 | class LyricCreate extends Component {
6 | constructor(props) {
7 | super(props);
8 |
9 | this.state = { content: '' };
10 | }
11 |
12 | onSubmit(event) {
13 | event.preventDefault();
14 |
15 | this.props.mutate({
16 | variables: {
17 | content: this.state.content,
18 | songId: this.props.songId
19 | }
20 | }).then(() => this.setState({ content: '' }));
21 | }
22 |
23 | render() {
24 | return (
25 |
32 | );
33 | }
34 | }
35 |
36 | const mutation = gql`
37 | mutation AddLyricToSong($content: String, $songId: ID) {
38 | addLyricToSong(content: $content, songId: $songId) {
39 | id
40 | lyrics {
41 | id
42 | content
43 | likes
44 | }
45 | }
46 | }
47 | `;
48 |
49 | export default graphql(mutation)(LyricCreate);
50 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/components/LyricList.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { graphql } from 'react-apollo';
3 | import gql from 'graphql-tag';
4 |
5 | class LyricList extends Component {
6 | onLike(id, likes) {
7 | this.props.mutate({
8 | variables: { id },
9 | optimisticResponse: {
10 | __typename: 'Mutation',
11 | likeLyric: {
12 | id,
13 | __typename: 'LyricType',
14 | likes: likes + 1
15 | }
16 | }
17 | });
18 | }
19 |
20 | renderLyrics() {
21 | return this.props.lyrics.map(({ id, content, likes }) => {
22 | return (
23 |
24 | {content}
25 |
26 | this.onLike(id, likes)}
29 | >
30 | thumb_up
31 |
32 | {likes}
33 |
34 |
35 | );
36 | });
37 | }
38 |
39 | render() {
40 | return (
41 |
42 | {this.renderLyrics()}
43 |
44 | );
45 | }
46 | }
47 |
48 | const mutation = gql`
49 | mutation LikeLyric($id: ID) {
50 | likeLyric(id: $id) {
51 | id
52 | likes
53 | }
54 | }
55 | `;
56 |
57 | export default graphql(mutation)(LyricList);
58 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/components/SongCreate.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { graphql } from 'react-apollo';
3 | import gql from 'graphql-tag';
4 | import { Link, hashHistory } from 'react-router';
5 | import query from '../queries/fetchSongs';
6 |
7 | class SongCreate extends Component {
8 | constructor(props) {
9 | super(props);
10 |
11 | this.state = { title: '' };
12 | }
13 |
14 | onSubmit(event) {
15 | event.preventDefault();
16 |
17 | this.props.mutate({
18 | variables: { title: this.state.title },
19 | refetchQueries: [{ query }]
20 | }).then(() => hashHistory.push('/'));
21 | }
22 |
23 | render() {
24 | return (
25 |
26 | Back
27 |
Create a New Song
28 |
35 |
36 | );
37 | }
38 | }
39 |
40 | const mutation = gql`
41 | mutation AddSong($title: String){
42 | addSong(title: $title) {
43 | title
44 | }
45 | }
46 | `;
47 |
48 | export default graphql(mutation)(SongCreate);
49 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/components/SongDetail.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { graphql } from 'react-apollo';
3 | import { Link } from 'react-router';
4 | import fetchSong from '../queries/fetchSong';
5 | import LyricCreate from './LyricCreate';
6 | import LyricList from './LyricList';
7 |
8 | class SongDetail extends Component {
9 | render() {
10 | const { song } = this.props.data;
11 |
12 | if (!song) { return Loading...
; }
13 |
14 | return (
15 |
16 | Back
17 |
{song.title}
18 |
19 |
20 |
21 | );
22 | }
23 | }
24 |
25 | export default graphql(fetchSong, {
26 | options: (props) => { return { variables: { id: props.params.id } } }
27 | })(SongDetail);
28 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/components/SongList.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import gql from 'graphql-tag';
3 | import { graphql } from 'react-apollo';
4 | import { Link } from 'react-router';
5 | import query from '../queries/fetchSongs';
6 |
7 | class SongList extends Component {
8 | onSongDelete(id) {
9 | this.props.mutate({ variables: { id } })
10 | .then(() => this.props.data.refetch());
11 | }
12 |
13 | renderSongs() {
14 | return this.props.data.songs.map(({ id, title }) => {
15 | return (
16 |
17 |
18 | {title}
19 |
20 | this.onSongDelete(id)}
23 | >
24 | delete
25 |
26 |
27 | );
28 | });
29 | }
30 |
31 | render() {
32 | if (this.props.data.loading) { return Loading...
; }
33 |
34 | return (
35 |
36 |
37 | {this.renderSongs()}
38 |
39 |
43 |
add
44 |
45 |
46 | );
47 | }
48 | }
49 |
50 | const mutation = gql`
51 | mutation DeleteSong($id: ID) {
52 | deleteSong(id: $id) {
53 | id
54 | }
55 | }
56 | `;
57 |
58 | export default graphql(mutation)(
59 | graphql(query)(SongList)
60 | );
61 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/index.js:
--------------------------------------------------------------------------------
1 | import './style/style.css';
2 | import React from 'react';
3 | import ReactDOM from 'react-dom';
4 | import { Router, Route, hashHistory, IndexRoute } from 'react-router';
5 | import ApolloClient from 'apollo-client';
6 | import { ApolloProvider } from 'react-apollo';
7 |
8 | import App from './components/App';
9 | import SongList from './components/SongList';
10 | import SongCreate from './components/SongCreate';
11 | import SongDetail from './components/SongDetail';
12 |
13 | const client = new ApolloClient({
14 | dataIdFromObject: o => o.id
15 | });
16 |
17 | const Root = () => {
18 | return (
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | );
29 | };
30 |
31 | ReactDOM.render(
32 | ,
33 | document.querySelector('#root')
34 | );
35 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/queries/fetchSong.js:
--------------------------------------------------------------------------------
1 | import gql from 'graphql-tag';
2 |
3 | export default gql`
4 | query SongQuery($id: ID!) {
5 | song(id: $id) {
6 | id
7 | title
8 | lyrics {
9 | id
10 | content
11 | likes
12 | }
13 | }
14 | }
15 | `;
16 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/queries/fetchSongs.js:
--------------------------------------------------------------------------------
1 | import gql from 'graphql-tag';
2 |
3 | export default gql`
4 | {
5 | songs {
6 | id
7 | title
8 | }
9 | }
10 | `;
11 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/client/style/style.css:
--------------------------------------------------------------------------------
1 | .collection-item {
2 | display: flex;
3 | justify-content: space-between;
4 | }
5 |
6 | .material-icons {
7 | cursor: pointer;
8 | margin-right: 5px;
9 | }
10 |
11 | .vote-box {
12 | display: flex;
13 | align-items: center;
14 | }
15 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/index.js:
--------------------------------------------------------------------------------
1 | const app = require('./server/server');
2 |
3 | app.listen(4000, () => {
4 | console.log('Listening');
5 | });
6 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "lyrical",
3 | "version": "1.0.0",
4 | "description": "Starter point for a graphQL course",
5 | "main": "index.js",
6 | "repository": {
7 | "type": "git",
8 | "url": "https://github.com/StephenGrider/Lyrical-GraphQL"
9 | },
10 | "scripts": {
11 | "dev": "nodemon index.js --ignore client"
12 | },
13 | "author": "",
14 | "license": "ISC",
15 | "dependencies": {
16 | "apollo-client": "^0.8.1",
17 | "axios": "^0.15.3",
18 | "babel-core": "^6.22.1",
19 | "babel-loader": "^6.2.10",
20 | "babel-preset-env": "^1.1.8",
21 | "babel-preset-react": "^6.22.0",
22 | "body-parser": "^1.16.0",
23 | "connect-mongo": "^1.3.2",
24 | "css-loader": "^0.26.1",
25 | "express": "^4.14.0",
26 | "express-graphql": "^0.6.1",
27 | "express-session": "^1.15.0",
28 | "graphql": "^0.8.2",
29 | "html-webpack-plugin": "^2.26.0",
30 | "lodash": "^4.17.4",
31 | "mongoose": "^4.7.8",
32 | "passport": "^0.3.2",
33 | "passport-local": "^1.0.0",
34 | "react": "^15.4.2",
35 | "react-apollo": "^0.9.0",
36 | "react-dom": "^15.4.2",
37 | "react-router": "^3.0.2",
38 | "style-loader": "^0.13.1",
39 | "webpack": "^2.2.0",
40 | "webpack-dev-middleware": "^1.9.0"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/models/index.js:
--------------------------------------------------------------------------------
1 | require('./song');
2 | require('./lyric');
3 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/models/lyric.js:
--------------------------------------------------------------------------------
1 | const mongoose = require('mongoose');
2 | const Schema = mongoose.Schema;
3 |
4 | const LyricSchema = new Schema({
5 | song: {
6 | type: Schema.Types.ObjectId,
7 | ref: 'song'
8 | },
9 | likes: { type: Number, default: 0 },
10 | content: { type: String }
11 | });
12 |
13 | LyricSchema.statics.like = function(id) {
14 | const Lyric = mongoose.model('lyric');
15 |
16 | return Lyric.findById(id)
17 | .then(lyric => {
18 | ++lyric.likes;
19 | return lyric.save();
20 | })
21 | }
22 |
23 | mongoose.model('lyric', LyricSchema);
24 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/models/song.js:
--------------------------------------------------------------------------------
1 | const mongoose = require('mongoose');
2 | const Schema = mongoose.Schema;
3 |
4 | const SongSchema = new Schema({
5 | title: { type: String },
6 | user: {
7 | type: Schema.Types.ObjectId,
8 | ref: 'user'
9 | },
10 | lyrics: [{
11 | type: Schema.Types.ObjectId,
12 | ref: 'lyric'
13 | }]
14 | });
15 |
16 | SongSchema.statics.addLyric = function(id, content) {
17 | const Lyric = mongoose.model('lyric');
18 |
19 | return this.findById(id)
20 | .then(song => {
21 | const lyric = new Lyric({ content, song })
22 | song.lyrics.push(lyric)
23 | return Promise.all([lyric.save(), song.save()])
24 | .then(([lyric, song]) => song);
25 | });
26 | }
27 |
28 | SongSchema.statics.findLyrics = function(id) {
29 | return this.findById(id)
30 | .populate('lyrics')
31 | .then(song => song.lyrics);
32 | }
33 |
34 | mongoose.model('song', SongSchema);
35 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/schema/lyric_type.js:
--------------------------------------------------------------------------------
1 | const mongoose = require('mongoose');
2 | const graphql = require('graphql');
3 | const {
4 | GraphQLObjectType,
5 | GraphQLList,
6 | GraphQLID,
7 | GraphQLInt,
8 | GraphQLString
9 | } = graphql;
10 | const Lyric = mongoose.model('lyric');
11 |
12 | const LyricType = new GraphQLObjectType({
13 | name: 'LyricType',
14 | fields: () => ({
15 | id: { type: GraphQLID },
16 | likes: { type: GraphQLInt },
17 | content: { type: GraphQLString },
18 | song: {
19 | type: require('./song_type'),
20 | resolve(parentValue) {
21 | return Lyric.findById(parentValue).populate('song')
22 | .then(lyric => {
23 | console.log(lyric)
24 | return lyric.song
25 | });
26 | }
27 | }
28 | })
29 | });
30 |
31 | module.exports = LyricType;
32 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/schema/mutations.js:
--------------------------------------------------------------------------------
1 | const graphql = require('graphql');
2 | const { GraphQLObjectType, GraphQLString, GraphQLID } = graphql;
3 | const mongoose = require('mongoose');
4 | const Song = mongoose.model('song');
5 | const Lyric = mongoose.model('lyric');
6 | const SongType = require('./song_type');
7 | const LyricType = require('./lyric_type');
8 |
9 | const mutation = new GraphQLObjectType({
10 | name: 'Mutation',
11 | fields: {
12 | addSong: {
13 | type: SongType,
14 | args: {
15 | title: { type: GraphQLString }
16 | },
17 | resolve(parentValue, { title }) {
18 | return (new Song({ title })).save()
19 | }
20 | },
21 | addLyricToSong: {
22 | type: SongType,
23 | args: {
24 | content: { type: GraphQLString },
25 | songId: { type: GraphQLID }
26 | },
27 | resolve(parentValue, { content, songId }) {
28 | return Song.addLyric(songId, content);
29 | }
30 | },
31 | likeLyric: {
32 | type: LyricType,
33 | args: { id: { type: GraphQLID } },
34 | resolve(parentValue, { id }) {
35 | return Lyric.like(id);
36 | }
37 | },
38 | deleteSong: {
39 | type: SongType,
40 | args: { id: { type: GraphQLID } },
41 | resolve(parentValue, { id }) {
42 | return Song.remove({ _id: id });
43 | }
44 | }
45 | }
46 | });
47 |
48 | module.exports = mutation;
49 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/schema/root_query_type.js:
--------------------------------------------------------------------------------
1 | const mongoose = require('mongoose');
2 | const graphql = require('graphql');
3 | const { GraphQLObjectType, GraphQLList, GraphQLID, GraphQLNonNull } = graphql;
4 | const SongType = require('./song_type');
5 | const LyricType = require('./lyric_type');
6 | const Lyric = mongoose.model('lyric');
7 | const Song = mongoose.model('song');
8 |
9 | const RootQuery = new GraphQLObjectType({
10 | name: 'RootQueryType',
11 | fields: () => ({
12 | songs: {
13 | type: new GraphQLList(SongType),
14 | resolve() {
15 | return Song.find({});
16 | }
17 | },
18 | song: {
19 | type: SongType,
20 | args: { id: { type: new GraphQLNonNull(GraphQLID) } },
21 | resolve(parentValue, { id }) {
22 | return Song.findById(id);
23 | }
24 | },
25 | lyric: {
26 | type: LyricType,
27 | args: { id: { type: new GraphQLNonNull(GraphQLID) } },
28 | resolve(parnetValue, { id }) {
29 | return Lyric.findById(id);
30 | }
31 | }
32 | })
33 | });
34 |
35 | module.exports = RootQuery;
36 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/schema/schema.js:
--------------------------------------------------------------------------------
1 | const _ = require('lodash');
2 | const graphql = require('graphql');
3 | const { GraphQLSchema } = graphql;
4 |
5 | const RootQueryType = require('./root_query_type');
6 | const mutations = require('./mutations');
7 |
8 | module.exports = new GraphQLSchema({
9 | query: RootQueryType,
10 | mutation: mutations
11 | });
12 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/schema/song_type.js:
--------------------------------------------------------------------------------
1 | const mongoose = require('mongoose');
2 | const graphql = require('graphql');
3 | const { GraphQLObjectType, GraphQLString, GraphQLID, GraphQLList } = graphql;
4 | const LyricType = require('./lyric_type');
5 | const Song = mongoose.model('song');
6 |
7 | const SongType = new GraphQLObjectType({
8 | name: 'SongType',
9 | fields: () => ({
10 | id: { type: GraphQLID },
11 | title: { type: GraphQLString },
12 | lyrics: {
13 | type: new GraphQLList(LyricType),
14 | resolve(parentValue) {
15 | return Song.findLyrics(parentValue.id);
16 | }
17 | }
18 | })
19 | });
20 |
21 | module.exports = SongType;
22 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/server/server.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const models = require('./models');
3 | const expressGraphQL = require('express-graphql');
4 | const mongoose = require('mongoose');
5 | const bodyParser = require('body-parser');
6 | const schema = require('./schema/schema');
7 |
8 | const app = express();
9 |
10 | // Replace with your mongoLab URI
11 | const MONGO_URI = 'mongodb://stephen:stephen@ds021182.mlab.com:21182/lyricaldb';
12 | if (!MONGO_URI) {
13 | throw new Error('You must provide a MongoLab URI');
14 | }
15 |
16 | mongoose.Promise = global.Promise;
17 | mongoose.connect(MONGO_URI);
18 | mongoose.connection
19 | .once('open', () => console.log('Connected to MongoLab instance.'))
20 | .on('error', error => console.log('Error connecting to MongoLab:', error));
21 |
22 | app.use(bodyParser.json());
23 | app.use('/graphql', expressGraphQL({
24 | schema,
25 | graphiql: true
26 | }));
27 |
28 | const webpackMiddleware = require('webpack-dev-middleware');
29 | const webpack = require('webpack');
30 | const webpackConfig = require('../webpack.config.js');
31 | app.use(webpackMiddleware(webpack(webpackConfig)));
32 |
33 | module.exports = app;
34 |
--------------------------------------------------------------------------------
/Lyrical-GraphQL/webpack.config.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const HtmlWebpackPlugin = require('html-webpack-plugin');
3 |
4 | module.exports = {
5 | entry: './client/index.js',
6 | output: {
7 | path: '/',
8 | filename: 'bundle.js'
9 | },
10 | module: {
11 | rules: [
12 | {
13 | use: 'babel-loader',
14 | test: /\.js$/,
15 | exclude: /node_modules/
16 | },
17 | {
18 | use: ['style-loader', 'css-loader'],
19 | test: /\.css$/
20 | }
21 | ]
22 | },
23 | plugins: [
24 | new HtmlWebpackPlugin({
25 | template: 'client/index.html'
26 | })
27 | ]
28 | };
29 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # GraphQLCasts
2 | Completed Code Examples from GraphQL with React
3 |
--------------------------------------------------------------------------------
/auth-graphql-starter/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/StephenGrider/GraphQLCasts/7d1c2f5c20e97f27a4cbf91b4f0381f349e0e624/auth-graphql-starter/.DS_Store
--------------------------------------------------------------------------------
/auth-graphql-starter/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["env", "react"]
3 | }
4 |
--------------------------------------------------------------------------------
/auth-graphql-starter/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/App.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import Header from './Header';
3 |
4 | const App = (props) => {
5 | return (
6 |
7 |
8 | {props.children}
9 |
10 | );
11 | };
12 |
13 | export default App;
14 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/AuthForm.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | class AuthForm extends Component {
4 | constructor(props) {
5 | super(props);
6 |
7 | this.state = { email: '', password: '' };
8 | }
9 |
10 | onSubmit(event) {
11 | event.preventDefault();
12 |
13 | this.props.onSubmit(this.state);
14 | }
15 |
16 | render() {
17 | return (
18 |
41 | );
42 | }
43 | }
44 |
45 | export default AuthForm;
46 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/Dashboard.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | export default () => {
4 | return You are logged in.
5 | };
6 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/Header.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { graphql } from 'react-apollo';
3 | import { Link } from 'react-router';
4 | import query from '../queries/CurrentUser';
5 | import mutation from '../mutations/Logout';
6 |
7 | class Header extends Component {
8 | onLogoutClick() {
9 | this.props.mutate({
10 | refetchQueries: [{ query }]
11 | });
12 | }
13 |
14 | renderButtons() {
15 | const { loading, user } = this.props.data;
16 |
17 | if (loading) { return ; }
18 |
19 | if (user) {
20 | return (
21 | Logout
22 | );
23 | } else {
24 | return (
25 |
26 |
27 | Signup
28 |
29 |
30 | Login
31 |
32 |
33 | );
34 | }
35 | }
36 |
37 | render() {
38 | return (
39 |
49 | );
50 | }
51 | }
52 |
53 | export default graphql(mutation)(
54 | graphql(query)(Header)
55 | );
56 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/LoginForm.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import AuthForm from './AuthForm';
3 | import mutation from '../mutations/Login';
4 | import { graphql } from 'react-apollo';
5 | import query from '../queries/CurrentUser';
6 | import { hashHistory } from 'react-router';
7 |
8 | class LoginForm extends Component {
9 | constructor(props) {
10 | super(props);
11 |
12 | this.state = { errors: [] };
13 | }
14 |
15 | componentWillUpdate(nextProps) {
16 | // this.props // the old, current set of props
17 | // nextProps // the next set of props that will be in place
18 | // when the component rerenders
19 | if (!this.props.data.user && nextProps.data.user) {
20 | // redirect to dashboard!!!!
21 | hashHistory.push('/dashboard');
22 | }
23 | }
24 |
25 | onSubmit({ email, password }) {
26 | this.props.mutate({
27 | variables: { email, password },
28 | refetchQueries: [{ query }]
29 | }).catch(res => {
30 | const errors = res.graphQLErrors.map(error => error.message);
31 | this.setState({ errors });
32 | });
33 | }
34 |
35 | render() {
36 | return (
37 |
44 | );
45 | }
46 | }
47 |
48 | export default graphql(query)(
49 | graphql(mutation)(LoginForm)
50 | );
51 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/SignupForm.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import AuthForm from './AuthForm';
3 | import { graphql } from 'react-apollo';
4 | import mutation from '../mutations/Signup';
5 | import query from '../queries/CurrentUser';
6 | import { hashHistory } from 'react-router';
7 |
8 | class SignupForm extends Component {
9 | constructor(props) {
10 | super(props);
11 |
12 | this.state = { errors: [] };
13 | }
14 |
15 | componentWillUpdate(nextProps) {
16 | if (nextProps.data.user && !this.props.data.user) {
17 | hashHistory.push('/dashboard');
18 | }
19 | }
20 |
21 | onSubmit({ email, password }) {
22 | this.props.mutate({
23 | variables: { email, password },
24 | refetchQueries: [{ query }]
25 | }).catch(res => {
26 | const errors = res.graphQLErrors.map(error => error.message);
27 | this.setState({ errors });
28 | });
29 | }
30 |
31 | render() {
32 | return (
33 |
40 | );
41 | }
42 | }
43 |
44 | export default graphql(query)(
45 | graphql(mutation)(SignupForm)
46 | );
47 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/components/requireAuth.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import { graphql } from 'react-apollo';
3 | import currentUserQuery from '../queries/CurrentUser';
4 | import { hashHistory } from 'react-router';
5 |
6 | export default (WrappedComponent) => {
7 | class RequireAuth extends Component {
8 | componentWillUpdate(nextProps) {
9 | if (!nextProps.data.loading && !nextProps.data.user) {
10 | hashHistory.push('/login');
11 | }
12 | }
13 |
14 | render() {
15 | return ;
16 | }
17 | }
18 |
19 | return graphql(currentUserQuery)(RequireAuth);
20 | };
21 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import ApolloClient, { createNetworkInterface } from 'apollo-client';
4 | import { ApolloProvider } from 'react-apollo';
5 | import { Router, hashHistory, Route, IndexRoute } from 'react-router';
6 |
7 | import App from './components/app';
8 | import LoginForm from './components/LoginForm';
9 | import SignupForm from './components/SignupForm';
10 | import Dashboard from './components/Dashboard';
11 | import requireAuth from './components/requireAuth';
12 |
13 | const networkInterface = createNetworkInterface({
14 | uri: '/graphql',
15 | opts: {
16 | credentials: 'same-origin'
17 | }
18 | });
19 |
20 | const client = new ApolloClient({
21 | networkInterface,
22 | dataIdFromObject: o => o.id
23 | });
24 |
25 | const Root = () => {
26 | return (
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 | );
37 | };
38 |
39 | ReactDOM.render(, document.querySelector('#root'));
40 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/mutations/Login.js:
--------------------------------------------------------------------------------
1 | import gql from 'graphql-tag';
2 |
3 | export default gql`
4 | mutation Login($email: String, $password: String) {
5 | login(email: $email, password: $password) {
6 | id
7 | email
8 | }
9 | }
10 | `;
11 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/mutations/Logout.js:
--------------------------------------------------------------------------------
1 | import gql from 'graphql-tag';
2 |
3 | export default gql`
4 | mutation {
5 | logout {
6 | id
7 | email
8 | }
9 | }
10 | `;
11 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/mutations/Signup.js:
--------------------------------------------------------------------------------
1 | import gql from 'graphql-tag';
2 |
3 | export default gql`
4 | mutation Signup($email: String, $password: String) {
5 | signup(email: $email, password: $password) {
6 | id
7 | email
8 | }
9 | }
10 | `;
11 |
--------------------------------------------------------------------------------
/auth-graphql-starter/client/queries/CurrentUser.js:
--------------------------------------------------------------------------------
1 | import gql from 'graphql-tag';
2 |
3 | export default gql`
4 | {
5 | user {
6 | id
7 | email
8 | }
9 | }
10 | `;
11 |
--------------------------------------------------------------------------------
/auth-graphql-starter/index.js:
--------------------------------------------------------------------------------
1 | const app = require('./server/server');
2 |
3 | app.listen(4000, () => {
4 | console.log('Listening');
5 | });
6 |
--------------------------------------------------------------------------------
/auth-graphql-starter/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "users",
3 | "version": "1.0.0",
4 | "description": "Starter pack for an auth-included graphql project",
5 | "repository": {
6 | "type": "git",
7 | "url": "github.com/stephengrider"
8 | },
9 | "main": "index.js",
10 | "scripts": {
11 | "dev": "nodemon index.js --ignore client"
12 | },
13 | "author": "",
14 | "license": "ISC",
15 | "dependencies": {
16 | "apollo-client": "^0.8.2",
17 | "axios": "^0.15.3",
18 | "babel-core": "^6.22.1",
19 | "babel-loader": "^6.2.10",
20 | "babel-preset-env": "^1.1.8",
21 | "babel-preset-react": "^6.22.0",
22 | "bcrypt-nodejs": "0.0.3",
23 | "body-parser": "^1.16.0",
24 | "connect-mongo": "^1.3.2",
25 | "express": "^4.14.0",
26 | "express-graphql": "^0.6.1",
27 | "express-session": "^1.15.0",
28 | "graphql": "^0.8.2",
29 | "graphql-tag": "^1.2.4",
30 | "html-webpack-plugin": "^2.26.0",
31 | "lodash": "^4.17.4",
32 | "mongoose": "^4.7.8",
33 | "passport": "^0.3.2",
34 | "passport-local": "^1.0.0",
35 | "react": "^15.4.2",
36 | "react-apollo": "^0.10.0",
37 | "react-dom": "^15.4.2",
38 | "react-router": "^3.0.2",
39 | "webpack": "^2.2.0",
40 | "webpack-dev-middleware": "^1.9.0"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/models/index.js:
--------------------------------------------------------------------------------
1 | require('./user');
2 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/models/user.js:
--------------------------------------------------------------------------------
1 | const bcrypt = require('bcrypt-nodejs');
2 | const crypto = require('crypto');
3 | const mongoose = require('mongoose');
4 | const Schema = mongoose.Schema;
5 |
6 | // Every user has an email and password. The password is not stored as
7 | // plain text - see the authentication helpers below.
8 | const UserSchema = new Schema({
9 | email: String,
10 | password: String
11 | });
12 |
13 | // The user's password is never saved in plain text. Prior to saving the
14 | // user model, we 'salt' and 'hash' the users password. This is a one way
15 | // procedure that modifies the password - the plain text password cannot be
16 | // derived from the salted + hashed version. See 'comparePassword' to understand
17 | // how this is used.
18 | UserSchema.pre('save', function save(next) {
19 | const user = this;
20 | if (!user.isModified('password')) { return next(); }
21 | bcrypt.genSalt(10, (err, salt) => {
22 | if (err) { return next(err); }
23 | bcrypt.hash(user.password, salt, null, (err, hash) => {
24 | if (err) { return next(err); }
25 | user.password = hash;
26 | next();
27 | });
28 | });
29 | });
30 |
31 | // We need to compare the plain text password (submitted whenever logging in)
32 | // with the salted + hashed version that is sitting in the database.
33 | // 'bcrypt.compare' takes the plain text password and hashes it, then compares
34 | // that hashed password to the one stored in the DB. Remember that hashing is
35 | // a one way process - the passwords are never compared in plain text form.
36 | UserSchema.methods.comparePassword = function comparePassword(candidatePassword, cb) {
37 | bcrypt.compare(candidatePassword, this.password, (err, isMatch) => {
38 | cb(err, isMatch);
39 | });
40 | };
41 |
42 | mongoose.model('user', UserSchema);
43 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/schema/mutations.js:
--------------------------------------------------------------------------------
1 | const graphql = require('graphql');
2 | const {
3 | GraphQLObjectType,
4 | GraphQLString
5 | } = graphql;
6 | const UserType = require('./types/user_type');
7 | const AuthService = require('../services/auth');
8 |
9 | const mutation = new GraphQLObjectType({
10 | name: 'Mutation',
11 | fields: {
12 | signup: {
13 | type: UserType,
14 | args: {
15 | email: { type: GraphQLString },
16 | password: { type: GraphQLString }
17 | },
18 | resolve(parentValue, { email, password }, req) {
19 | return AuthService.signup({ email, password, req });
20 | }
21 | },
22 | logout: {
23 | type: UserType,
24 | resolve(parentValue, args, req) {
25 | const { user } = req;
26 | req.logout();
27 | return user;
28 | }
29 | },
30 | login: {
31 | type: UserType,
32 | args: {
33 | email: { type: GraphQLString },
34 | password: { type: GraphQLString }
35 | },
36 | resolve(parentValue, { email, password }, req) {
37 | return AuthService.login({ email, password, req });
38 | }
39 | }
40 | }
41 | });
42 |
43 | module.exports = mutation;
44 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/schema/schema.js:
--------------------------------------------------------------------------------
1 | const graphql = require('graphql');
2 | const { GraphQLSchema } = graphql;
3 |
4 | const RootQueryType = require('./types/root_query_type');
5 | const mutation = require('./mutations');
6 |
7 | module.exports = new GraphQLSchema({
8 | query: RootQueryType,
9 | mutation
10 | });
11 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/schema/types/root_query_type.js:
--------------------------------------------------------------------------------
1 | const graphql = require('graphql');
2 | const { GraphQLObjectType, GraphQLID } = graphql;
3 | const UserType = require('./user_type');
4 |
5 | const RootQueryType = new GraphQLObjectType({
6 | name: 'RootQueryType',
7 | fields: {
8 | user: {
9 | type: UserType,
10 | resolve(parentValue, args, req) {
11 | return req.user;
12 | }
13 | }
14 | }
15 | });
16 |
17 | module.exports = RootQueryType;
18 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/schema/types/user_type.js:
--------------------------------------------------------------------------------
1 | const graphql = require('graphql');
2 | const {
3 | GraphQLObjectType,
4 | GraphQLString,
5 | GraphQLID
6 | } = graphql;
7 |
8 | const UserType = new GraphQLObjectType({
9 | name: 'UserType',
10 | fields: {
11 | id: { type: GraphQLID },
12 | email: { type: GraphQLString }
13 | }
14 | });
15 |
16 | module.exports = UserType;
17 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/server.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const models = require('./models');
3 | const expressGraphQL = require('express-graphql');
4 | const mongoose = require('mongoose');
5 | const session = require('express-session');
6 | const passport = require('passport');
7 | const passportConfig = require('./services/auth');
8 | const MongoStore = require('connect-mongo')(session);
9 | const schema = require('./schema/schema');
10 |
11 | // Create a new Express application
12 | const app = express();
13 |
14 | // Replace with your mongoLab URI
15 | const MONGO_URI = 'mongodb://stephen:password@ds053178.mlab.com:53178/auth';
16 |
17 | // Mongoose's built in promise library is deprecated, replace it with ES2015 Promise
18 | mongoose.Promise = global.Promise;
19 |
20 | // Connect to the mongoDB instance and log a message
21 | // on success or failure
22 | mongoose.connect(MONGO_URI);
23 | mongoose.connection
24 | .once('open', () => console.log('Connected to MongoLab instance.'))
25 | .on('error', error => console.log('Error connecting to MongoLab:', error));
26 |
27 | // Configures express to use sessions. This places an encrypted identifier
28 | // on the users cookie. When a user makes a request, this middleware examines
29 | // the cookie and modifies the request object to indicate which user made the request
30 | // The cookie itself only contains the id of a session; more data about the session
31 | // is stored inside of MongoDB.
32 | app.use(session({
33 | resave: true,
34 | saveUninitialized: true,
35 | secret: 'aaabbbccc',
36 | store: new MongoStore({
37 | url: MONGO_URI,
38 | autoReconnect: true
39 | })
40 | }));
41 |
42 | // Passport is wired into express as a middleware. When a request comes in,
43 | // Passport will examine the request's session (as set by the above config) and
44 | // assign the current user to the 'req.user' object. See also servces/auth.js
45 | app.use(passport.initialize());
46 | app.use(passport.session());
47 |
48 | // Instruct Express to pass on any request made to the '/graphql' route
49 | // to the GraphQL instance.
50 | app.use('/graphql', expressGraphQL({
51 | schema,
52 | graphiql: true
53 | }));
54 |
55 | // Webpack runs as a middleware. If any request comes in for the root route ('/')
56 | // Webpack will respond with the output of the webpack process: an HTML file and
57 | // a single bundle.js output of all of our client side Javascript
58 | const webpackMiddleware = require('webpack-dev-middleware');
59 | const webpack = require('webpack');
60 | const webpackConfig = require('../webpack.config.js');
61 | app.use(webpackMiddleware(webpack(webpackConfig)));
62 |
63 | module.exports = app;
64 |
--------------------------------------------------------------------------------
/auth-graphql-starter/server/services/auth.js:
--------------------------------------------------------------------------------
1 | const mongoose = require('mongoose');
2 | const passport = require('passport');
3 | const LocalStrategy = require('passport-local').Strategy;
4 |
5 | const User = mongoose.model('user');
6 |
7 | // SerializeUser is used to provide some identifying token that can be saved
8 | // in the users session. We traditionally use the 'ID' for this.
9 | passport.serializeUser((user, done) => {
10 | done(null, user.id);
11 | });
12 |
13 | // The counterpart of 'serializeUser'. Given only a user's ID, we must return
14 | // the user object. This object is placed on 'req.user'.
15 | passport.deserializeUser((id, done) => {
16 | User.findById(id, (err, user) => {
17 | done(err, user);
18 | });
19 | });
20 |
21 | // Instructs Passport how to authenticate a user using a locally saved email
22 | // and password combination. This strategy is called whenever a user attempts to
23 | // log in. We first find the user model in MongoDB that matches the submitted email,
24 | // then check to see if the provided password matches the saved password. There
25 | // are two obvious failure points here: the email might not exist in our DB or
26 | // the password might not match the saved one. In either case, we call the 'done'
27 | // callback, including a string that messages why the authentication process failed.
28 | // This string is provided back to the GraphQL client.
29 | passport.use(new LocalStrategy({ usernameField: 'email' }, (email, password, done) => {
30 | User.findOne({ email: email.toLowerCase() }, (err, user) => {
31 | if (err) { return done(err); }
32 | if (!user) { return done(null, false, 'Invalid Credentials'); }
33 | user.comparePassword(password, (err, isMatch) => {
34 | if (err) { return done(err); }
35 | if (isMatch) {
36 | return done(null, user);
37 | }
38 | return done(null, false, 'Invalid credentials.');
39 | });
40 | });
41 | }));
42 |
43 | // Creates a new user account. We first check to see if a user already exists
44 | // with this email address to avoid making multiple accounts with identical addresses
45 | // If it does not, we save the existing user. After the user is created, it is
46 | // provided to the 'req.logIn' function. This is apart of Passport JS.
47 | // Notice the Promise created in the second 'then' statement. This is done
48 | // because Passport only supports callbacks, while GraphQL only supports promises
49 | // for async code! Awkward!
50 | function signup({ email, password, req }) {
51 | const user = new User({ email, password });
52 | if (!email || !password) { throw new Error('You must provide an email and password.'); }
53 |
54 | return User.findOne({ email })
55 | .then(existingUser => {
56 | if (existingUser) { throw new Error('Email in use'); }
57 | return user.save();
58 | })
59 | .then(user => {
60 | return new Promise((resolve, reject) => {
61 | req.logIn(user, (err) => {
62 | if (err) { reject(err); }
63 | resolve(user);
64 | });
65 | });
66 | });
67 | }
68 |
69 | // Logs in a user. This will invoke the 'local-strategy' defined above in this
70 | // file. Notice the strange method signature here: the 'passport.authenticate'
71 | // function returns a function, as its indended to be used as a middleware with
72 | // Express. We have another compatibility layer here to make it work nicely with
73 | // GraphQL, as GraphQL always expects to see a promise for handling async code.
74 | function login({ email, password, req }) {
75 | return new Promise((resolve, reject) => {
76 | passport.authenticate('local', (err, user) => {
77 | if (!user) { reject('Invalid credentials.') }
78 |
79 | req.login(user, () => resolve(user));
80 | })({ body: { email, password } });
81 | });
82 | }
83 |
84 | module.exports = { signup, login };
85 |
--------------------------------------------------------------------------------
/auth-graphql-starter/webpack.config.js:
--------------------------------------------------------------------------------
1 | const webpack = require('webpack');
2 | const HtmlWebpackPlugin = require('html-webpack-plugin');
3 |
4 | module.exports = {
5 | entry: './client/index.js',
6 | output: {
7 | path: '/',
8 | filename: 'bundle.js'
9 | },
10 | module: {
11 | rules: [
12 | {
13 | use: 'babel-loader',
14 | test: /\.js$/,
15 | exclude: /node_modules/
16 | }
17 | ]
18 | },
19 | plugins: [
20 | new HtmlWebpackPlugin({
21 | template: 'client/index.html'
22 | })
23 | ]
24 | };
25 |
--------------------------------------------------------------------------------
/auth-graphql-starter/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@types/async@^2.0.31":
6 | version "2.0.38"
7 | resolved "https://registry.yarnpkg.com/@types/async/-/async-2.0.38.tgz#5c369dcb14788da0621daafa8594a053b0edcb21"
8 |
9 | "@types/graphql@^0.8.0":
10 | version "0.8.6"
11 | resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.8.6.tgz#b34fb880493ba835b0c067024ee70130d6f9bb68"
12 |
13 | "@types/isomorphic-fetch@0.0.30":
14 | version "0.0.30"
15 | resolved "https://registry.yarnpkg.com/@types/isomorphic-fetch/-/isomorphic-fetch-0.0.30.tgz#a21717624cde9a48c2db53a4e500fc5c32a99bbc"
16 |
17 | abbrev@1:
18 | version "1.0.9"
19 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
20 |
21 | accepts@^1.3.0, accepts@~1.3.3:
22 | version "1.3.3"
23 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca"
24 | dependencies:
25 | mime-types "~2.1.11"
26 | negotiator "0.6.1"
27 |
28 | acorn-dynamic-import@^2.0.0:
29 | version "2.0.1"
30 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.1.tgz#23f671eb6e650dab277fef477c321b1178a8cca2"
31 | dependencies:
32 | acorn "^4.0.3"
33 |
34 | acorn@^4.0.3, acorn@^4.0.4:
35 | version "4.0.4"
36 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
37 |
38 | ajv-keywords@^1.1.1:
39 | version "1.5.1"
40 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c"
41 |
42 | ajv@^4.7.0:
43 | version "4.11.2"
44 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.2.tgz#f166c3c11cbc6cb9dcc102a5bcfe5b72c95287e6"
45 | dependencies:
46 | co "^4.6.0"
47 | json-stable-stringify "^1.0.1"
48 |
49 | align-text@^0.1.1, align-text@^0.1.3:
50 | version "0.1.4"
51 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
52 | dependencies:
53 | kind-of "^3.0.2"
54 | longest "^1.0.1"
55 | repeat-string "^1.5.2"
56 |
57 | ansi-regex@^2.0.0:
58 | version "2.1.1"
59 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
60 |
61 | ansi-styles@^2.2.1:
62 | version "2.2.1"
63 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
64 |
65 | anymatch@^1.3.0:
66 | version "1.3.0"
67 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507"
68 | dependencies:
69 | arrify "^1.0.0"
70 | micromatch "^2.1.5"
71 |
72 | apollo-client@^0.8.2:
73 | version "0.8.2"
74 | resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-0.8.2.tgz#d5c5026035db4207350a16cf318a33cfc0e735bb"
75 | dependencies:
76 | graphql-anywhere "^2.1.0"
77 | graphql-tag "^1.1.1"
78 | redux "^3.4.0"
79 | symbol-observable "^1.0.2"
80 | whatwg-fetch "^2.0.0"
81 | optionalDependencies:
82 | "@types/async" "^2.0.31"
83 | "@types/graphql" "^0.8.0"
84 | "@types/isomorphic-fetch" "0.0.30"
85 |
86 | aproba@^1.0.3:
87 | version "1.0.4"
88 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.0.4.tgz#2713680775e7614c8ba186c065d4e2e52d1072c0"
89 |
90 | are-we-there-yet@~1.1.2:
91 | version "1.1.2"
92 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3"
93 | dependencies:
94 | delegates "^1.0.0"
95 | readable-stream "^2.0.0 || ^1.1.13"
96 |
97 | arr-diff@^2.0.0:
98 | version "2.0.0"
99 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
100 | dependencies:
101 | arr-flatten "^1.0.1"
102 |
103 | arr-flatten@^1.0.1:
104 | version "1.0.1"
105 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b"
106 |
107 | array-flatten@1.1.1:
108 | version "1.1.1"
109 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
110 |
111 | array-unique@^0.2.1:
112 | version "0.2.1"
113 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
114 |
115 | arrify@^1.0.0:
116 | version "1.0.1"
117 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
118 |
119 | asap@~2.0.3:
120 | version "2.0.5"
121 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
122 |
123 | asn1.js@^4.0.0:
124 | version "4.9.1"
125 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
126 | dependencies:
127 | bn.js "^4.0.0"
128 | inherits "^2.0.1"
129 | minimalistic-assert "^1.0.0"
130 |
131 | asn1@~0.2.3:
132 | version "0.2.3"
133 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
134 |
135 | assert-plus@^0.2.0:
136 | version "0.2.0"
137 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
138 |
139 | assert-plus@^1.0.0:
140 | version "1.0.0"
141 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
142 |
143 | assert@^1.1.1:
144 | version "1.4.1"
145 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
146 | dependencies:
147 | util "0.10.3"
148 |
149 | async-each@^1.0.0:
150 | version "1.0.1"
151 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
152 |
153 | async@2.1.4, async@^2.1.2:
154 | version "2.1.4"
155 | resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4"
156 | dependencies:
157 | lodash "^4.14.0"
158 |
159 | async@~0.2.6:
160 | version "0.2.10"
161 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
162 |
163 | asynckit@^0.4.0:
164 | version "0.4.0"
165 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
166 |
167 | aws-sign2@~0.6.0:
168 | version "0.6.0"
169 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
170 |
171 | aws4@^1.2.1:
172 | version "1.5.0"
173 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
174 |
175 | axios@^0.15.3:
176 | version "0.15.3"
177 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053"
178 | dependencies:
179 | follow-redirects "1.0.0"
180 |
181 | babel-code-frame@^6.22.0:
182 | version "6.22.0"
183 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
184 | dependencies:
185 | chalk "^1.1.0"
186 | esutils "^2.0.2"
187 | js-tokens "^3.0.0"
188 |
189 | babel-core@^6.22.0, babel-core@^6.22.1:
190 | version "6.22.1"
191 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.22.1.tgz#9c5fd658ba1772d28d721f6d25d968fc7ae21648"
192 | dependencies:
193 | babel-code-frame "^6.22.0"
194 | babel-generator "^6.22.0"
195 | babel-helpers "^6.22.0"
196 | babel-messages "^6.22.0"
197 | babel-register "^6.22.0"
198 | babel-runtime "^6.22.0"
199 | babel-template "^6.22.0"
200 | babel-traverse "^6.22.1"
201 | babel-types "^6.22.0"
202 | babylon "^6.11.0"
203 | convert-source-map "^1.1.0"
204 | debug "^2.1.1"
205 | json5 "^0.5.0"
206 | lodash "^4.2.0"
207 | minimatch "^3.0.2"
208 | path-is-absolute "^1.0.0"
209 | private "^0.1.6"
210 | slash "^1.0.0"
211 | source-map "^0.5.0"
212 |
213 | babel-generator@^6.22.0:
214 | version "6.22.0"
215 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.22.0.tgz#d642bf4961911a8adc7c692b0c9297f325cda805"
216 | dependencies:
217 | babel-messages "^6.22.0"
218 | babel-runtime "^6.22.0"
219 | babel-types "^6.22.0"
220 | detect-indent "^4.0.0"
221 | jsesc "^1.3.0"
222 | lodash "^4.2.0"
223 | source-map "^0.5.0"
224 |
225 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0:
226 | version "6.22.0"
227 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd"
228 | dependencies:
229 | babel-helper-explode-assignable-expression "^6.22.0"
230 | babel-runtime "^6.22.0"
231 | babel-types "^6.22.0"
232 |
233 | babel-helper-builder-react-jsx@^6.22.0:
234 | version "6.22.0"
235 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.22.0.tgz#aafb31913e47761fd4d0b6987756a144a65fca0d"
236 | dependencies:
237 | babel-runtime "^6.22.0"
238 | babel-types "^6.22.0"
239 | esutils "^2.0.0"
240 | lodash "^4.2.0"
241 |
242 | babel-helper-call-delegate@^6.22.0:
243 | version "6.22.0"
244 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef"
245 | dependencies:
246 | babel-helper-hoist-variables "^6.22.0"
247 | babel-runtime "^6.22.0"
248 | babel-traverse "^6.22.0"
249 | babel-types "^6.22.0"
250 |
251 | babel-helper-define-map@^6.22.0:
252 | version "6.22.0"
253 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.22.0.tgz#9544e9502b2d6dfe7d00ff60e82bd5a7a89e95b7"
254 | dependencies:
255 | babel-helper-function-name "^6.22.0"
256 | babel-runtime "^6.22.0"
257 | babel-types "^6.22.0"
258 | lodash "^4.2.0"
259 |
260 | babel-helper-explode-assignable-expression@^6.22.0:
261 | version "6.22.0"
262 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478"
263 | dependencies:
264 | babel-runtime "^6.22.0"
265 | babel-traverse "^6.22.0"
266 | babel-types "^6.22.0"
267 |
268 | babel-helper-function-name@^6.22.0:
269 | version "6.22.0"
270 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.22.0.tgz#51f1bdc4bb89b15f57a9b249f33d742816dcbefc"
271 | dependencies:
272 | babel-helper-get-function-arity "^6.22.0"
273 | babel-runtime "^6.22.0"
274 | babel-template "^6.22.0"
275 | babel-traverse "^6.22.0"
276 | babel-types "^6.22.0"
277 |
278 | babel-helper-get-function-arity@^6.22.0:
279 | version "6.22.0"
280 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce"
281 | dependencies:
282 | babel-runtime "^6.22.0"
283 | babel-types "^6.22.0"
284 |
285 | babel-helper-hoist-variables@^6.22.0:
286 | version "6.22.0"
287 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72"
288 | dependencies:
289 | babel-runtime "^6.22.0"
290 | babel-types "^6.22.0"
291 |
292 | babel-helper-optimise-call-expression@^6.22.0:
293 | version "6.22.0"
294 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.22.0.tgz#f8d5d4b40a6e2605a6a7f9d537b581bea3756d15"
295 | dependencies:
296 | babel-runtime "^6.22.0"
297 | babel-types "^6.22.0"
298 |
299 | babel-helper-regex@^6.22.0:
300 | version "6.22.0"
301 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d"
302 | dependencies:
303 | babel-runtime "^6.22.0"
304 | babel-types "^6.22.0"
305 | lodash "^4.2.0"
306 |
307 | babel-helper-remap-async-to-generator@^6.22.0:
308 | version "6.22.0"
309 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383"
310 | dependencies:
311 | babel-helper-function-name "^6.22.0"
312 | babel-runtime "^6.22.0"
313 | babel-template "^6.22.0"
314 | babel-traverse "^6.22.0"
315 | babel-types "^6.22.0"
316 |
317 | babel-helper-replace-supers@^6.22.0:
318 | version "6.22.0"
319 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.22.0.tgz#1fcee2270657548908c34db16bcc345f9850cf42"
320 | dependencies:
321 | babel-helper-optimise-call-expression "^6.22.0"
322 | babel-messages "^6.22.0"
323 | babel-runtime "^6.22.0"
324 | babel-template "^6.22.0"
325 | babel-traverse "^6.22.0"
326 | babel-types "^6.22.0"
327 |
328 | babel-helpers@^6.22.0:
329 | version "6.22.0"
330 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.22.0.tgz#d275f55f2252b8101bff07bc0c556deda657392c"
331 | dependencies:
332 | babel-runtime "^6.22.0"
333 | babel-template "^6.22.0"
334 |
335 | babel-loader@^6.2.10:
336 | version "6.2.10"
337 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.2.10.tgz#adefc2b242320cd5d15e65b31cea0e8b1b02d4b0"
338 | dependencies:
339 | find-cache-dir "^0.1.1"
340 | loader-utils "^0.2.11"
341 | mkdirp "^0.5.1"
342 | object-assign "^4.0.1"
343 |
344 | babel-messages@^6.22.0:
345 | version "6.22.0"
346 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.22.0.tgz#36066a214f1217e4ed4164867669ecb39e3ea575"
347 | dependencies:
348 | babel-runtime "^6.22.0"
349 |
350 | babel-plugin-check-es2015-constants@^6.3.13:
351 | version "6.22.0"
352 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
353 | dependencies:
354 | babel-runtime "^6.22.0"
355 |
356 | babel-plugin-syntax-async-functions@^6.8.0:
357 | version "6.13.0"
358 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
359 |
360 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
361 | version "6.13.0"
362 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
363 |
364 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13:
365 | version "6.18.0"
366 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
367 |
368 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
369 | version "6.18.0"
370 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
371 |
372 | babel-plugin-syntax-trailing-function-commas@^6.13.0:
373 | version "6.22.0"
374 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
375 |
376 | babel-plugin-transform-async-to-generator@^6.8.0:
377 | version "6.22.0"
378 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e"
379 | dependencies:
380 | babel-helper-remap-async-to-generator "^6.22.0"
381 | babel-plugin-syntax-async-functions "^6.8.0"
382 | babel-runtime "^6.22.0"
383 |
384 | babel-plugin-transform-es2015-arrow-functions@^6.3.13:
385 | version "6.22.0"
386 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
387 | dependencies:
388 | babel-runtime "^6.22.0"
389 |
390 | babel-plugin-transform-es2015-block-scoped-functions@^6.3.13:
391 | version "6.22.0"
392 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
393 | dependencies:
394 | babel-runtime "^6.22.0"
395 |
396 | babel-plugin-transform-es2015-block-scoping@^6.6.0:
397 | version "6.22.0"
398 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.22.0.tgz#00d6e3a0bebdcfe7536b9d653b44a9141e63e47e"
399 | dependencies:
400 | babel-runtime "^6.22.0"
401 | babel-template "^6.22.0"
402 | babel-traverse "^6.22.0"
403 | babel-types "^6.22.0"
404 | lodash "^4.2.0"
405 |
406 | babel-plugin-transform-es2015-classes@^6.6.0:
407 | version "6.22.0"
408 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.22.0.tgz#54d44998fd823d9dca15292324161c331c1b6f14"
409 | dependencies:
410 | babel-helper-define-map "^6.22.0"
411 | babel-helper-function-name "^6.22.0"
412 | babel-helper-optimise-call-expression "^6.22.0"
413 | babel-helper-replace-supers "^6.22.0"
414 | babel-messages "^6.22.0"
415 | babel-runtime "^6.22.0"
416 | babel-template "^6.22.0"
417 | babel-traverse "^6.22.0"
418 | babel-types "^6.22.0"
419 |
420 | babel-plugin-transform-es2015-computed-properties@^6.3.13:
421 | version "6.22.0"
422 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7"
423 | dependencies:
424 | babel-runtime "^6.22.0"
425 | babel-template "^6.22.0"
426 |
427 | babel-plugin-transform-es2015-destructuring@^6.6.0:
428 | version "6.22.0"
429 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.22.0.tgz#8e0af2f885a0b2cf999d47c4c1dd23ce88cfa4c6"
430 | dependencies:
431 | babel-runtime "^6.22.0"
432 |
433 | babel-plugin-transform-es2015-duplicate-keys@^6.6.0:
434 | version "6.22.0"
435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b"
436 | dependencies:
437 | babel-runtime "^6.22.0"
438 | babel-types "^6.22.0"
439 |
440 | babel-plugin-transform-es2015-for-of@^6.6.0:
441 | version "6.22.0"
442 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.22.0.tgz#180467ad63aeea592a1caeee4bf1c8b3e2616265"
443 | dependencies:
444 | babel-runtime "^6.22.0"
445 |
446 | babel-plugin-transform-es2015-function-name@^6.3.13:
447 | version "6.22.0"
448 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104"
449 | dependencies:
450 | babel-helper-function-name "^6.22.0"
451 | babel-runtime "^6.22.0"
452 | babel-types "^6.22.0"
453 |
454 | babel-plugin-transform-es2015-literals@^6.3.13:
455 | version "6.22.0"
456 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
457 | dependencies:
458 | babel-runtime "^6.22.0"
459 |
460 | babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.8.0:
461 | version "6.22.0"
462 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21"
463 | dependencies:
464 | babel-plugin-transform-es2015-modules-commonjs "^6.22.0"
465 | babel-runtime "^6.22.0"
466 | babel-template "^6.22.0"
467 |
468 | babel-plugin-transform-es2015-modules-commonjs@^6.22.0, babel-plugin-transform-es2015-modules-commonjs@^6.6.0:
469 | version "6.22.0"
470 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.22.0.tgz#6ca04e22b8e214fb50169730657e7a07dc941145"
471 | dependencies:
472 | babel-plugin-transform-strict-mode "^6.22.0"
473 | babel-runtime "^6.22.0"
474 | babel-template "^6.22.0"
475 | babel-types "^6.22.0"
476 |
477 | babel-plugin-transform-es2015-modules-systemjs@^6.12.0:
478 | version "6.22.0"
479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.22.0.tgz#810cd0cd025a08383b84236b92c6e31f88e644ad"
480 | dependencies:
481 | babel-helper-hoist-variables "^6.22.0"
482 | babel-runtime "^6.22.0"
483 | babel-template "^6.22.0"
484 |
485 | babel-plugin-transform-es2015-modules-umd@^6.12.0:
486 | version "6.22.0"
487 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.22.0.tgz#60d0ba3bd23258719c64391d9bf492d648dc0fae"
488 | dependencies:
489 | babel-plugin-transform-es2015-modules-amd "^6.22.0"
490 | babel-runtime "^6.22.0"
491 | babel-template "^6.22.0"
492 |
493 | babel-plugin-transform-es2015-object-super@^6.3.13:
494 | version "6.22.0"
495 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc"
496 | dependencies:
497 | babel-helper-replace-supers "^6.22.0"
498 | babel-runtime "^6.22.0"
499 |
500 | babel-plugin-transform-es2015-parameters@^6.6.0:
501 | version "6.22.0"
502 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.22.0.tgz#57076069232019094f27da8c68bb7162fe208dbb"
503 | dependencies:
504 | babel-helper-call-delegate "^6.22.0"
505 | babel-helper-get-function-arity "^6.22.0"
506 | babel-runtime "^6.22.0"
507 | babel-template "^6.22.0"
508 | babel-traverse "^6.22.0"
509 | babel-types "^6.22.0"
510 |
511 | babel-plugin-transform-es2015-shorthand-properties@^6.3.13:
512 | version "6.22.0"
513 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723"
514 | dependencies:
515 | babel-runtime "^6.22.0"
516 | babel-types "^6.22.0"
517 |
518 | babel-plugin-transform-es2015-spread@^6.3.13:
519 | version "6.22.0"
520 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
521 | dependencies:
522 | babel-runtime "^6.22.0"
523 |
524 | babel-plugin-transform-es2015-sticky-regex@^6.3.13:
525 | version "6.22.0"
526 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593"
527 | dependencies:
528 | babel-helper-regex "^6.22.0"
529 | babel-runtime "^6.22.0"
530 | babel-types "^6.22.0"
531 |
532 | babel-plugin-transform-es2015-template-literals@^6.6.0:
533 | version "6.22.0"
534 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
535 | dependencies:
536 | babel-runtime "^6.22.0"
537 |
538 | babel-plugin-transform-es2015-typeof-symbol@^6.6.0:
539 | version "6.22.0"
540 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.22.0.tgz#87faf2336d3b6a97f68c4d906b0cd0edeae676e1"
541 | dependencies:
542 | babel-runtime "^6.22.0"
543 |
544 | babel-plugin-transform-es2015-unicode-regex@^6.3.13:
545 | version "6.22.0"
546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20"
547 | dependencies:
548 | babel-helper-regex "^6.22.0"
549 | babel-runtime "^6.22.0"
550 | regexpu-core "^2.0.0"
551 |
552 | babel-plugin-transform-exponentiation-operator@^6.8.0:
553 | version "6.22.0"
554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d"
555 | dependencies:
556 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0"
557 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
558 | babel-runtime "^6.22.0"
559 |
560 | babel-plugin-transform-flow-strip-types@^6.22.0:
561 | version "6.22.0"
562 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
563 | dependencies:
564 | babel-plugin-syntax-flow "^6.18.0"
565 | babel-runtime "^6.22.0"
566 |
567 | babel-plugin-transform-react-display-name@^6.22.0:
568 | version "6.22.0"
569 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.22.0.tgz#077197520fa8562b8d3da4c3c4b0b1bdd7853f26"
570 | dependencies:
571 | babel-runtime "^6.22.0"
572 |
573 | babel-plugin-transform-react-jsx-self@^6.22.0:
574 | version "6.22.0"
575 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
576 | dependencies:
577 | babel-plugin-syntax-jsx "^6.8.0"
578 | babel-runtime "^6.22.0"
579 |
580 | babel-plugin-transform-react-jsx-source@^6.22.0:
581 | version "6.22.0"
582 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
583 | dependencies:
584 | babel-plugin-syntax-jsx "^6.8.0"
585 | babel-runtime "^6.22.0"
586 |
587 | babel-plugin-transform-react-jsx@^6.22.0:
588 | version "6.22.0"
589 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.22.0.tgz#48556b7dd4c3fe97d1c943bcd54fc3f2561c1817"
590 | dependencies:
591 | babel-helper-builder-react-jsx "^6.22.0"
592 | babel-plugin-syntax-jsx "^6.8.0"
593 | babel-runtime "^6.22.0"
594 |
595 | babel-plugin-transform-regenerator@^6.6.0:
596 | version "6.22.0"
597 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6"
598 | dependencies:
599 | regenerator-transform "0.9.8"
600 |
601 | babel-plugin-transform-strict-mode@^6.22.0:
602 | version "6.22.0"
603 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c"
604 | dependencies:
605 | babel-runtime "^6.22.0"
606 | babel-types "^6.22.0"
607 |
608 | babel-preset-env@^1.1.8:
609 | version "1.1.8"
610 | resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.1.8.tgz#c46734c6233c3f87d177513773db3cf3c1758aaa"
611 | dependencies:
612 | babel-plugin-check-es2015-constants "^6.3.13"
613 | babel-plugin-syntax-trailing-function-commas "^6.13.0"
614 | babel-plugin-transform-async-to-generator "^6.8.0"
615 | babel-plugin-transform-es2015-arrow-functions "^6.3.13"
616 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13"
617 | babel-plugin-transform-es2015-block-scoping "^6.6.0"
618 | babel-plugin-transform-es2015-classes "^6.6.0"
619 | babel-plugin-transform-es2015-computed-properties "^6.3.13"
620 | babel-plugin-transform-es2015-destructuring "^6.6.0"
621 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0"
622 | babel-plugin-transform-es2015-for-of "^6.6.0"
623 | babel-plugin-transform-es2015-function-name "^6.3.13"
624 | babel-plugin-transform-es2015-literals "^6.3.13"
625 | babel-plugin-transform-es2015-modules-amd "^6.8.0"
626 | babel-plugin-transform-es2015-modules-commonjs "^6.6.0"
627 | babel-plugin-transform-es2015-modules-systemjs "^6.12.0"
628 | babel-plugin-transform-es2015-modules-umd "^6.12.0"
629 | babel-plugin-transform-es2015-object-super "^6.3.13"
630 | babel-plugin-transform-es2015-parameters "^6.6.0"
631 | babel-plugin-transform-es2015-shorthand-properties "^6.3.13"
632 | babel-plugin-transform-es2015-spread "^6.3.13"
633 | babel-plugin-transform-es2015-sticky-regex "^6.3.13"
634 | babel-plugin-transform-es2015-template-literals "^6.6.0"
635 | babel-plugin-transform-es2015-typeof-symbol "^6.6.0"
636 | babel-plugin-transform-es2015-unicode-regex "^6.3.13"
637 | babel-plugin-transform-exponentiation-operator "^6.8.0"
638 | babel-plugin-transform-regenerator "^6.6.0"
639 | browserslist "^1.4.0"
640 |
641 | babel-preset-react@^6.22.0:
642 | version "6.22.0"
643 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.22.0.tgz#7bc97e2d73eec4b980fb6b4e4e0884e81ccdc165"
644 | dependencies:
645 | babel-plugin-syntax-flow "^6.3.13"
646 | babel-plugin-syntax-jsx "^6.3.13"
647 | babel-plugin-transform-flow-strip-types "^6.22.0"
648 | babel-plugin-transform-react-display-name "^6.22.0"
649 | babel-plugin-transform-react-jsx "^6.22.0"
650 | babel-plugin-transform-react-jsx-self "^6.22.0"
651 | babel-plugin-transform-react-jsx-source "^6.22.0"
652 |
653 | babel-register@^6.22.0:
654 | version "6.22.0"
655 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.22.0.tgz#a61dd83975f9ca4a9e7d6eff3059494cd5ea4c63"
656 | dependencies:
657 | babel-core "^6.22.0"
658 | babel-runtime "^6.22.0"
659 | core-js "^2.4.0"
660 | home-or-tmp "^2.0.0"
661 | lodash "^4.2.0"
662 | mkdirp "^0.5.1"
663 | source-map-support "^0.4.2"
664 |
665 | babel-runtime@^6.18.0, babel-runtime@^6.22.0:
666 | version "6.22.0"
667 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.22.0.tgz#1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611"
668 | dependencies:
669 | core-js "^2.4.0"
670 | regenerator-runtime "^0.10.0"
671 |
672 | babel-template@^6.22.0:
673 | version "6.22.0"
674 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.22.0.tgz#403d110905a4626b317a2a1fcb8f3b73204b2edb"
675 | dependencies:
676 | babel-runtime "^6.22.0"
677 | babel-traverse "^6.22.0"
678 | babel-types "^6.22.0"
679 | babylon "^6.11.0"
680 | lodash "^4.2.0"
681 |
682 | babel-traverse@^6.22.0, babel-traverse@^6.22.1:
683 | version "6.22.1"
684 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.22.1.tgz#3b95cd6b7427d6f1f757704908f2fc9748a5f59f"
685 | dependencies:
686 | babel-code-frame "^6.22.0"
687 | babel-messages "^6.22.0"
688 | babel-runtime "^6.22.0"
689 | babel-types "^6.22.0"
690 | babylon "^6.15.0"
691 | debug "^2.2.0"
692 | globals "^9.0.0"
693 | invariant "^2.2.0"
694 | lodash "^4.2.0"
695 |
696 | babel-types@^6.19.0, babel-types@^6.22.0:
697 | version "6.22.0"
698 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.22.0.tgz#2a447e8d0ea25d2512409e4175479fd78cc8b1db"
699 | dependencies:
700 | babel-runtime "^6.22.0"
701 | esutils "^2.0.2"
702 | lodash "^4.2.0"
703 | to-fast-properties "^1.0.1"
704 |
705 | babylon@^6.11.0, babylon@^6.15.0:
706 | version "6.15.0"
707 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.15.0.tgz#ba65cfa1a80e1759b0e89fb562e27dccae70348e"
708 |
709 | balanced-match@^0.4.1:
710 | version "0.4.2"
711 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
712 |
713 | base64-js@^1.0.2:
714 | version "1.2.0"
715 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1"
716 |
717 | base64-url@1.3.3:
718 | version "1.3.3"
719 | resolved "https://registry.yarnpkg.com/base64-url/-/base64-url-1.3.3.tgz#f8b6c537f09a4fc58c99cb86e0b0e9c61461a20f"
720 |
721 | bcrypt-nodejs@0.0.3:
722 | version "0.0.3"
723 | resolved "https://registry.yarnpkg.com/bcrypt-nodejs/-/bcrypt-nodejs-0.0.3.tgz#c60917f26dc235661566c681061c303c2b28842b"
724 |
725 | bcrypt-pbkdf@^1.0.0:
726 | version "1.0.0"
727 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz#3ca76b85241c7170bf7d9703e7b9aa74630040d4"
728 | dependencies:
729 | tweetnacl "^0.14.3"
730 |
731 | big.js@^3.1.3:
732 | version "3.1.3"
733 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978"
734 |
735 | binary-extensions@^1.0.0:
736 | version "1.8.0"
737 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
738 |
739 | block-stream@*:
740 | version "0.0.9"
741 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
742 | dependencies:
743 | inherits "~2.0.0"
744 |
745 | bluebird@2.10.2:
746 | version "2.10.2"
747 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.10.2.tgz#024a5517295308857f14f91f1106fc3b555f446b"
748 |
749 | bluebird@^3.0, bluebird@^3.4.7:
750 | version "3.4.7"
751 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.4.7.tgz#f72d760be09b7f76d08ed8fae98b289a8d05fab3"
752 |
753 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
754 | version "4.11.6"
755 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
756 |
757 | body-parser@^1.16.0:
758 | version "1.16.0"
759 | resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.16.0.tgz#924a5e472c6229fb9d69b85a20d5f2532dec788b"
760 | dependencies:
761 | bytes "2.4.0"
762 | content-type "~1.0.2"
763 | debug "2.6.0"
764 | depd "~1.1.0"
765 | http-errors "~1.5.1"
766 | iconv-lite "0.4.15"
767 | on-finished "~2.3.0"
768 | qs "6.2.1"
769 | raw-body "~2.2.0"
770 | type-is "~1.6.14"
771 |
772 | boolbase@~1.0.0:
773 | version "1.0.0"
774 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
775 |
776 | boom@2.x.x:
777 | version "2.10.1"
778 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
779 | dependencies:
780 | hoek "2.x.x"
781 |
782 | brace-expansion@^1.0.0:
783 | version "1.1.6"
784 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9"
785 | dependencies:
786 | balanced-match "^0.4.1"
787 | concat-map "0.0.1"
788 |
789 | braces@^1.8.2:
790 | version "1.8.5"
791 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
792 | dependencies:
793 | expand-range "^1.8.1"
794 | preserve "^0.2.0"
795 | repeat-element "^1.1.2"
796 |
797 | brorand@^1.0.1:
798 | version "1.0.6"
799 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.0.6.tgz#4028706b915f91f7b349a2e0bf3c376039d216e5"
800 |
801 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
802 | version "1.0.6"
803 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
804 | dependencies:
805 | buffer-xor "^1.0.2"
806 | cipher-base "^1.0.0"
807 | create-hash "^1.1.0"
808 | evp_bytestokey "^1.0.0"
809 | inherits "^2.0.1"
810 |
811 | browserify-cipher@^1.0.0:
812 | version "1.0.0"
813 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
814 | dependencies:
815 | browserify-aes "^1.0.4"
816 | browserify-des "^1.0.0"
817 | evp_bytestokey "^1.0.0"
818 |
819 | browserify-des@^1.0.0:
820 | version "1.0.0"
821 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
822 | dependencies:
823 | cipher-base "^1.0.1"
824 | des.js "^1.0.0"
825 | inherits "^2.0.1"
826 |
827 | browserify-rsa@^4.0.0:
828 | version "4.0.1"
829 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
830 | dependencies:
831 | bn.js "^4.1.0"
832 | randombytes "^2.0.1"
833 |
834 | browserify-sign@^4.0.0:
835 | version "4.0.0"
836 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f"
837 | dependencies:
838 | bn.js "^4.1.1"
839 | browserify-rsa "^4.0.0"
840 | create-hash "^1.1.0"
841 | create-hmac "^1.1.2"
842 | elliptic "^6.0.0"
843 | inherits "^2.0.1"
844 | parse-asn1 "^5.0.0"
845 |
846 | browserify-zlib@^0.1.4:
847 | version "0.1.4"
848 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
849 | dependencies:
850 | pako "~0.2.0"
851 |
852 | browserslist@^1.4.0:
853 | version "1.6.0"
854 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.6.0.tgz#85fb7c993540d3fda31c282baf7f5aee698ac9ee"
855 | dependencies:
856 | caniuse-db "^1.0.30000613"
857 | electron-to-chromium "^1.2.0"
858 |
859 | bson@~1.0.4:
860 | version "1.0.4"
861 | resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c"
862 |
863 | buffer-shims@^1.0.0:
864 | version "1.0.0"
865 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
866 |
867 | buffer-xor@^1.0.2:
868 | version "1.0.3"
869 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
870 |
871 | buffer@^4.3.0:
872 | version "4.9.1"
873 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
874 | dependencies:
875 | base64-js "^1.0.2"
876 | ieee754 "^1.1.4"
877 | isarray "^1.0.0"
878 |
879 | builtin-modules@^1.0.0:
880 | version "1.1.1"
881 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
882 |
883 | builtin-status-codes@^3.0.0:
884 | version "3.0.0"
885 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
886 |
887 | bytes@2.4.0:
888 | version "2.4.0"
889 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339"
890 |
891 | camel-case@3.0.x:
892 | version "3.0.0"
893 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
894 | dependencies:
895 | no-case "^2.2.0"
896 | upper-case "^1.1.1"
897 |
898 | camelcase@^1.0.2:
899 | version "1.2.1"
900 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
901 |
902 | camelcase@^3.0.0:
903 | version "3.0.0"
904 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
905 |
906 | caniuse-db@^1.0.30000613:
907 | version "1.0.30000615"
908 | resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000615.tgz#605bc071db4c5031acfb5e469c3b50a531dd5d04"
909 |
910 | caseless@~0.11.0:
911 | version "0.11.0"
912 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
913 |
914 | center-align@^0.1.1:
915 | version "0.1.3"
916 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad"
917 | dependencies:
918 | align-text "^0.1.3"
919 | lazy-cache "^1.0.3"
920 |
921 | chalk@^1.1.0, chalk@^1.1.1:
922 | version "1.1.3"
923 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
924 | dependencies:
925 | ansi-styles "^2.2.1"
926 | escape-string-regexp "^1.0.2"
927 | has-ansi "^2.0.0"
928 | strip-ansi "^3.0.0"
929 | supports-color "^2.0.0"
930 |
931 | chokidar@^1.4.3:
932 | version "1.6.1"
933 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
934 | dependencies:
935 | anymatch "^1.3.0"
936 | async-each "^1.0.0"
937 | glob-parent "^2.0.0"
938 | inherits "^2.0.1"
939 | is-binary-path "^1.0.0"
940 | is-glob "^2.0.0"
941 | path-is-absolute "^1.0.0"
942 | readdirp "^2.0.0"
943 | optionalDependencies:
944 | fsevents "^1.0.0"
945 |
946 | cipher-base@^1.0.0, cipher-base@^1.0.1:
947 | version "1.0.3"
948 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07"
949 | dependencies:
950 | inherits "^2.0.1"
951 |
952 | clean-css@4.0.x:
953 | version "4.0.1"
954 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.1.tgz#ef7619086e659338326ef80aa65421f45e9c724e"
955 | dependencies:
956 | source-map "0.5.x"
957 |
958 | cliui@^2.1.0:
959 | version "2.1.0"
960 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
961 | dependencies:
962 | center-align "^0.1.1"
963 | right-align "^0.1.1"
964 | wordwrap "0.0.2"
965 |
966 | cliui@^3.2.0:
967 | version "3.2.0"
968 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
969 | dependencies:
970 | string-width "^1.0.1"
971 | strip-ansi "^3.0.1"
972 | wrap-ansi "^2.0.0"
973 |
974 | co@^4.6.0:
975 | version "4.6.0"
976 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
977 |
978 | code-point-at@^1.0.0:
979 | version "1.1.0"
980 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
981 |
982 | combined-stream@^1.0.5, combined-stream@~1.0.5:
983 | version "1.0.5"
984 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
985 | dependencies:
986 | delayed-stream "~1.0.0"
987 |
988 | commander@2.9.x, commander@^2.9.0:
989 | version "2.9.0"
990 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4"
991 | dependencies:
992 | graceful-readlink ">= 1.0.0"
993 |
994 | commondir@^1.0.1:
995 | version "1.0.1"
996 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
997 |
998 | concat-map@0.0.1:
999 | version "0.0.1"
1000 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1001 |
1002 | connect-mongo@^1.3.2:
1003 | version "1.3.2"
1004 | resolved "https://registry.yarnpkg.com/connect-mongo/-/connect-mongo-1.3.2.tgz#7cbf58dfff26760e5e00e017d0a85b4bc90b9d37"
1005 | dependencies:
1006 | bluebird "^3.0"
1007 | mongodb ">= 1.2.0 <3.0.0"
1008 |
1009 | console-browserify@^1.1.0:
1010 | version "1.1.0"
1011 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
1012 | dependencies:
1013 | date-now "^0.1.4"
1014 |
1015 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1016 | version "1.1.0"
1017 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1018 |
1019 | constants-browserify@^1.0.0:
1020 | version "1.0.0"
1021 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
1022 |
1023 | content-disposition@0.5.1:
1024 | version "0.5.1"
1025 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b"
1026 |
1027 | content-type@^1.0.2, content-type@~1.0.2:
1028 | version "1.0.2"
1029 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed"
1030 |
1031 | convert-source-map@^1.1.0:
1032 | version "1.3.0"
1033 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67"
1034 |
1035 | cookie-signature@1.0.6:
1036 | version "1.0.6"
1037 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
1038 |
1039 | cookie@0.3.1:
1040 | version "0.3.1"
1041 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
1042 |
1043 | core-js@^1.0.0:
1044 | version "1.2.7"
1045 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
1046 |
1047 | core-js@^2.4.0:
1048 | version "2.4.1"
1049 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
1050 |
1051 | core-util-is@~1.0.0:
1052 | version "1.0.2"
1053 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1054 |
1055 | crc@3.4.4:
1056 | version "3.4.4"
1057 | resolved "https://registry.yarnpkg.com/crc/-/crc-3.4.4.tgz#9da1e980e3bd44fc5c93bf5ab3da3378d85e466b"
1058 |
1059 | create-ecdh@^4.0.0:
1060 | version "4.0.0"
1061 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
1062 | dependencies:
1063 | bn.js "^4.1.0"
1064 | elliptic "^6.0.0"
1065 |
1066 | create-hash@^1.1.0, create-hash@^1.1.1:
1067 | version "1.1.2"
1068 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad"
1069 | dependencies:
1070 | cipher-base "^1.0.1"
1071 | inherits "^2.0.1"
1072 | ripemd160 "^1.0.0"
1073 | sha.js "^2.3.6"
1074 |
1075 | create-hmac@^1.1.0, create-hmac@^1.1.2:
1076 | version "1.1.4"
1077 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170"
1078 | dependencies:
1079 | create-hash "^1.1.0"
1080 | inherits "^2.0.1"
1081 |
1082 | cryptiles@2.x.x:
1083 | version "2.0.5"
1084 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
1085 | dependencies:
1086 | boom "2.x.x"
1087 |
1088 | crypto-browserify@^3.11.0:
1089 | version "3.11.0"
1090 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522"
1091 | dependencies:
1092 | browserify-cipher "^1.0.0"
1093 | browserify-sign "^4.0.0"
1094 | create-ecdh "^4.0.0"
1095 | create-hash "^1.1.0"
1096 | create-hmac "^1.1.0"
1097 | diffie-hellman "^5.0.0"
1098 | inherits "^2.0.1"
1099 | pbkdf2 "^3.0.3"
1100 | public-encrypt "^4.0.0"
1101 | randombytes "^2.0.0"
1102 |
1103 | css-select@^1.1.0:
1104 | version "1.2.0"
1105 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
1106 | dependencies:
1107 | boolbase "~1.0.0"
1108 | css-what "2.1"
1109 | domutils "1.5.1"
1110 | nth-check "~1.0.1"
1111 |
1112 | css-what@2.1:
1113 | version "2.1.0"
1114 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd"
1115 |
1116 | dashdash@^1.12.0:
1117 | version "1.14.1"
1118 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
1119 | dependencies:
1120 | assert-plus "^1.0.0"
1121 |
1122 | date-now@^0.1.4:
1123 | version "0.1.4"
1124 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1125 |
1126 | debug@2.2.0, debug@~2.2.0:
1127 | version "2.2.0"
1128 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
1129 | dependencies:
1130 | ms "0.7.1"
1131 |
1132 | debug@2.6.0, debug@^2.1.1, debug@^2.2.0:
1133 | version "2.6.0"
1134 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b"
1135 | dependencies:
1136 | ms "0.7.2"
1137 |
1138 | decamelize@^1.0.0, decamelize@^1.1.1:
1139 | version "1.2.0"
1140 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1141 |
1142 | deep-extend@~0.4.0:
1143 | version "0.4.1"
1144 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253"
1145 |
1146 | delayed-stream@~1.0.0:
1147 | version "1.0.0"
1148 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1149 |
1150 | delegates@^1.0.0:
1151 | version "1.0.0"
1152 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1153 |
1154 | depd@~1.1.0:
1155 | version "1.1.0"
1156 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3"
1157 |
1158 | des.js@^1.0.0:
1159 | version "1.0.0"
1160 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
1161 | dependencies:
1162 | inherits "^2.0.1"
1163 | minimalistic-assert "^1.0.0"
1164 |
1165 | destroy@~1.0.4:
1166 | version "1.0.4"
1167 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
1168 |
1169 | detect-indent@^4.0.0:
1170 | version "4.0.0"
1171 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1172 | dependencies:
1173 | repeating "^2.0.0"
1174 |
1175 | diffie-hellman@^5.0.0:
1176 | version "5.0.2"
1177 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
1178 | dependencies:
1179 | bn.js "^4.1.0"
1180 | miller-rabin "^4.0.0"
1181 | randombytes "^2.0.0"
1182 |
1183 | dom-converter@~0.1:
1184 | version "0.1.4"
1185 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b"
1186 | dependencies:
1187 | utila "~0.3"
1188 |
1189 | dom-serializer@0:
1190 | version "0.1.0"
1191 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82"
1192 | dependencies:
1193 | domelementtype "~1.1.1"
1194 | entities "~1.1.1"
1195 |
1196 | domain-browser@^1.1.1:
1197 | version "1.1.7"
1198 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc"
1199 |
1200 | domelementtype@1:
1201 | version "1.3.0"
1202 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2"
1203 |
1204 | domelementtype@~1.1.1:
1205 | version "1.1.3"
1206 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b"
1207 |
1208 | domhandler@2.1:
1209 | version "2.1.0"
1210 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594"
1211 | dependencies:
1212 | domelementtype "1"
1213 |
1214 | domutils@1.1:
1215 | version "1.1.6"
1216 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485"
1217 | dependencies:
1218 | domelementtype "1"
1219 |
1220 | domutils@1.5.1:
1221 | version "1.5.1"
1222 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
1223 | dependencies:
1224 | dom-serializer "0"
1225 | domelementtype "1"
1226 |
1227 | ecc-jsbn@~0.1.1:
1228 | version "0.1.1"
1229 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
1230 | dependencies:
1231 | jsbn "~0.1.0"
1232 |
1233 | ee-first@1.1.1:
1234 | version "1.1.1"
1235 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
1236 |
1237 | electron-to-chromium@^1.2.0:
1238 | version "1.2.1"
1239 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.1.tgz#63ac7579a1c5bedb296c8607621f2efc9a54b968"
1240 |
1241 | elliptic@^6.0.0:
1242 | version "6.3.2"
1243 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.3.2.tgz#e4c81e0829cf0a65ab70e998b8232723b5c1bc48"
1244 | dependencies:
1245 | bn.js "^4.4.0"
1246 | brorand "^1.0.1"
1247 | hash.js "^1.0.0"
1248 | inherits "^2.0.1"
1249 |
1250 | emojis-list@^2.0.0:
1251 | version "2.1.0"
1252 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1253 |
1254 | encodeurl@~1.0.1:
1255 | version "1.0.1"
1256 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20"
1257 |
1258 | encoding@^0.1.11:
1259 | version "0.1.12"
1260 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1261 | dependencies:
1262 | iconv-lite "~0.4.13"
1263 |
1264 | enhanced-resolve@^3.0.0:
1265 | version "3.0.3"
1266 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.0.3.tgz#df14c06b5fc5eecade1094c9c5a12b4b3edc0b62"
1267 | dependencies:
1268 | graceful-fs "^4.1.2"
1269 | memory-fs "^0.4.0"
1270 | object-assign "^4.0.1"
1271 | tapable "^0.2.5"
1272 |
1273 | entities@~1.1.1:
1274 | version "1.1.1"
1275 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
1276 |
1277 | errno@^0.1.3:
1278 | version "0.1.4"
1279 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
1280 | dependencies:
1281 | prr "~0.0.0"
1282 |
1283 | error-ex@^1.2.0:
1284 | version "1.3.0"
1285 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
1286 | dependencies:
1287 | is-arrayish "^0.2.1"
1288 |
1289 | es6-promise@3.2.1:
1290 | version "3.2.1"
1291 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.2.1.tgz#ec56233868032909207170c39448e24449dd1fc4"
1292 |
1293 | escape-html@~1.0.3:
1294 | version "1.0.3"
1295 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
1296 |
1297 | escape-string-regexp@^1.0.2:
1298 | version "1.0.5"
1299 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1300 |
1301 | esutils@^2.0.0, esutils@^2.0.2:
1302 | version "2.0.2"
1303 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1304 |
1305 | etag@~1.7.0:
1306 | version "1.7.0"
1307 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8"
1308 |
1309 | events@^1.0.0:
1310 | version "1.1.1"
1311 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1312 |
1313 | evp_bytestokey@^1.0.0:
1314 | version "1.0.0"
1315 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
1316 | dependencies:
1317 | create-hash "^1.1.1"
1318 |
1319 | expand-brackets@^0.1.4:
1320 | version "0.1.5"
1321 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1322 | dependencies:
1323 | is-posix-bracket "^0.1.0"
1324 |
1325 | expand-range@^1.8.1:
1326 | version "1.8.2"
1327 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1328 | dependencies:
1329 | fill-range "^2.1.0"
1330 |
1331 | express-graphql@^0.6.1:
1332 | version "0.6.2"
1333 | resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.6.2.tgz#a4102d8055052b7f9bca29ace14d3f69c1e24a9c"
1334 | dependencies:
1335 | accepts "^1.3.0"
1336 | content-type "^1.0.2"
1337 | http-errors "^1.3.0"
1338 | raw-body "^2.1.0"
1339 |
1340 | express-session@^1.15.0:
1341 | version "1.15.0"
1342 | resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.15.0.tgz#67131dd5b78a42bc57b50af0a14880265c03f919"
1343 | dependencies:
1344 | cookie "0.3.1"
1345 | cookie-signature "1.0.6"
1346 | crc "3.4.4"
1347 | debug "2.6.0"
1348 | depd "~1.1.0"
1349 | on-headers "~1.0.1"
1350 | parseurl "~1.3.1"
1351 | uid-safe "~2.1.3"
1352 | utils-merge "1.0.0"
1353 |
1354 | express@^4.14.0:
1355 | version "4.14.0"
1356 | resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66"
1357 | dependencies:
1358 | accepts "~1.3.3"
1359 | array-flatten "1.1.1"
1360 | content-disposition "0.5.1"
1361 | content-type "~1.0.2"
1362 | cookie "0.3.1"
1363 | cookie-signature "1.0.6"
1364 | debug "~2.2.0"
1365 | depd "~1.1.0"
1366 | encodeurl "~1.0.1"
1367 | escape-html "~1.0.3"
1368 | etag "~1.7.0"
1369 | finalhandler "0.5.0"
1370 | fresh "0.3.0"
1371 | merge-descriptors "1.0.1"
1372 | methods "~1.1.2"
1373 | on-finished "~2.3.0"
1374 | parseurl "~1.3.1"
1375 | path-to-regexp "0.1.7"
1376 | proxy-addr "~1.1.2"
1377 | qs "6.2.0"
1378 | range-parser "~1.2.0"
1379 | send "0.14.1"
1380 | serve-static "~1.11.1"
1381 | type-is "~1.6.13"
1382 | utils-merge "1.0.0"
1383 | vary "~1.1.0"
1384 |
1385 | extend@~3.0.0:
1386 | version "3.0.0"
1387 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4"
1388 |
1389 | extglob@^0.3.1:
1390 | version "0.3.2"
1391 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1392 | dependencies:
1393 | is-extglob "^1.0.0"
1394 |
1395 | extsprintf@1.0.2:
1396 | version "1.0.2"
1397 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550"
1398 |
1399 | fbjs@^0.8.1, fbjs@^0.8.4:
1400 | version "0.8.8"
1401 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.8.tgz#02f1b6e0ea0d46c24e0b51a2d24df069563a5ad6"
1402 | dependencies:
1403 | core-js "^1.0.0"
1404 | isomorphic-fetch "^2.1.1"
1405 | loose-envify "^1.0.0"
1406 | object-assign "^4.1.0"
1407 | promise "^7.1.1"
1408 | setimmediate "^1.0.5"
1409 | ua-parser-js "^0.7.9"
1410 |
1411 | filename-regex@^2.0.0:
1412 | version "2.0.0"
1413 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
1414 |
1415 | fill-range@^2.1.0:
1416 | version "2.2.3"
1417 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
1418 | dependencies:
1419 | is-number "^2.1.0"
1420 | isobject "^2.0.0"
1421 | randomatic "^1.1.3"
1422 | repeat-element "^1.1.2"
1423 | repeat-string "^1.5.2"
1424 |
1425 | finalhandler@0.5.0:
1426 | version "0.5.0"
1427 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7"
1428 | dependencies:
1429 | debug "~2.2.0"
1430 | escape-html "~1.0.3"
1431 | on-finished "~2.3.0"
1432 | statuses "~1.3.0"
1433 | unpipe "~1.0.0"
1434 |
1435 | find-cache-dir@^0.1.1:
1436 | version "0.1.1"
1437 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1438 | dependencies:
1439 | commondir "^1.0.1"
1440 | mkdirp "^0.5.1"
1441 | pkg-dir "^1.0.0"
1442 |
1443 | find-up@^1.0.0:
1444 | version "1.1.2"
1445 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1446 | dependencies:
1447 | path-exists "^2.0.0"
1448 | pinkie-promise "^2.0.0"
1449 |
1450 | follow-redirects@1.0.0:
1451 | version "1.0.0"
1452 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37"
1453 | dependencies:
1454 | debug "^2.2.0"
1455 |
1456 | for-in@^0.1.5:
1457 | version "0.1.6"
1458 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.6.tgz#c9f96e89bfad18a545af5ec3ed352a1d9e5b4dc8"
1459 |
1460 | for-own@^0.1.4:
1461 | version "0.1.4"
1462 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.4.tgz#0149b41a39088c7515f51ebe1c1386d45f935072"
1463 | dependencies:
1464 | for-in "^0.1.5"
1465 |
1466 | forever-agent@~0.6.1:
1467 | version "0.6.1"
1468 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
1469 |
1470 | form-data@~2.1.1:
1471 | version "2.1.2"
1472 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4"
1473 | dependencies:
1474 | asynckit "^0.4.0"
1475 | combined-stream "^1.0.5"
1476 | mime-types "^2.1.12"
1477 |
1478 | forwarded@~0.1.0:
1479 | version "0.1.0"
1480 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363"
1481 |
1482 | fresh@0.3.0:
1483 | version "0.3.0"
1484 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f"
1485 |
1486 | fs.realpath@^1.0.0:
1487 | version "1.0.0"
1488 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1489 |
1490 | fsevents@^1.0.0:
1491 | version "1.0.17"
1492 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.0.17.tgz#8537f3f12272678765b4fd6528c0f1f66f8f4558"
1493 | dependencies:
1494 | nan "^2.3.0"
1495 | node-pre-gyp "^0.6.29"
1496 |
1497 | fstream-ignore@~1.0.5:
1498 | version "1.0.5"
1499 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
1500 | dependencies:
1501 | fstream "^1.0.0"
1502 | inherits "2"
1503 | minimatch "^3.0.0"
1504 |
1505 | fstream@^1.0.0, fstream@^1.0.2, fstream@~1.0.10:
1506 | version "1.0.10"
1507 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.10.tgz#604e8a92fe26ffd9f6fae30399d4984e1ab22822"
1508 | dependencies:
1509 | graceful-fs "^4.1.2"
1510 | inherits "~2.0.0"
1511 | mkdirp ">=0.5 0"
1512 | rimraf "2"
1513 |
1514 | gauge@~2.7.1:
1515 | version "2.7.2"
1516 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.2.tgz#15cecc31b02d05345a5d6b0e171cdb3ad2307774"
1517 | dependencies:
1518 | aproba "^1.0.3"
1519 | console-control-strings "^1.0.0"
1520 | has-unicode "^2.0.0"
1521 | object-assign "^4.1.0"
1522 | signal-exit "^3.0.0"
1523 | string-width "^1.0.1"
1524 | strip-ansi "^3.0.1"
1525 | supports-color "^0.2.0"
1526 | wide-align "^1.1.0"
1527 |
1528 | generate-function@^2.0.0:
1529 | version "2.0.0"
1530 | resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
1531 |
1532 | generate-object-property@^1.1.0:
1533 | version "1.2.0"
1534 | resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0"
1535 | dependencies:
1536 | is-property "^1.0.0"
1537 |
1538 | get-caller-file@^1.0.1:
1539 | version "1.0.2"
1540 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
1541 |
1542 | getpass@^0.1.1:
1543 | version "0.1.6"
1544 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
1545 | dependencies:
1546 | assert-plus "^1.0.0"
1547 |
1548 | glob-base@^0.3.0:
1549 | version "0.3.0"
1550 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1551 | dependencies:
1552 | glob-parent "^2.0.0"
1553 | is-glob "^2.0.0"
1554 |
1555 | glob-parent@^2.0.0:
1556 | version "2.0.0"
1557 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1558 | dependencies:
1559 | is-glob "^2.0.0"
1560 |
1561 | glob@^7.0.5:
1562 | version "7.1.1"
1563 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
1564 | dependencies:
1565 | fs.realpath "^1.0.0"
1566 | inflight "^1.0.4"
1567 | inherits "2"
1568 | minimatch "^3.0.2"
1569 | once "^1.3.0"
1570 | path-is-absolute "^1.0.0"
1571 |
1572 | globals@^9.0.0:
1573 | version "9.14.0"
1574 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.14.0.tgz#8859936af0038741263053b39d0e76ca241e4034"
1575 |
1576 | graceful-fs@^4.1.2:
1577 | version "4.1.11"
1578 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1579 |
1580 | "graceful-readlink@>= 1.0.0":
1581 | version "1.0.1"
1582 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725"
1583 |
1584 | graphql-anywhere@^2.0.0, graphql-anywhere@^2.1.0:
1585 | version "2.1.0"
1586 | resolved "https://registry.yarnpkg.com/graphql-anywhere/-/graphql-anywhere-2.1.0.tgz#888c0a1718db3ff866b313070747777380560f69"
1587 |
1588 | graphql-tag@^1.1.1, graphql-tag@^1.2.4:
1589 | version "1.2.4"
1590 | resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-1.2.4.tgz#90c59bea41378513fd7213dc92537fcd20e4570f"
1591 |
1592 | graphql@^0.8.2:
1593 | version "0.8.2"
1594 | resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.8.2.tgz#eb1bb524b38104bbf2c9157f9abc67db2feba7d2"
1595 | dependencies:
1596 | iterall "1.0.2"
1597 |
1598 | har-validator@~2.0.6:
1599 | version "2.0.6"
1600 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"
1601 | dependencies:
1602 | chalk "^1.1.1"
1603 | commander "^2.9.0"
1604 | is-my-json-valid "^2.12.4"
1605 | pinkie-promise "^2.0.0"
1606 |
1607 | has-ansi@^2.0.0:
1608 | version "2.0.0"
1609 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1610 | dependencies:
1611 | ansi-regex "^2.0.0"
1612 |
1613 | has-flag@^1.0.0:
1614 | version "1.0.0"
1615 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1616 |
1617 | has-unicode@^2.0.0:
1618 | version "2.0.1"
1619 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1620 |
1621 | hash.js@^1.0.0:
1622 | version "1.0.3"
1623 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573"
1624 | dependencies:
1625 | inherits "^2.0.1"
1626 |
1627 | hawk@~3.1.3:
1628 | version "3.1.3"
1629 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
1630 | dependencies:
1631 | boom "2.x.x"
1632 | cryptiles "2.x.x"
1633 | hoek "2.x.x"
1634 | sntp "1.x.x"
1635 |
1636 | he@1.1.x:
1637 | version "1.1.1"
1638 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd"
1639 |
1640 | hoek@2.x.x:
1641 | version "2.16.3"
1642 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
1643 |
1644 | hoist-non-react-statics@^1.2.0:
1645 | version "1.2.0"
1646 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb"
1647 |
1648 | home-or-tmp@^2.0.0:
1649 | version "2.0.0"
1650 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1651 | dependencies:
1652 | os-homedir "^1.0.0"
1653 | os-tmpdir "^1.0.1"
1654 |
1655 | hooks-fixed@1.2.0:
1656 | version "1.2.0"
1657 | resolved "https://registry.yarnpkg.com/hooks-fixed/-/hooks-fixed-1.2.0.tgz#0d2772d4d7d685ff9244724a9f0b5b2559aac96b"
1658 |
1659 | hosted-git-info@^2.1.4:
1660 | version "2.1.5"
1661 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b"
1662 |
1663 | html-minifier@^3.2.3:
1664 | version "3.3.0"
1665 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.3.0.tgz#a9b5b8eda501362d4c5699db02a8dc72013d1fab"
1666 | dependencies:
1667 | camel-case "3.0.x"
1668 | clean-css "4.0.x"
1669 | commander "2.9.x"
1670 | he "1.1.x"
1671 | ncname "1.0.x"
1672 | param-case "2.1.x"
1673 | relateurl "0.2.x"
1674 | uglify-js "2.7.x"
1675 |
1676 | html-webpack-plugin@^2.26.0:
1677 | version "2.26.0"
1678 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.26.0.tgz#ba97c8a66f912b85df80d2aeea65966c8bd9249e"
1679 | dependencies:
1680 | bluebird "^3.4.7"
1681 | html-minifier "^3.2.3"
1682 | loader-utils "^0.2.16"
1683 | lodash "^4.17.3"
1684 | pretty-error "^2.0.2"
1685 | toposort "^1.0.0"
1686 |
1687 | htmlparser2@~3.3.0:
1688 | version "3.3.0"
1689 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe"
1690 | dependencies:
1691 | domelementtype "1"
1692 | domhandler "2.1"
1693 | domutils "1.1"
1694 | readable-stream "1.0"
1695 |
1696 | http-errors@^1.3.0, http-errors@~1.5.0, http-errors@~1.5.1:
1697 | version "1.5.1"
1698 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750"
1699 | dependencies:
1700 | inherits "2.0.3"
1701 | setprototypeof "1.0.2"
1702 | statuses ">= 1.3.1 < 2"
1703 |
1704 | http-signature@~1.1.0:
1705 | version "1.1.1"
1706 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf"
1707 | dependencies:
1708 | assert-plus "^0.2.0"
1709 | jsprim "^1.2.2"
1710 | sshpk "^1.7.0"
1711 |
1712 | https-browserify@0.0.1:
1713 | version "0.0.1"
1714 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"
1715 |
1716 | iconv-lite@0.4.15, iconv-lite@~0.4.13:
1717 | version "0.4.15"
1718 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.15.tgz#fe265a218ac6a57cfe854927e9d04c19825eddeb"
1719 |
1720 | ieee754@^1.1.4:
1721 | version "1.1.8"
1722 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
1723 |
1724 | indexof@0.0.1:
1725 | version "0.0.1"
1726 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1727 |
1728 | inflight@^1.0.4:
1729 | version "1.0.6"
1730 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1731 | dependencies:
1732 | once "^1.3.0"
1733 | wrappy "1"
1734 |
1735 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1:
1736 | version "2.0.3"
1737 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1738 |
1739 | inherits@2.0.1:
1740 | version "2.0.1"
1741 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1742 |
1743 | ini@~1.3.0:
1744 | version "1.3.4"
1745 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
1746 |
1747 | interpret@^1.0.0:
1748 | version "1.0.1"
1749 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
1750 |
1751 | invariant@^2.2.0, invariant@^2.2.1:
1752 | version "2.2.2"
1753 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
1754 | dependencies:
1755 | loose-envify "^1.0.0"
1756 |
1757 | invert-kv@^1.0.0:
1758 | version "1.0.0"
1759 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
1760 |
1761 | ipaddr.js@1.2.0:
1762 | version "1.2.0"
1763 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4"
1764 |
1765 | is-arrayish@^0.2.1:
1766 | version "0.2.1"
1767 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1768 |
1769 | is-binary-path@^1.0.0:
1770 | version "1.0.1"
1771 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1772 | dependencies:
1773 | binary-extensions "^1.0.0"
1774 |
1775 | is-buffer@^1.0.2:
1776 | version "1.1.4"
1777 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
1778 |
1779 | is-builtin-module@^1.0.0:
1780 | version "1.0.0"
1781 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
1782 | dependencies:
1783 | builtin-modules "^1.0.0"
1784 |
1785 | is-dotfile@^1.0.0:
1786 | version "1.0.2"
1787 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d"
1788 |
1789 | is-equal-shallow@^0.1.3:
1790 | version "0.1.3"
1791 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1792 | dependencies:
1793 | is-primitive "^2.0.0"
1794 |
1795 | is-extendable@^0.1.1:
1796 | version "0.1.1"
1797 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1798 |
1799 | is-extglob@^1.0.0:
1800 | version "1.0.0"
1801 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1802 |
1803 | is-finite@^1.0.0:
1804 | version "1.0.2"
1805 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1806 | dependencies:
1807 | number-is-nan "^1.0.0"
1808 |
1809 | is-fullwidth-code-point@^1.0.0:
1810 | version "1.0.0"
1811 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1812 | dependencies:
1813 | number-is-nan "^1.0.0"
1814 |
1815 | is-glob@^2.0.0, is-glob@^2.0.1:
1816 | version "2.0.1"
1817 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1818 | dependencies:
1819 | is-extglob "^1.0.0"
1820 |
1821 | is-my-json-valid@^2.12.4:
1822 | version "2.15.0"
1823 | resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b"
1824 | dependencies:
1825 | generate-function "^2.0.0"
1826 | generate-object-property "^1.1.0"
1827 | jsonpointer "^4.0.0"
1828 | xtend "^4.0.0"
1829 |
1830 | is-number@^2.0.2, is-number@^2.1.0:
1831 | version "2.1.0"
1832 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1833 | dependencies:
1834 | kind-of "^3.0.2"
1835 |
1836 | is-posix-bracket@^0.1.0:
1837 | version "0.1.1"
1838 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1839 |
1840 | is-primitive@^2.0.0:
1841 | version "2.0.0"
1842 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1843 |
1844 | is-property@^1.0.0:
1845 | version "1.0.2"
1846 | resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
1847 |
1848 | is-stream@^1.0.1:
1849 | version "1.1.0"
1850 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1851 |
1852 | is-typedarray@~1.0.0:
1853 | version "1.0.0"
1854 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
1855 |
1856 | is-utf8@^0.2.0:
1857 | version "0.2.1"
1858 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
1859 |
1860 | isarray@0.0.1:
1861 | version "0.0.1"
1862 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1863 |
1864 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1865 | version "1.0.0"
1866 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1867 |
1868 | isobject@^2.0.0:
1869 | version "2.1.0"
1870 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1871 | dependencies:
1872 | isarray "1.0.0"
1873 |
1874 | isomorphic-fetch@^2.1.1:
1875 | version "2.2.1"
1876 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
1877 | dependencies:
1878 | node-fetch "^1.0.1"
1879 | whatwg-fetch ">=0.10.0"
1880 |
1881 | isstream@~0.1.2:
1882 | version "0.1.2"
1883 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
1884 |
1885 | iterall@1.0.2:
1886 | version "1.0.2"
1887 | resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.0.2.tgz#41a2e96ce9eda5e61c767ee5dc312373bb046e91"
1888 |
1889 | jodid25519@^1.0.0:
1890 | version "1.0.2"
1891 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967"
1892 | dependencies:
1893 | jsbn "~0.1.0"
1894 |
1895 | js-tokens@^3.0.0:
1896 | version "3.0.0"
1897 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.0.tgz#a2f2a969caae142fb3cd56228358c89366957bd1"
1898 |
1899 | jsbn@~0.1.0:
1900 | version "0.1.0"
1901 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
1902 |
1903 | jsesc@^1.3.0:
1904 | version "1.3.0"
1905 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1906 |
1907 | jsesc@~0.5.0:
1908 | version "0.5.0"
1909 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1910 |
1911 | json-loader@^0.5.4:
1912 | version "0.5.4"
1913 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de"
1914 |
1915 | json-schema@0.2.3:
1916 | version "0.2.3"
1917 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
1918 |
1919 | json-stable-stringify@^1.0.1:
1920 | version "1.0.1"
1921 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
1922 | dependencies:
1923 | jsonify "~0.0.0"
1924 |
1925 | json-stringify-safe@~5.0.1:
1926 | version "5.0.1"
1927 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
1928 |
1929 | json5@^0.5.0:
1930 | version "0.5.1"
1931 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1932 |
1933 | jsonify@~0.0.0:
1934 | version "0.0.0"
1935 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
1936 |
1937 | jsonpointer@^4.0.0:
1938 | version "4.0.1"
1939 | resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
1940 |
1941 | jsprim@^1.2.2:
1942 | version "1.3.1"
1943 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.3.1.tgz#2a7256f70412a29ee3670aaca625994c4dcff252"
1944 | dependencies:
1945 | extsprintf "1.0.2"
1946 | json-schema "0.2.3"
1947 | verror "1.3.6"
1948 |
1949 | kareem@1.2.0:
1950 | version "1.2.0"
1951 | resolved "https://registry.yarnpkg.com/kareem/-/kareem-1.2.0.tgz#59851e833feb1ce6cf60000e0c23acf75c8a3547"
1952 |
1953 | kind-of@^3.0.2:
1954 | version "3.1.0"
1955 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47"
1956 | dependencies:
1957 | is-buffer "^1.0.2"
1958 |
1959 | lazy-cache@^1.0.3:
1960 | version "1.0.4"
1961 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
1962 |
1963 | lcid@^1.0.0:
1964 | version "1.0.0"
1965 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
1966 | dependencies:
1967 | invert-kv "^1.0.0"
1968 |
1969 | load-json-file@^1.0.0:
1970 | version "1.1.0"
1971 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
1972 | dependencies:
1973 | graceful-fs "^4.1.2"
1974 | parse-json "^2.2.0"
1975 | pify "^2.0.0"
1976 | pinkie-promise "^2.0.0"
1977 | strip-bom "^2.0.0"
1978 |
1979 | loader-runner@^2.2.0:
1980 | version "2.2.0"
1981 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.2.0.tgz#824c1b699c4e7a2b6501b85902d5b862bf45b3fa"
1982 |
1983 | loader-utils@^0.2.11, loader-utils@^0.2.16:
1984 | version "0.2.16"
1985 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.16.tgz#f08632066ed8282835dff88dfb52704765adee6d"
1986 | dependencies:
1987 | big.js "^3.1.3"
1988 | emojis-list "^2.0.0"
1989 | json5 "^0.5.0"
1990 | object-assign "^4.0.1"
1991 |
1992 | lodash-es@^4.2.1:
1993 | version "4.17.4"
1994 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7"
1995 |
1996 | lodash.flatten@^4.2.0:
1997 | version "4.4.0"
1998 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
1999 |
2000 | lodash.isequal@^4.1.1:
2001 | version "4.5.0"
2002 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
2003 |
2004 | lodash.isobject@^3.0.2:
2005 | version "3.0.2"
2006 | resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d"
2007 |
2008 | lodash.pick@^4.4.0:
2009 | version "4.4.0"
2010 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
2011 |
2012 | lodash@^4.14.0, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.2.1:
2013 | version "4.17.4"
2014 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
2015 |
2016 | longest@^1.0.1:
2017 | version "1.0.1"
2018 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
2019 |
2020 | loose-envify@^1.0.0, loose-envify@^1.1.0:
2021 | version "1.3.1"
2022 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
2023 | dependencies:
2024 | js-tokens "^3.0.0"
2025 |
2026 | lower-case@^1.1.1:
2027 | version "1.1.3"
2028 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.3.tgz#c92393d976793eee5ba4edb583cf8eae35bd9bfb"
2029 |
2030 | media-typer@0.3.0:
2031 | version "0.3.0"
2032 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
2033 |
2034 | memory-fs@^0.4.0, memory-fs@~0.4.1:
2035 | version "0.4.1"
2036 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
2037 | dependencies:
2038 | errno "^0.1.3"
2039 | readable-stream "^2.0.1"
2040 |
2041 | merge-descriptors@1.0.1:
2042 | version "1.0.1"
2043 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
2044 |
2045 | methods@~1.1.2:
2046 | version "1.1.2"
2047 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
2048 |
2049 | micromatch@^2.1.5:
2050 | version "2.3.11"
2051 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2052 | dependencies:
2053 | arr-diff "^2.0.0"
2054 | array-unique "^0.2.1"
2055 | braces "^1.8.2"
2056 | expand-brackets "^0.1.4"
2057 | extglob "^0.3.1"
2058 | filename-regex "^2.0.0"
2059 | is-extglob "^1.0.0"
2060 | is-glob "^2.0.1"
2061 | kind-of "^3.0.2"
2062 | normalize-path "^2.0.1"
2063 | object.omit "^2.0.0"
2064 | parse-glob "^3.0.4"
2065 | regex-cache "^0.4.2"
2066 |
2067 | miller-rabin@^4.0.0:
2068 | version "4.0.0"
2069 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
2070 | dependencies:
2071 | bn.js "^4.0.0"
2072 | brorand "^1.0.1"
2073 |
2074 | mime-db@~1.26.0:
2075 | version "1.26.0"
2076 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff"
2077 |
2078 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7:
2079 | version "2.1.14"
2080 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee"
2081 | dependencies:
2082 | mime-db "~1.26.0"
2083 |
2084 | mime@1.3.4, mime@^1.3.4:
2085 | version "1.3.4"
2086 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53"
2087 |
2088 | minimalistic-assert@^1.0.0:
2089 | version "1.0.0"
2090 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
2091 |
2092 | minimatch@^3.0.0, minimatch@^3.0.2:
2093 | version "3.0.3"
2094 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
2095 | dependencies:
2096 | brace-expansion "^1.0.0"
2097 |
2098 | minimist@0.0.8:
2099 | version "0.0.8"
2100 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2101 |
2102 | minimist@^1.2.0:
2103 | version "1.2.0"
2104 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2105 |
2106 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
2107 | version "0.5.1"
2108 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2109 | dependencies:
2110 | minimist "0.0.8"
2111 |
2112 | mongodb-core@2.1.6:
2113 | version "2.1.6"
2114 | resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.6.tgz#9d179e7487767c58993bb7c8d6685d035c346a42"
2115 | dependencies:
2116 | bson "~1.0.4"
2117 | require_optional "~1.0.0"
2118 |
2119 | mongodb@2.2.21, "mongodb@>= 1.2.0 <3.0.0":
2120 | version "2.2.21"
2121 | resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.21.tgz#f7ee56489600e0ac8024c062c0857ac04ddb5f48"
2122 | dependencies:
2123 | es6-promise "3.2.1"
2124 | mongodb-core "2.1.6"
2125 | readable-stream "2.1.5"
2126 |
2127 | mongoose@^4.7.8:
2128 | version "4.7.8"
2129 | resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-4.7.8.tgz#9e92de54fcb2e62cc41a543f5f810b0dd7c5ff3d"
2130 | dependencies:
2131 | async "2.1.4"
2132 | bson "~1.0.4"
2133 | hooks-fixed "1.2.0"
2134 | kareem "1.2.0"
2135 | mongodb "2.2.21"
2136 | mpath "0.2.1"
2137 | mpromise "0.5.5"
2138 | mquery "2.0.0"
2139 | ms "0.7.2"
2140 | muri "1.2.0"
2141 | regexp-clone "0.0.1"
2142 | sliced "1.0.1"
2143 |
2144 | mpath@0.2.1:
2145 | version "0.2.1"
2146 | resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.2.1.tgz#3a4e829359801de96309c27a6b2e102e89f9e96e"
2147 |
2148 | mpromise@0.5.5:
2149 | version "0.5.5"
2150 | resolved "https://registry.yarnpkg.com/mpromise/-/mpromise-0.5.5.tgz#f5b24259d763acc2257b0a0c8c6d866fd51732e6"
2151 |
2152 | mquery@2.0.0:
2153 | version "2.0.0"
2154 | resolved "https://registry.yarnpkg.com/mquery/-/mquery-2.0.0.tgz#b5abc850b90dffc3e10ae49b4b6e7a479752df22"
2155 | dependencies:
2156 | bluebird "2.10.2"
2157 | debug "2.2.0"
2158 | regexp-clone "0.0.1"
2159 | sliced "0.0.5"
2160 |
2161 | ms@0.7.1:
2162 | version "0.7.1"
2163 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2164 |
2165 | ms@0.7.2:
2166 | version "0.7.2"
2167 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2168 |
2169 | muri@1.2.0:
2170 | version "1.2.0"
2171 | resolved "https://registry.yarnpkg.com/muri/-/muri-1.2.0.tgz#b86383c902920b09ebe62af0e75c94de5f33cd3d"
2172 |
2173 | nan@^2.3.0:
2174 | version "2.5.1"
2175 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2"
2176 |
2177 | ncname@1.0.x:
2178 | version "1.0.0"
2179 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c"
2180 | dependencies:
2181 | xml-char-classes "^1.0.0"
2182 |
2183 | negotiator@0.6.1:
2184 | version "0.6.1"
2185 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2186 |
2187 | no-case@^2.2.0:
2188 | version "2.3.1"
2189 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081"
2190 | dependencies:
2191 | lower-case "^1.1.1"
2192 |
2193 | node-fetch@^1.0.1:
2194 | version "1.6.3"
2195 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04"
2196 | dependencies:
2197 | encoding "^0.1.11"
2198 | is-stream "^1.0.1"
2199 |
2200 | node-libs-browser@^2.0.0:
2201 | version "2.0.0"
2202 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
2203 | dependencies:
2204 | assert "^1.1.1"
2205 | browserify-zlib "^0.1.4"
2206 | buffer "^4.3.0"
2207 | console-browserify "^1.1.0"
2208 | constants-browserify "^1.0.0"
2209 | crypto-browserify "^3.11.0"
2210 | domain-browser "^1.1.1"
2211 | events "^1.0.0"
2212 | https-browserify "0.0.1"
2213 | os-browserify "^0.2.0"
2214 | path-browserify "0.0.0"
2215 | process "^0.11.0"
2216 | punycode "^1.2.4"
2217 | querystring-es3 "^0.2.0"
2218 | readable-stream "^2.0.5"
2219 | stream-browserify "^2.0.1"
2220 | stream-http "^2.3.1"
2221 | string_decoder "^0.10.25"
2222 | timers-browserify "^2.0.2"
2223 | tty-browserify "0.0.0"
2224 | url "^0.11.0"
2225 | util "^0.10.3"
2226 | vm-browserify "0.0.4"
2227 |
2228 | node-pre-gyp@^0.6.29:
2229 | version "0.6.32"
2230 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.32.tgz#fc452b376e7319b3d255f5f34853ef6fd8fe1fd5"
2231 | dependencies:
2232 | mkdirp "~0.5.1"
2233 | nopt "~3.0.6"
2234 | npmlog "^4.0.1"
2235 | rc "~1.1.6"
2236 | request "^2.79.0"
2237 | rimraf "~2.5.4"
2238 | semver "~5.3.0"
2239 | tar "~2.2.1"
2240 | tar-pack "~3.3.0"
2241 |
2242 | nopt@~3.0.6:
2243 | version "3.0.6"
2244 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
2245 | dependencies:
2246 | abbrev "1"
2247 |
2248 | normalize-package-data@^2.3.2:
2249 | version "2.3.5"
2250 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df"
2251 | dependencies:
2252 | hosted-git-info "^2.1.4"
2253 | is-builtin-module "^1.0.0"
2254 | semver "2 || 3 || 4 || 5"
2255 | validate-npm-package-license "^3.0.1"
2256 |
2257 | normalize-path@^2.0.1:
2258 | version "2.0.1"
2259 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
2260 |
2261 | npmlog@^4.0.1:
2262 | version "4.0.2"
2263 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f"
2264 | dependencies:
2265 | are-we-there-yet "~1.1.2"
2266 | console-control-strings "~1.1.0"
2267 | gauge "~2.7.1"
2268 | set-blocking "~2.0.0"
2269 |
2270 | nth-check@~1.0.1:
2271 | version "1.0.1"
2272 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4"
2273 | dependencies:
2274 | boolbase "~1.0.0"
2275 |
2276 | number-is-nan@^1.0.0:
2277 | version "1.0.1"
2278 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2279 |
2280 | oauth-sign@~0.8.1:
2281 | version "0.8.2"
2282 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
2283 |
2284 | object-assign@^4.0.1, object-assign@^4.1.0:
2285 | version "4.1.1"
2286 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2287 |
2288 | object.omit@^2.0.0:
2289 | version "2.0.1"
2290 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2291 | dependencies:
2292 | for-own "^0.1.4"
2293 | is-extendable "^0.1.1"
2294 |
2295 | on-finished@~2.3.0:
2296 | version "2.3.0"
2297 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2298 | dependencies:
2299 | ee-first "1.1.1"
2300 |
2301 | on-headers@~1.0.1:
2302 | version "1.0.1"
2303 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
2304 |
2305 | once@^1.3.0, once@~1.3.3:
2306 | version "1.3.3"
2307 | resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20"
2308 | dependencies:
2309 | wrappy "1"
2310 |
2311 | os-browserify@^0.2.0:
2312 | version "0.2.1"
2313 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"
2314 |
2315 | os-homedir@^1.0.0:
2316 | version "1.0.2"
2317 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2318 |
2319 | os-locale@^1.4.0:
2320 | version "1.4.0"
2321 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
2322 | dependencies:
2323 | lcid "^1.0.0"
2324 |
2325 | os-tmpdir@^1.0.1:
2326 | version "1.0.2"
2327 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2328 |
2329 | pako@~0.2.0:
2330 | version "0.2.9"
2331 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2332 |
2333 | param-case@2.1.x:
2334 | version "2.1.0"
2335 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.0.tgz#2619f90fd6c829ed0b958f1c84ed03a745a6d70a"
2336 | dependencies:
2337 | no-case "^2.2.0"
2338 |
2339 | parse-asn1@^5.0.0:
2340 | version "5.0.0"
2341 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23"
2342 | dependencies:
2343 | asn1.js "^4.0.0"
2344 | browserify-aes "^1.0.0"
2345 | create-hash "^1.1.0"
2346 | evp_bytestokey "^1.0.0"
2347 | pbkdf2 "^3.0.3"
2348 |
2349 | parse-glob@^3.0.4:
2350 | version "3.0.4"
2351 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2352 | dependencies:
2353 | glob-base "^0.3.0"
2354 | is-dotfile "^1.0.0"
2355 | is-extglob "^1.0.0"
2356 | is-glob "^2.0.0"
2357 |
2358 | parse-json@^2.2.0:
2359 | version "2.2.0"
2360 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
2361 | dependencies:
2362 | error-ex "^1.2.0"
2363 |
2364 | parseurl@~1.3.1:
2365 | version "1.3.1"
2366 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56"
2367 |
2368 | passport-local@^1.0.0:
2369 | version "1.0.0"
2370 | resolved "https://registry.yarnpkg.com/passport-local/-/passport-local-1.0.0.tgz#1fe63268c92e75606626437e3b906662c15ba6ee"
2371 | dependencies:
2372 | passport-strategy "1.x.x"
2373 |
2374 | passport-strategy@1.x.x:
2375 | version "1.0.0"
2376 | resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4"
2377 |
2378 | passport@^0.3.2:
2379 | version "0.3.2"
2380 | resolved "https://registry.yarnpkg.com/passport/-/passport-0.3.2.tgz#9dd009f915e8fe095b0124a01b8f82da07510102"
2381 | dependencies:
2382 | passport-strategy "1.x.x"
2383 | pause "0.0.1"
2384 |
2385 | path-browserify@0.0.0:
2386 | version "0.0.0"
2387 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2388 |
2389 | path-exists@^2.0.0:
2390 | version "2.1.0"
2391 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2392 | dependencies:
2393 | pinkie-promise "^2.0.0"
2394 |
2395 | path-is-absolute@^1.0.0:
2396 | version "1.0.1"
2397 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2398 |
2399 | path-to-regexp@0.1.7:
2400 | version "0.1.7"
2401 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2402 |
2403 | path-type@^1.0.0:
2404 | version "1.1.0"
2405 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
2406 | dependencies:
2407 | graceful-fs "^4.1.2"
2408 | pify "^2.0.0"
2409 | pinkie-promise "^2.0.0"
2410 |
2411 | pause@0.0.1:
2412 | version "0.0.1"
2413 | resolved "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"
2414 |
2415 | pbkdf2@^3.0.3:
2416 | version "3.0.9"
2417 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693"
2418 | dependencies:
2419 | create-hmac "^1.1.2"
2420 |
2421 | pify@^2.0.0:
2422 | version "2.3.0"
2423 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2424 |
2425 | pinkie-promise@^2.0.0:
2426 | version "2.0.1"
2427 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2428 | dependencies:
2429 | pinkie "^2.0.0"
2430 |
2431 | pinkie@^2.0.0:
2432 | version "2.0.4"
2433 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2434 |
2435 | pkg-dir@^1.0.0:
2436 | version "1.0.0"
2437 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
2438 | dependencies:
2439 | find-up "^1.0.0"
2440 |
2441 | preserve@^0.2.0:
2442 | version "0.2.0"
2443 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2444 |
2445 | pretty-error@^2.0.2:
2446 | version "2.0.2"
2447 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.0.2.tgz#a7db19cbb529ca9f0af3d3a2f77d5caf8e5dec23"
2448 | dependencies:
2449 | renderkid "~2.0.0"
2450 | utila "~0.4"
2451 |
2452 | private@^0.1.6:
2453 | version "0.1.6"
2454 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"
2455 |
2456 | process-nextick-args@~1.0.6:
2457 | version "1.0.7"
2458 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
2459 |
2460 | process@^0.11.0:
2461 | version "0.11.9"
2462 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1"
2463 |
2464 | promise@^7.1.1:
2465 | version "7.1.1"
2466 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf"
2467 | dependencies:
2468 | asap "~2.0.3"
2469 |
2470 | proxy-addr@~1.1.2:
2471 | version "1.1.3"
2472 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074"
2473 | dependencies:
2474 | forwarded "~0.1.0"
2475 | ipaddr.js "1.2.0"
2476 |
2477 | prr@~0.0.0:
2478 | version "0.0.0"
2479 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
2480 |
2481 | public-encrypt@^4.0.0:
2482 | version "4.0.0"
2483 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
2484 | dependencies:
2485 | bn.js "^4.1.0"
2486 | browserify-rsa "^4.0.0"
2487 | create-hash "^1.1.0"
2488 | parse-asn1 "^5.0.0"
2489 | randombytes "^2.0.1"
2490 |
2491 | punycode@1.3.2:
2492 | version "1.3.2"
2493 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2494 |
2495 | punycode@^1.2.4, punycode@^1.4.1:
2496 | version "1.4.1"
2497 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2498 |
2499 | qs@6.2.0:
2500 | version "6.2.0"
2501 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b"
2502 |
2503 | qs@6.2.1:
2504 | version "6.2.1"
2505 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625"
2506 |
2507 | qs@~6.3.0:
2508 | version "6.3.0"
2509 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442"
2510 |
2511 | querystring-es3@^0.2.0:
2512 | version "0.2.1"
2513 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2514 |
2515 | querystring@0.2.0:
2516 | version "0.2.0"
2517 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2518 |
2519 | random-bytes@~1.0.0:
2520 | version "1.0.0"
2521 | resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b"
2522 |
2523 | randomatic@^1.1.3:
2524 | version "1.1.6"
2525 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb"
2526 | dependencies:
2527 | is-number "^2.0.2"
2528 | kind-of "^3.0.2"
2529 |
2530 | randombytes@^2.0.0, randombytes@^2.0.1:
2531 | version "2.0.3"
2532 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec"
2533 |
2534 | range-parser@^1.0.3, range-parser@~1.2.0:
2535 | version "1.2.0"
2536 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2537 |
2538 | raw-body@^2.1.0, raw-body@~2.2.0:
2539 | version "2.2.0"
2540 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.2.0.tgz#994976cf6a5096a41162840492f0bdc5d6e7fb96"
2541 | dependencies:
2542 | bytes "2.4.0"
2543 | iconv-lite "0.4.15"
2544 | unpipe "1.0.0"
2545 |
2546 | rc@~1.1.6:
2547 | version "1.1.6"
2548 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9"
2549 | dependencies:
2550 | deep-extend "~0.4.0"
2551 | ini "~1.3.0"
2552 | minimist "^1.2.0"
2553 | strip-json-comments "~1.0.4"
2554 |
2555 | react-apollo@^0.10.0:
2556 | version "0.10.0"
2557 | resolved "https://registry.yarnpkg.com/react-apollo/-/react-apollo-0.10.0.tgz#8f53a94fbd89210dde38d66f72df3f0f9c6a3810"
2558 | dependencies:
2559 | graphql-anywhere "^2.0.0"
2560 | hoist-non-react-statics "^1.2.0"
2561 | invariant "^2.2.1"
2562 | lodash.flatten "^4.2.0"
2563 | lodash.isequal "^4.1.1"
2564 | lodash.isobject "^3.0.2"
2565 | lodash.pick "^4.4.0"
2566 | object-assign "^4.0.1"
2567 | optionalDependencies:
2568 | react-dom "0.14.x || 15.* || ^15.0.0"
2569 |
2570 | "react-dom@0.14.x || 15.* || ^15.0.0", react-dom@^15.4.2:
2571 | version "15.4.2"
2572 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f"
2573 | dependencies:
2574 | fbjs "^0.8.1"
2575 | loose-envify "^1.1.0"
2576 | object-assign "^4.1.0"
2577 |
2578 | react@^15.4.2:
2579 | version "15.4.2"
2580 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef"
2581 | dependencies:
2582 | fbjs "^0.8.4"
2583 | loose-envify "^1.1.0"
2584 | object-assign "^4.1.0"
2585 |
2586 | read-pkg-up@^1.0.1:
2587 | version "1.0.1"
2588 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
2589 | dependencies:
2590 | find-up "^1.0.0"
2591 | read-pkg "^1.0.0"
2592 |
2593 | read-pkg@^1.0.0:
2594 | version "1.1.0"
2595 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
2596 | dependencies:
2597 | load-json-file "^1.0.0"
2598 | normalize-package-data "^2.3.2"
2599 | path-type "^1.0.0"
2600 |
2601 | readable-stream@1.0:
2602 | version "1.0.34"
2603 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
2604 | dependencies:
2605 | core-util-is "~1.0.0"
2606 | inherits "~2.0.1"
2607 | isarray "0.0.1"
2608 | string_decoder "~0.10.x"
2609 |
2610 | readable-stream@2.1.5, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.0, readable-stream@~2.1.4:
2611 | version "2.1.5"
2612 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
2613 | dependencies:
2614 | buffer-shims "^1.0.0"
2615 | core-util-is "~1.0.0"
2616 | inherits "~2.0.1"
2617 | isarray "~1.0.0"
2618 | process-nextick-args "~1.0.6"
2619 | string_decoder "~0.10.x"
2620 | util-deprecate "~1.0.1"
2621 |
2622 | readdirp@^2.0.0:
2623 | version "2.1.0"
2624 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2625 | dependencies:
2626 | graceful-fs "^4.1.2"
2627 | minimatch "^3.0.2"
2628 | readable-stream "^2.0.2"
2629 | set-immediate-shim "^1.0.1"
2630 |
2631 | redux@^3.4.0:
2632 | version "3.6.0"
2633 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d"
2634 | dependencies:
2635 | lodash "^4.2.1"
2636 | lodash-es "^4.2.1"
2637 | loose-envify "^1.1.0"
2638 | symbol-observable "^1.0.2"
2639 |
2640 | regenerate@^1.2.1:
2641 | version "1.3.2"
2642 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260"
2643 |
2644 | regenerator-runtime@^0.10.0:
2645 | version "0.10.1"
2646 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.1.tgz#257f41961ce44558b18f7814af48c17559f9faeb"
2647 |
2648 | regenerator-transform@0.9.8:
2649 | version "0.9.8"
2650 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
2651 | dependencies:
2652 | babel-runtime "^6.18.0"
2653 | babel-types "^6.19.0"
2654 | private "^0.1.6"
2655 |
2656 | regex-cache@^0.4.2:
2657 | version "0.4.3"
2658 | resolved "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
2659 | dependencies:
2660 | is-equal-shallow "^0.1.3"
2661 | is-primitive "^2.0.0"
2662 |
2663 | regexp-clone@0.0.1:
2664 | version "0.0.1"
2665 | resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-0.0.1.tgz#a7c2e09891fdbf38fbb10d376fb73003e68ac589"
2666 |
2667 | regexpu-core@^2.0.0:
2668 | version "2.0.0"
2669 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2670 | dependencies:
2671 | regenerate "^1.2.1"
2672 | regjsgen "^0.2.0"
2673 | regjsparser "^0.1.4"
2674 |
2675 | regjsgen@^0.2.0:
2676 | version "0.2.0"
2677 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2678 |
2679 | regjsparser@^0.1.4:
2680 | version "0.1.5"
2681 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2682 | dependencies:
2683 | jsesc "~0.5.0"
2684 |
2685 | relateurl@0.2.x:
2686 | version "0.2.7"
2687 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
2688 |
2689 | renderkid@~2.0.0:
2690 | version "2.0.0"
2691 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.0.tgz#1859753e7a5adbf35443aba0d4e4579e78abee85"
2692 | dependencies:
2693 | css-select "^1.1.0"
2694 | dom-converter "~0.1"
2695 | htmlparser2 "~3.3.0"
2696 | strip-ansi "^3.0.0"
2697 | utila "~0.3"
2698 |
2699 | repeat-element@^1.1.2:
2700 | version "1.1.2"
2701 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2702 |
2703 | repeat-string@^1.5.2:
2704 | version "1.6.1"
2705 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2706 |
2707 | repeating@^2.0.0:
2708 | version "2.0.1"
2709 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2710 | dependencies:
2711 | is-finite "^1.0.0"
2712 |
2713 | request@^2.79.0:
2714 | version "2.79.0"
2715 | resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
2716 | dependencies:
2717 | aws-sign2 "~0.6.0"
2718 | aws4 "^1.2.1"
2719 | caseless "~0.11.0"
2720 | combined-stream "~1.0.5"
2721 | extend "~3.0.0"
2722 | forever-agent "~0.6.1"
2723 | form-data "~2.1.1"
2724 | har-validator "~2.0.6"
2725 | hawk "~3.1.3"
2726 | http-signature "~1.1.0"
2727 | is-typedarray "~1.0.0"
2728 | isstream "~0.1.2"
2729 | json-stringify-safe "~5.0.1"
2730 | mime-types "~2.1.7"
2731 | oauth-sign "~0.8.1"
2732 | qs "~6.3.0"
2733 | stringstream "~0.0.4"
2734 | tough-cookie "~2.3.0"
2735 | tunnel-agent "~0.4.1"
2736 | uuid "^3.0.0"
2737 |
2738 | require-directory@^2.1.1:
2739 | version "2.1.1"
2740 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
2741 |
2742 | require-main-filename@^1.0.1:
2743 | version "1.0.1"
2744 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
2745 |
2746 | require_optional@~1.0.0:
2747 | version "1.0.0"
2748 | resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.0.tgz#52a86137a849728eb60a55533617f8f914f59abf"
2749 | dependencies:
2750 | resolve-from "^2.0.0"
2751 | semver "^5.1.0"
2752 |
2753 | resolve-from@^2.0.0:
2754 | version "2.0.0"
2755 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
2756 |
2757 | right-align@^0.1.1:
2758 | version "0.1.3"
2759 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef"
2760 | dependencies:
2761 | align-text "^0.1.1"
2762 |
2763 | rimraf@2, rimraf@~2.5.1, rimraf@~2.5.4:
2764 | version "2.5.4"
2765 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.5.4.tgz#96800093cbf1a0c86bd95b4625467535c29dfa04"
2766 | dependencies:
2767 | glob "^7.0.5"
2768 |
2769 | ripemd160@^1.0.0:
2770 | version "1.0.1"
2771 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e"
2772 |
2773 | "semver@2 || 3 || 4 || 5", semver@^5.1.0, semver@~5.3.0:
2774 | version "5.3.0"
2775 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
2776 |
2777 | send@0.14.1:
2778 | version "0.14.1"
2779 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a"
2780 | dependencies:
2781 | debug "~2.2.0"
2782 | depd "~1.1.0"
2783 | destroy "~1.0.4"
2784 | encodeurl "~1.0.1"
2785 | escape-html "~1.0.3"
2786 | etag "~1.7.0"
2787 | fresh "0.3.0"
2788 | http-errors "~1.5.0"
2789 | mime "1.3.4"
2790 | ms "0.7.1"
2791 | on-finished "~2.3.0"
2792 | range-parser "~1.2.0"
2793 | statuses "~1.3.0"
2794 |
2795 | send@0.14.2:
2796 | version "0.14.2"
2797 | resolved "https://registry.yarnpkg.com/send/-/send-0.14.2.tgz#39b0438b3f510be5dc6f667a11f71689368cdeef"
2798 | dependencies:
2799 | debug "~2.2.0"
2800 | depd "~1.1.0"
2801 | destroy "~1.0.4"
2802 | encodeurl "~1.0.1"
2803 | escape-html "~1.0.3"
2804 | etag "~1.7.0"
2805 | fresh "0.3.0"
2806 | http-errors "~1.5.1"
2807 | mime "1.3.4"
2808 | ms "0.7.2"
2809 | on-finished "~2.3.0"
2810 | range-parser "~1.2.0"
2811 | statuses "~1.3.1"
2812 |
2813 | serve-static@~1.11.1:
2814 | version "1.11.2"
2815 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.2.tgz#2cf9889bd4435a320cc36895c9aa57bd662e6ac7"
2816 | dependencies:
2817 | encodeurl "~1.0.1"
2818 | escape-html "~1.0.3"
2819 | parseurl "~1.3.1"
2820 | send "0.14.2"
2821 |
2822 | set-blocking@^2.0.0, set-blocking@~2.0.0:
2823 | version "2.0.0"
2824 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2825 |
2826 | set-immediate-shim@^1.0.1:
2827 | version "1.0.1"
2828 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2829 |
2830 | setimmediate@^1.0.4, setimmediate@^1.0.5:
2831 | version "1.0.5"
2832 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2833 |
2834 | setprototypeof@1.0.2:
2835 | version "1.0.2"
2836 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08"
2837 |
2838 | sha.js@^2.3.6:
2839 | version "2.4.8"
2840 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
2841 | dependencies:
2842 | inherits "^2.0.1"
2843 |
2844 | signal-exit@^3.0.0:
2845 | version "3.0.2"
2846 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2847 |
2848 | slash@^1.0.0:
2849 | version "1.0.0"
2850 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2851 |
2852 | sliced@0.0.5:
2853 | version "0.0.5"
2854 | resolved "http://registry.npmjs.org/sliced/-/sliced-0.0.5.tgz#5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f"
2855 |
2856 | sliced@1.0.1:
2857 | version "1.0.1"
2858 | resolved "http://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41"
2859 |
2860 | sntp@1.x.x:
2861 | version "1.0.9"
2862 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
2863 | dependencies:
2864 | hoek "2.x.x"
2865 |
2866 | source-list-map@~0.1.7:
2867 | version "0.1.8"
2868 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106"
2869 |
2870 | source-map-support@^0.4.2:
2871 | version "0.4.10"
2872 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.10.tgz#d7b19038040a14c0837a18e630a196453952b378"
2873 | dependencies:
2874 | source-map "^0.5.3"
2875 |
2876 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.3:
2877 | version "0.5.6"
2878 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
2879 |
2880 | spdx-correct@~1.0.0:
2881 | version "1.0.2"
2882 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
2883 | dependencies:
2884 | spdx-license-ids "^1.0.2"
2885 |
2886 | spdx-expression-parse@~1.0.0:
2887 | version "1.0.4"
2888 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
2889 |
2890 | spdx-license-ids@^1.0.2:
2891 | version "1.2.2"
2892 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
2893 |
2894 | sshpk@^1.7.0:
2895 | version "1.10.2"
2896 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.10.2.tgz#d5a804ce22695515638e798dbe23273de070a5fa"
2897 | dependencies:
2898 | asn1 "~0.2.3"
2899 | assert-plus "^1.0.0"
2900 | dashdash "^1.12.0"
2901 | getpass "^0.1.1"
2902 | optionalDependencies:
2903 | bcrypt-pbkdf "^1.0.0"
2904 | ecc-jsbn "~0.1.1"
2905 | jodid25519 "^1.0.0"
2906 | jsbn "~0.1.0"
2907 | tweetnacl "~0.14.0"
2908 |
2909 | "statuses@>= 1.3.1 < 2", statuses@~1.3.0, statuses@~1.3.1:
2910 | version "1.3.1"
2911 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
2912 |
2913 | stream-browserify@^2.0.1:
2914 | version "2.0.1"
2915 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"
2916 | dependencies:
2917 | inherits "~2.0.1"
2918 | readable-stream "^2.0.2"
2919 |
2920 | stream-http@^2.3.1:
2921 | version "2.6.3"
2922 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.6.3.tgz#4c3ddbf9635968ea2cfd4e48d43de5def2625ac3"
2923 | dependencies:
2924 | builtin-status-codes "^3.0.0"
2925 | inherits "^2.0.1"
2926 | readable-stream "^2.1.0"
2927 | to-arraybuffer "^1.0.0"
2928 | xtend "^4.0.0"
2929 |
2930 | string-width@^1.0.1, string-width@^1.0.2:
2931 | version "1.0.2"
2932 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
2933 | dependencies:
2934 | code-point-at "^1.0.0"
2935 | is-fullwidth-code-point "^1.0.0"
2936 | strip-ansi "^3.0.0"
2937 |
2938 | string_decoder@^0.10.25, string_decoder@~0.10.x:
2939 | version "0.10.31"
2940 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
2941 |
2942 | stringstream@~0.0.4:
2943 | version "0.0.5"
2944 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
2945 |
2946 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
2947 | version "3.0.1"
2948 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
2949 | dependencies:
2950 | ansi-regex "^2.0.0"
2951 |
2952 | strip-bom@^2.0.0:
2953 | version "2.0.0"
2954 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
2955 | dependencies:
2956 | is-utf8 "^0.2.0"
2957 |
2958 | strip-json-comments@~1.0.4:
2959 | version "1.0.4"
2960 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz#1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"
2961 |
2962 | supports-color@^0.2.0:
2963 | version "0.2.0"
2964 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a"
2965 |
2966 | supports-color@^2.0.0:
2967 | version "2.0.0"
2968 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
2969 |
2970 | supports-color@^3.1.0:
2971 | version "3.2.3"
2972 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
2973 | dependencies:
2974 | has-flag "^1.0.0"
2975 |
2976 | symbol-observable@^1.0.2:
2977 | version "1.0.4"
2978 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
2979 |
2980 | tapable@^0.2.5, tapable@~0.2.5:
2981 | version "0.2.6"
2982 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d"
2983 |
2984 | tar-pack@~3.3.0:
2985 | version "3.3.0"
2986 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.3.0.tgz#30931816418f55afc4d21775afdd6720cee45dae"
2987 | dependencies:
2988 | debug "~2.2.0"
2989 | fstream "~1.0.10"
2990 | fstream-ignore "~1.0.5"
2991 | once "~1.3.3"
2992 | readable-stream "~2.1.4"
2993 | rimraf "~2.5.1"
2994 | tar "~2.2.1"
2995 | uid-number "~0.0.6"
2996 |
2997 | tar@~2.2.1:
2998 | version "2.2.1"
2999 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
3000 | dependencies:
3001 | block-stream "*"
3002 | fstream "^1.0.2"
3003 | inherits "2"
3004 |
3005 | timers-browserify@^2.0.2:
3006 | version "2.0.2"
3007 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86"
3008 | dependencies:
3009 | setimmediate "^1.0.4"
3010 |
3011 | to-arraybuffer@^1.0.0:
3012 | version "1.0.1"
3013 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
3014 |
3015 | to-fast-properties@^1.0.1:
3016 | version "1.0.2"
3017 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
3018 |
3019 | toposort@^1.0.0:
3020 | version "1.0.0"
3021 | resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.0.tgz#b66cf385a1a8a8e68e45b8259e7f55875e8b06ef"
3022 |
3023 | tough-cookie@~2.3.0:
3024 | version "2.3.2"
3025 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
3026 | dependencies:
3027 | punycode "^1.4.1"
3028 |
3029 | tty-browserify@0.0.0:
3030 | version "0.0.0"
3031 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
3032 |
3033 | tunnel-agent@~0.4.1:
3034 | version "0.4.3"
3035 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
3036 |
3037 | tweetnacl@^0.14.3, tweetnacl@~0.14.0:
3038 | version "0.14.5"
3039 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
3040 |
3041 | type-is@~1.6.13, type-is@~1.6.14:
3042 | version "1.6.14"
3043 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2"
3044 | dependencies:
3045 | media-typer "0.3.0"
3046 | mime-types "~2.1.13"
3047 |
3048 | ua-parser-js@^0.7.9:
3049 | version "0.7.12"
3050 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb"
3051 |
3052 | uglify-js@2.7.x, uglify-js@^2.7.5:
3053 | version "2.7.5"
3054 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8"
3055 | dependencies:
3056 | async "~0.2.6"
3057 | source-map "~0.5.1"
3058 | uglify-to-browserify "~1.0.0"
3059 | yargs "~3.10.0"
3060 |
3061 | uglify-to-browserify@~1.0.0:
3062 | version "1.0.2"
3063 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3064 |
3065 | uid-number@~0.0.6:
3066 | version "0.0.6"
3067 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
3068 |
3069 | uid-safe@~2.1.3:
3070 | version "2.1.3"
3071 | resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.3.tgz#077e264a00b3187936b270bb7376a26473631071"
3072 | dependencies:
3073 | base64-url "1.3.3"
3074 | random-bytes "~1.0.0"
3075 |
3076 | unpipe@1.0.0, unpipe@~1.0.0:
3077 | version "1.0.0"
3078 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3079 |
3080 | upper-case@^1.1.1:
3081 | version "1.1.3"
3082 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
3083 |
3084 | url@^0.11.0:
3085 | version "0.11.0"
3086 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
3087 | dependencies:
3088 | punycode "1.3.2"
3089 | querystring "0.2.0"
3090 |
3091 | util-deprecate@~1.0.1:
3092 | version "1.0.2"
3093 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3094 |
3095 | util@0.10.3, util@^0.10.3:
3096 | version "0.10.3"
3097 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
3098 | dependencies:
3099 | inherits "2.0.1"
3100 |
3101 | utila@~0.3:
3102 | version "0.3.3"
3103 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226"
3104 |
3105 | utila@~0.4:
3106 | version "0.4.0"
3107 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
3108 |
3109 | utils-merge@1.0.0:
3110 | version "1.0.0"
3111 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8"
3112 |
3113 | uuid@^3.0.0:
3114 | version "3.0.1"
3115 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
3116 |
3117 | validate-npm-package-license@^3.0.1:
3118 | version "3.0.1"
3119 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3120 | dependencies:
3121 | spdx-correct "~1.0.0"
3122 | spdx-expression-parse "~1.0.0"
3123 |
3124 | vary@~1.1.0:
3125 | version "1.1.0"
3126 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140"
3127 |
3128 | verror@1.3.6:
3129 | version "1.3.6"
3130 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
3131 | dependencies:
3132 | extsprintf "1.0.2"
3133 |
3134 | vm-browserify@0.0.4:
3135 | version "0.0.4"
3136 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
3137 | dependencies:
3138 | indexof "0.0.1"
3139 |
3140 | watchpack@^1.2.0:
3141 | version "1.2.0"
3142 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.2.0.tgz#15d4620f1e7471f13fcb551d5c030d2c3eb42dbb"
3143 | dependencies:
3144 | async "^2.1.2"
3145 | chokidar "^1.4.3"
3146 | graceful-fs "^4.1.2"
3147 |
3148 | webpack-dev-middleware@^1.9.0:
3149 | version "1.9.0"
3150 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.9.0.tgz#a1c67a3dfd8a5c5d62740aa0babe61758b4c84aa"
3151 | dependencies:
3152 | memory-fs "~0.4.1"
3153 | mime "^1.3.4"
3154 | path-is-absolute "^1.0.0"
3155 | range-parser "^1.0.3"
3156 |
3157 | webpack-sources@^0.1.4:
3158 | version "0.1.4"
3159 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.4.tgz#ccc2c817e08e5fa393239412690bb481821393cd"
3160 | dependencies:
3161 | source-list-map "~0.1.7"
3162 | source-map "~0.5.3"
3163 |
3164 | webpack@^2.2.0:
3165 | version "2.2.0"
3166 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.0.tgz#09246336b5581c9002353f75bcadb598a648f977"
3167 | dependencies:
3168 | acorn "^4.0.4"
3169 | acorn-dynamic-import "^2.0.0"
3170 | ajv "^4.7.0"
3171 | ajv-keywords "^1.1.1"
3172 | async "^2.1.2"
3173 | enhanced-resolve "^3.0.0"
3174 | interpret "^1.0.0"
3175 | json-loader "^0.5.4"
3176 | loader-runner "^2.2.0"
3177 | loader-utils "^0.2.16"
3178 | memory-fs "~0.4.1"
3179 | mkdirp "~0.5.0"
3180 | node-libs-browser "^2.0.0"
3181 | source-map "^0.5.3"
3182 | supports-color "^3.1.0"
3183 | tapable "~0.2.5"
3184 | uglify-js "^2.7.5"
3185 | watchpack "^1.2.0"
3186 | webpack-sources "^0.1.4"
3187 | yargs "^6.0.0"
3188 |
3189 | whatwg-fetch@>=0.10.0, whatwg-fetch@^2.0.0:
3190 | version "2.0.2"
3191 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.2.tgz#fe294d1d89e36c5be8b3195057f2e4bc74fc980e"
3192 |
3193 | which-module@^1.0.0:
3194 | version "1.0.0"
3195 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
3196 |
3197 | wide-align@^1.1.0:
3198 | version "1.1.0"
3199 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
3200 | dependencies:
3201 | string-width "^1.0.1"
3202 |
3203 | window-size@0.1.0:
3204 | version "0.1.0"
3205 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3206 |
3207 | wordwrap@0.0.2:
3208 | version "0.0.2"
3209 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3210 |
3211 | wrap-ansi@^2.0.0:
3212 | version "2.1.0"
3213 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
3214 | dependencies:
3215 | string-width "^1.0.1"
3216 | strip-ansi "^3.0.1"
3217 |
3218 | wrappy@1:
3219 | version "1.0.2"
3220 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3221 |
3222 | xml-char-classes@^1.0.0:
3223 | version "1.0.0"
3224 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d"
3225 |
3226 | xtend@^4.0.0:
3227 | version "4.0.1"
3228 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3229 |
3230 | y18n@^3.2.1:
3231 | version "3.2.1"
3232 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
3233 |
3234 | yargs-parser@^4.2.0:
3235 | version "4.2.1"
3236 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
3237 | dependencies:
3238 | camelcase "^3.0.0"
3239 |
3240 | yargs@^6.0.0:
3241 | version "6.6.0"
3242 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
3243 | dependencies:
3244 | camelcase "^3.0.0"
3245 | cliui "^3.2.0"
3246 | decamelize "^1.1.1"
3247 | get-caller-file "^1.0.1"
3248 | os-locale "^1.4.0"
3249 | read-pkg-up "^1.0.1"
3250 | require-directory "^2.1.1"
3251 | require-main-filename "^1.0.1"
3252 | set-blocking "^2.0.0"
3253 | string-width "^1.0.2"
3254 | which-module "^1.0.0"
3255 | y18n "^3.2.1"
3256 | yargs-parser "^4.2.0"
3257 |
3258 | yargs@~3.10.0:
3259 | version "3.10.0"
3260 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
3261 | dependencies:
3262 | camelcase "^1.0.2"
3263 | cliui "^2.1.0"
3264 | decamelize "^1.0.0"
3265 | window-size "0.1.0"
3266 |
--------------------------------------------------------------------------------
/users/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/users/db.json:
--------------------------------------------------------------------------------
1 | {
2 | "users": [
3 | {
4 | "id": "40",
5 | "firstName": "Alex",
6 | "age": 40,
7 | "companyId": "2"
8 | },
9 | {
10 | "id": "41",
11 | "firstName": "Nick",
12 | "age": 40,
13 | "companyId": "2"
14 | },
15 | {
16 | "firstName": "Samantha",
17 | "age": 25,
18 | "companyId": "1",
19 | "id": "S1TKHzuwl"
20 | }
21 | ],
22 | "companies": [
23 | {
24 | "id": "1",
25 | "name": "Apple",
26 | "description": "iphone"
27 | },
28 | {
29 | "id": "2",
30 | "name": "Google",
31 | "description": "search"
32 | }
33 | ]
34 | }
--------------------------------------------------------------------------------
/users/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "users",
3 | "version": "1.0.0",
4 | "description": "",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "json:server": "json-server --watch db.json",
9 | "dev": "nodemon server.js"
10 | },
11 | "author": "",
12 | "license": "ISC",
13 | "dependencies": {
14 | "axios": "^0.15.3",
15 | "express": "^4.14.0",
16 | "express-graphql": "^0.6.1",
17 | "graphql": "^0.8.2",
18 | "json-server": "^0.9.4",
19 | "lodash": "^4.17.4"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/users/schema/schema.js:
--------------------------------------------------------------------------------
1 | const graphql = require('graphql');
2 | const axios = require('axios');
3 | const {
4 | GraphQLObjectType,
5 | GraphQLString,
6 | GraphQLInt,
7 | GraphQLSchema,
8 | GraphQLList,
9 | GraphQLNonNull
10 | } = graphql;
11 |
12 | const CompanyType = new GraphQLObjectType({
13 | name: 'Company',
14 | fields: () => ({
15 | id: { type: GraphQLString },
16 | name: { type: GraphQLString },
17 | description: { type: GraphQLString },
18 | users: {
19 | type: new GraphQLList(UserType),
20 | resolve(parentValue, args) {
21 | return axios.get(`http://localhost:3000/companies/${parentValue.id}/users`)
22 | .then(res => res.data)
23 | }
24 | }
25 | })
26 | });
27 |
28 | const UserType = new GraphQLObjectType({
29 | name: 'User',
30 | fields: () => ({
31 | id: { type: GraphQLString },
32 | firstName: { type: GraphQLString },
33 | age: { type: GraphQLInt },
34 | company: {
35 | type: CompanyType,
36 | resolve(parentValue, args) {
37 | return axios.get(`http://localhost:3000/companies/${parentValue.companyId}`)
38 | .then(res => res.data);
39 | }
40 | }
41 | })
42 | });
43 |
44 | const RootQuery = new GraphQLObjectType({
45 | name: 'RootQueryType',
46 | fields: {
47 | user: {
48 | type: UserType,
49 | args: { id: { type: GraphQLString } },
50 | resolve(parentValue, args) {
51 | return axios.get(`http://localhost:3000/users/${args.id}`)
52 | .then(resp => resp.data);
53 | }
54 | },
55 | company: {
56 | type: CompanyType,
57 | args: { id: { type: GraphQLString } },
58 | resolve(parentValue, args) {
59 | return axios.get(`http://localhost:3000/companies/${args.id}`)
60 | .then(resp => resp.data);
61 | }
62 | }
63 | }
64 | });
65 |
66 | const mutation = new GraphQLObjectType({
67 | name: 'Mutation',
68 | fields: {
69 | addUser: {
70 | type: UserType,
71 | args: {
72 | firstName: { type: new GraphQLNonNull(GraphQLString) },
73 | age: { type: GraphQLInt },
74 | companyId: { type: GraphQLString }
75 | },
76 | resolve(parentValue, { firstName, age, companyId }) {
77 | return axios.post('http://localhost:3000/users', { firstName, age, companyId })
78 | .then(res => res.data);
79 | }
80 | },
81 | deleteUser: {
82 | type: UserType,
83 | args: {
84 | id: { type: new GraphQLNonNull(GraphQLString) }
85 | },
86 | resolve(parentValue, { id }) {
87 | return axios.delete(`http://localhost:3000/users/${id}`)
88 | .then(res => res.data);
89 | }
90 | }
91 | }
92 | });
93 |
94 | module.exports = new GraphQLSchema({
95 | mutation,
96 | query: RootQuery
97 | });
98 |
--------------------------------------------------------------------------------
/users/server.js:
--------------------------------------------------------------------------------
1 | const express = require('express');
2 | const expressGraphQL = require('express-graphql');
3 | const schema = require('./schema/schema');
4 |
5 | const app = express();
6 |
7 | app.use('/graphql', expressGraphQL({
8 | schema,
9 | graphiql: true
10 | }));
11 |
12 | app.listen(4000, () => {
13 | console.log('Listening');
14 | });
15 |
--------------------------------------------------------------------------------