├── README.md ├── authentication-with-soundcloud ├── .babelrc ├── .gitignore ├── package.json ├── src │ ├── actions │ │ ├── auth.js │ │ ├── index.js │ │ └── track.js │ ├── components │ │ ├── App │ │ │ ├── App.js │ │ │ ├── App.spec.js │ │ │ └── index.js │ │ ├── Callback │ │ │ ├── Callback.js │ │ │ ├── Callback.spec.js │ │ │ └── index.js │ │ └── TrackList │ │ │ ├── TrackList.js │ │ │ ├── TrackList.spec.js │ │ │ └── index.js │ ├── config.js │ ├── core │ │ └── constants.js │ ├── index.html │ ├── index.js │ ├── reducers │ │ ├── auth.js │ │ ├── index.js │ │ └── tracks.js │ ├── routes.js │ └── store.js ├── test │ └── setup.js └── webpack.config.js ├── connect-react-with-redux ├── .babelrc ├── .gitignore ├── package.json ├── src │ ├── actions │ │ ├── index.js │ │ └── track.js │ ├── components │ │ └── TrackList │ │ │ ├── TrackList.js │ │ │ ├── TrackList.spec.js │ │ │ └── index.js │ ├── core │ │ └── constants.js │ ├── index.html │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ └── tracks.js │ └── store.js ├── test │ └── setup.js └── webpack.config.js ├── connect-with-soundcloud ├── .babelrc ├── .gitignore ├── package.json ├── src │ ├── actions │ │ ├── index.js │ │ └── track.js │ ├── components │ │ ├── App │ │ │ ├── App.js │ │ │ ├── App.spec.js │ │ │ └── index.js │ │ ├── Callback │ │ │ ├── Callback.js │ │ │ ├── Callback.spec.js │ │ │ └── index.js │ │ └── TrackList │ │ │ ├── TrackList.js │ │ │ ├── TrackList.spec.js │ │ │ └── index.js │ ├── config.js │ ├── core │ │ └── constants.js │ ├── index.html │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ └── tracks.js │ ├── routes.js │ └── store.js ├── test │ └── setup.js └── webpack.config.js ├── fetch-tracks ├── .babelrc ├── .gitignore ├── package.json ├── src │ ├── actions │ │ ├── auth.js │ │ ├── index.js │ │ └── track.js │ ├── components │ │ ├── App │ │ │ ├── App.js │ │ │ ├── App.spec.js │ │ │ └── index.js │ │ ├── Callback │ │ │ ├── Callback.js │ │ │ ├── Callback.spec.js │ │ │ └── index.js │ │ └── TrackList │ │ │ ├── Track.js │ │ │ ├── Track.spec.js │ │ │ ├── TrackList.js │ │ │ ├── TrackList.spec.js │ │ │ └── index.js │ ├── config.js │ ├── core │ │ └── constants.js │ ├── index.html │ ├── index.js │ ├── reducers │ │ ├── auth.js │ │ ├── index.js │ │ └── tracks.js │ ├── routes.js │ └── store.js ├── test │ └── setup.js ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock ├── first-react-component ├── .babelrc ├── .gitignore ├── package.json ├── src │ ├── components │ │ └── TrackList.js │ ├── index.html │ └── index.js └── webpack.config.js ├── redux ├── .babelrc ├── .gitignore ├── package.json ├── src │ ├── actions │ │ ├── index.js │ │ └── track.js │ ├── components │ │ ├── TrackList.js │ │ └── TrackList.spec.js │ ├── core │ │ └── constants.js │ ├── index.html │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ └── track.js │ └── store.js ├── test │ └── setup.js └── webpack.config.js └── testing-setup ├── .babelrc ├── .gitignore ├── package.json ├── src ├── components │ ├── TrackList.js │ └── TrackList.spec.js ├── index.html └── index.js ├── test └── setup.js └── webpack.config.js /README.md: -------------------------------------------------------------------------------- 1 | Learn React/Redux by real world example (Vietnamese) 2 | --------------------------------------- 3 | 4 | All source code of course React/Redux by real world example on [Codeaholicguy Blog](https://codeaholicguy.com/). 5 | 6 | [See more](https://codeaholicguy.com/category/react/) 7 | 8 | Lessons 9 | ------- 10 | 11 | 1. [Setup Project](https://codeaholicguy.com/2016/06/28/hoc-reactredux-qua-vi-du-thuc-te-khoi-tao-project/) 12 | 2. [First Component](https://codeaholicguy.com/2016/07/19/hoc-reactredux-qua-vi-du-thuc-te-viet-component-dau-tien/) 13 | 3. [Testing](https://codeaholicguy.com/2016/07/26/hoc-reactredux-qua-vi-du-thuc-te-testing/) 14 | 4. [Redux](https://codeaholicguy.com/2016/08/16/hoc-reactredux-qua-vi-du-thuc-te-redux/) 15 | 5. [Connect React with Redux](https://codeaholicguy.com/2016/09/06/hoc-reactredux-qua-vi-du-thuc-te-ket-noi-react-voi-redux/) 16 | 6. [Connect with SoundCloud API](https://codeaholicguy.com/2016/11/15/hoc-reactredux-qua-vi-du-thuc-te-ket-noi-voi-soundcloud/) 17 | 7. [Authentication with SoundCloud](https://codeaholicguy.com/2016/12/28/hoc-reactredux-qua-vi-du-thuc-te-authentication-thong-qua-soundcloud-api/) 18 | 8. [Using data from SoundCloud API](https://codeaholicguy.com/2017/04/07/hoc-reactredux-qua-vi-du-thuc-te-su-dung-du-lieu-tu-soundcloud-api-va-ket-thuc-hanh-trinh/) 19 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.js", 9 | "test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "chai": "^3.5.0", 22 | "enzyme": "^2.4.1", 23 | "exports-loader": "^0.6.3", 24 | "html-webpack-plugin": "^2.21.0", 25 | "imports-loader": "^0.7.0", 26 | "jsdom": "^9.4.1", 27 | "mocha": "^2.5.3", 28 | "react-addons-test-utils": "^15.2.1", 29 | "react-hot-loader": "^1.3.0", 30 | "webpack": "^1.13.1", 31 | "webpack-dev-server": "^1.14.1", 32 | "whatwg-fetch": "^2.0.1" 33 | }, 34 | "dependencies": { 35 | "react": "^15.2.1", 36 | "react-dom": "^15.2.1", 37 | "react-redux": "^4.4.5", 38 | "react-router": "^3.0.0", 39 | "react-router-redux": "^4.0.7", 40 | "redux": "^3.5.2", 41 | "redux-logger": "^2.6.1", 42 | "redux-thunk": "^2.1.0", 43 | "soundcloud": "^3.1.2", 44 | "whatwg-fetch": "^2.0.1" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/actions/auth.js: -------------------------------------------------------------------------------- 1 | import SoundCloud from 'soundcloud'; 2 | import {ActionTypes} from '../core/constants'; 3 | 4 | const API_HOST = '//api.soundcloud.com'; 5 | 6 | export function auth() { 7 | return (dispatch) => { 8 | SoundCloud.connect().then((session) => { 9 | dispatch(fetchMe(session)); 10 | }); 11 | } 12 | } 13 | 14 | function fetchMe(session) { 15 | return (dispatch) => { 16 | fetch(`${API_HOST}/me?oauth_token=${session.oauth_token}`) 17 | .then((res) => res.json()) 18 | .then((user) => { 19 | dispatch(setMe(user)); 20 | }); 21 | } 22 | } 23 | 24 | function setMe(user) { 25 | return {type: ActionTypes.ME_SET, user} 26 | } 27 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/actions/index.js: -------------------------------------------------------------------------------- 1 | import {auth} from './auth'; 2 | import {setTracks} from './track'; 3 | 4 | export { 5 | auth, 6 | setTracks 7 | }; 8 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/actions/track.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | export function setTracks(tracks) { 4 | return { 5 | type: ActionTypes.TRACKS_SET, 6 | tracks 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/App/App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | 3 | export default class App extends Component { 4 | 5 | render() { 6 | return ( 7 |
{this.props.children}
8 | ) 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/App/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholicguy/react-redux-tutorial/d568f526d0551c88db551bed6c1550bc6d4573ca/authentication-with-soundcloud/src/components/App/App.spec.js -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/App/index.js: -------------------------------------------------------------------------------- 1 | import App from './App'; 2 | 3 | export default App; 4 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/Callback/Callback.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | 3 | const TIME_OUT = 100 4 | 5 | export default class Callback extends Component { 6 | 7 | componentDidMount() { 8 | setTimeout(opener.SC.connectCallback, TIME_OUT); 9 | } 10 | 11 | render() { 12 | return ( 13 |
14 |

This page will close soon.

15 |
16 | ) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/Callback/Callback.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholicguy/react-redux-tutorial/d568f526d0551c88db551bed6c1550bc6d4573ca/authentication-with-soundcloud/src/components/Callback/Callback.spec.js -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/Callback/index.js: -------------------------------------------------------------------------------- 1 | import Callback from './Callback'; 2 | 3 | export default Callback; 4 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/TrackList/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | 3 | export default class TrackList extends Component { 4 | static propTypes = { 5 | tracks: PropTypes.array, 6 | user: PropTypes.object, 7 | auth: PropTypes.func 8 | } 9 | 10 | static defaultProps = { 11 | tracks: [] 12 | } 13 | 14 | render() { 15 | return ( 16 |
17 |
18 | { 19 | this.props.user 20 | ?
Hello {this.props.user.username}
21 | : 22 | } 23 |
24 |
25 | { 26 | this.props.tracks.map((track, key) => { 27 | return
Track: {track.title}
; 28 | }) 29 | } 30 |
31 |
32 | ) 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/TrackList/TrackList.spec.js: -------------------------------------------------------------------------------- 1 | import TrackList from './TrackList'; 2 | import {shallow} from 'enzyme'; 3 | 4 | describe('TrackList', () => { 5 | 6 | it('shows two tracks', () => { 7 | const props = { 8 | tracks: [{ id: 1, title: 'foo' }, { id: 2, title: 'bar' }] 9 | }; 10 | const element = shallow(); 11 | 12 | expect(element.find('div > div')).to.have.length(2); 13 | }); 14 | 15 | it('shows track title', () => { 16 | const props = { 17 | tracks: [{ id: 1, title: 'foo' }] 18 | } 19 | const element = shallow(); 20 | 21 | expect(element.contains('foo')).to.be.true; 22 | }) 23 | 24 | }); 25 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/components/TrackList/index.js: -------------------------------------------------------------------------------- 1 | import {connect} from 'react-redux'; 2 | import TrackList from './TrackList'; 3 | import {auth} from '../../actions'; 4 | 5 | export default connect(({tracks, auth}) => ({tracks, user: auth.user}), {auth})(TrackList); 6 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/config.js: -------------------------------------------------------------------------------- 1 | export const CLIENT_ID = __CLIENT_ID__; 2 | export const REDIRECT_URI = __REDIRECT_URI__; 3 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/core/constants.js: -------------------------------------------------------------------------------- 1 | export const ActionTypes = { 2 | TRACKS_SET: 'TRACKS_SET', 3 | ME_SET: 'ME_SET' 4 | } 5 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Provider} from 'react-redux'; 4 | import SoundCloud from 'soundcloud'; 5 | import {Router, browserHistory} from 'react-router' 6 | import {syncHistoryWithStore} from 'react-router-redux' 7 | import {configureStore} from './store'; 8 | import {CLIENT_ID, REDIRECT_URI} from './config'; 9 | import createRoutes from './routes'; 10 | 11 | SoundCloud.initialize({client_id: CLIENT_ID, redirect_uri: REDIRECT_URI}) 12 | 13 | const store = configureStore(); 14 | const history = syncHistoryWithStore(browserHistory, store); 15 | const routes = createRoutes(); 16 | 17 | ReactDOM.render( 18 | 19 | 20 | , 21 | document.getElementById('app') 22 | ); 23 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/reducers/auth.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = {}; 4 | 5 | export default function(state = initialState, {type, user}) { 6 | switch (type) { 7 | case ActionTypes.ME_SET: 8 | return {...state, user}; 9 | } 10 | 11 | return state; 12 | } 13 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import {combineReducers} from 'redux'; 2 | import {routerReducer} from 'react-router-redux'; 3 | import tracks from './tracks'; 4 | import auth from './auth'; 5 | 6 | export default combineReducers({ 7 | tracks, 8 | auth, 9 | routing: routerReducer 10 | }); 11 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/reducers/tracks.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = []; 4 | 5 | export default function(state = initialState, action) { 6 | switch (action.type) { 7 | case ActionTypes.TRACKS_SET: 8 | return setTracks(state, action); 9 | } 10 | 11 | return state; 12 | } 13 | 14 | function setTracks(state, action) { 15 | const {tracks} = action; 16 | return [...state, ...tracks]; 17 | } 18 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/routes.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {Route, IndexRoute} from 'react-router'; 3 | 4 | import App from './components/App'; 5 | import TrackList from './components/TrackList'; 6 | import Callback from './components/Callback'; 7 | 8 | export default function createRoutes() { 9 | return ( 10 | 11 | 12 | 13 | 14 | 15 | ) 16 | } 17 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/src/store.js: -------------------------------------------------------------------------------- 1 | import {createStore, applyMiddleware} from 'redux'; 2 | import createLogger from 'redux-logger'; 3 | import {browserHistory} from 'react-router'; 4 | import {routerMiddleware} from 'react-router-redux'; 5 | import thunk from 'redux-thunk'; 6 | import rootReducer from './reducers/index'; 7 | 8 | const logger = createLogger(); 9 | const router = routerMiddleware(browserHistory); 10 | 11 | const createStoreWithMiddleware = applyMiddleware(thunk, router, logger)(createStore); 12 | 13 | export function configureStore(initialState) { 14 | return createStoreWithMiddleware(rootReducer, initialState); 15 | } 16 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/test/setup.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {expect} from 'chai'; 3 | import jsdom from 'jsdom'; 4 | 5 | const document = jsdom.jsdom(''); 6 | const window = document.defaultView; 7 | 8 | global.document = document; 9 | global.window = window; 10 | 11 | Object.keys(window).forEach((key) => { 12 | if (!(key in global)) { 13 | global[key] = window[key]; 14 | } 15 | }); 16 | 17 | global.React = React; 18 | global.expect = expect; 19 | -------------------------------------------------------------------------------- /authentication-with-soundcloud/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true, 28 | historyApiFallback: true 29 | }, 30 | 31 | plugins: [ 32 | new HtmlWebpackPlugin({ 33 | template: 'src/index.html', 34 | inject: true 35 | }), 36 | new webpack.DefinePlugin({ 37 | __CLIENT_ID__: JSON.stringify(process.env.CLIENT_ID || ''), 38 | __REDIRECT_URI__: JSON.stringify(process.env.REDIRECT_URI || 'http://localhost:8080/callback') 39 | }), 40 | new webpack.ProvidePlugin({ 41 | 'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch' 42 | }) 43 | ] 44 | } 45 | -------------------------------------------------------------------------------- /connect-react-with-redux/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /connect-react-with-redux/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /connect-react-with-redux/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.js", 9 | "test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "chai": "^3.5.0", 22 | "enzyme": "^2.4.1", 23 | "html-webpack-plugin": "^2.21.0", 24 | "jsdom": "^9.4.1", 25 | "mocha": "^2.5.3", 26 | "react-addons-test-utils": "^15.2.1", 27 | "react-hot-loader": "^1.3.0", 28 | "webpack": "^1.13.1", 29 | "webpack-dev-server": "^1.14.1" 30 | }, 31 | "dependencies": { 32 | "react": "^15.2.1", 33 | "react-dom": "^15.2.1", 34 | "react-redux": "^4.4.5", 35 | "redux": "^3.5.2", 36 | "redux-logger": "^2.6.1" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/actions/index.js: -------------------------------------------------------------------------------- 1 | import {setTracks} from './track'; 2 | 3 | export { 4 | setTracks 5 | }; 6 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/actions/track.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | export function setTracks(tracks) { 4 | return { 5 | type: ActionTypes.TRACKS_SET, 6 | tracks 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/components/TrackList/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | 3 | export default class TrackList extends Component { 4 | static propTypes = { 5 | tracks: PropTypes.array 6 | } 7 | 8 | static defaultProps = { 9 | tracks: [] 10 | } 11 | 12 | render() { 13 | return ( 14 |
15 | { 16 | this.props.tracks.map((track, key) => { 17 | return
Track: {track.title}
; 18 | }) 19 | } 20 |
21 | ) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/components/TrackList/TrackList.spec.js: -------------------------------------------------------------------------------- 1 | import TrackList from './TrackList'; 2 | import {shallow} from 'enzyme'; 3 | 4 | describe('TrackList', () => { 5 | 6 | it('shows two tracks', () => { 7 | const props = { 8 | tracks: [{ id: 1, title: 'foo' }, { id: 2, title: 'bar' }] 9 | }; 10 | const element = shallow(); 11 | 12 | expect(element.find('div > div')).to.have.length(2); 13 | }); 14 | 15 | it('shows track title', () => { 16 | const props = { 17 | tracks: [{ id: 1, title: 'foo' }] 18 | } 19 | const element = shallow(); 20 | 21 | expect(element.contains('foo')).to.be.true; 22 | }) 23 | 24 | }); 25 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/components/TrackList/index.js: -------------------------------------------------------------------------------- 1 | import {connect} from 'react-redux'; 2 | import TrackList from './TrackList'; 3 | 4 | export default connect(({tracks}) => ({tracks}))(TrackList); 5 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/core/constants.js: -------------------------------------------------------------------------------- 1 | export const ActionTypes = { 2 | TRACKS_SET: 'TRACKS_SET' 3 | } 4 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Provider} from 'react-redux'; 4 | import TrackList from './components/TrackList'; 5 | import {configureStore} from './store'; 6 | import * as actions from './actions'; 7 | 8 | const tracks = [ 9 | { 10 | id: 1, 11 | title: 'Em của ngày hôm qua' 12 | }, 13 | { 14 | id: 2, 15 | title: 'Cơn mưa ngang qua' 16 | } 17 | ]; 18 | 19 | const store = configureStore(); 20 | store.dispatch(actions.setTracks(tracks)); 21 | 22 | ReactDOM.render( 23 | 24 | 25 | , 26 | document.getElementById('app') 27 | ); 28 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import {combineReducers} from 'redux'; 2 | import tracks from './tracks'; 3 | 4 | export default combineReducers({ 5 | tracks 6 | }); 7 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/reducers/tracks.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = []; 4 | 5 | export default function(state = initialState, action) { 6 | switch (action.type) { 7 | case ActionTypes.TRACKS_SET: 8 | return setTracks(state, action); 9 | } 10 | 11 | return state; 12 | } 13 | 14 | function setTracks(state, action) { 15 | const {tracks} = action; 16 | return [...state, ...tracks]; 17 | } 18 | -------------------------------------------------------------------------------- /connect-react-with-redux/src/store.js: -------------------------------------------------------------------------------- 1 | import {createStore, applyMiddleware} from 'redux'; 2 | import createLogger from 'redux-logger'; 3 | import rootReducer from './reducers/index'; 4 | 5 | const logger = createLogger(); 6 | 7 | const createStoreWithMiddleware = applyMiddleware(logger)(createStore); 8 | 9 | export function configureStore(initialState) { 10 | return createStoreWithMiddleware(rootReducer, initialState); 11 | } 12 | -------------------------------------------------------------------------------- /connect-react-with-redux/test/setup.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {expect} from 'chai'; 3 | import jsdom from 'jsdom'; 4 | 5 | const document = jsdom.jsdom(''); 6 | const window = document.defaultView; 7 | 8 | global.document = document; 9 | global.window = window; 10 | 11 | Object.keys(window).forEach((key) => { 12 | if (!(key in global)) { 13 | global[key] = window[key]; 14 | } 15 | }); 16 | 17 | global.React = React; 18 | global.expect = expect; 19 | -------------------------------------------------------------------------------- /connect-react-with-redux/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true 28 | }, 29 | 30 | plugins: [ 31 | new HtmlWebpackPlugin({ 32 | template: 'src/index.html', 33 | inject: true 34 | }) 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /connect-with-soundcloud/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /connect-with-soundcloud/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /connect-with-soundcloud/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.js", 9 | "test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "chai": "^3.5.0", 22 | "enzyme": "^2.4.1", 23 | "html-webpack-plugin": "^2.21.0", 24 | "jsdom": "^9.4.1", 25 | "mocha": "^2.5.3", 26 | "react-addons-test-utils": "^15.2.1", 27 | "react-hot-loader": "^1.3.0", 28 | "webpack": "^1.13.1", 29 | "webpack-dev-server": "^1.14.1" 30 | }, 31 | "dependencies": { 32 | "react": "^15.2.1", 33 | "react-dom": "^15.2.1", 34 | "react-redux": "^4.4.5", 35 | "react-router": "^3.0.0", 36 | "react-router-redux": "^4.0.7", 37 | "redux": "^3.5.2", 38 | "redux-logger": "^2.6.1", 39 | "soundcloud": "^3.1.2" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/actions/index.js: -------------------------------------------------------------------------------- 1 | import {setTracks} from './track'; 2 | 3 | export { 4 | setTracks 5 | }; 6 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/actions/track.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | export function setTracks(tracks) { 4 | return { 5 | type: ActionTypes.TRACKS_SET, 6 | tracks 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/App/App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | 3 | export default class App extends Component { 4 | 5 | render() { 6 | return ( 7 |
{this.props.children}
8 | ) 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/App/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholicguy/react-redux-tutorial/d568f526d0551c88db551bed6c1550bc6d4573ca/connect-with-soundcloud/src/components/App/App.spec.js -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/App/index.js: -------------------------------------------------------------------------------- 1 | import App from './App'; 2 | 3 | export default App; 4 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/Callback/Callback.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | 3 | const TIME_OUT = 100 4 | 5 | export default class Callback extends Component { 6 | 7 | componentDidMount() { 8 | setTimeout(opener.SoundCloud.connectCallback, TIME_OUT); 9 | } 10 | 11 | render() { 12 | return ( 13 |
14 |

This page will close soon.

15 |
16 | ) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/Callback/Callback.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholicguy/react-redux-tutorial/d568f526d0551c88db551bed6c1550bc6d4573ca/connect-with-soundcloud/src/components/Callback/Callback.spec.js -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/Callback/index.js: -------------------------------------------------------------------------------- 1 | import Callback from './Callback'; 2 | 3 | export default Callback; 4 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/TrackList/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | 3 | export default class TrackList extends Component { 4 | static propTypes = { 5 | tracks: PropTypes.array 6 | } 7 | 8 | static defaultProps = { 9 | tracks: [] 10 | } 11 | 12 | render() { 13 | return ( 14 |
15 | { 16 | this.props.tracks.map((track, key) => { 17 | return
Track: {track.title}
; 18 | }) 19 | } 20 |
21 | ) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/TrackList/TrackList.spec.js: -------------------------------------------------------------------------------- 1 | import TrackList from './TrackList'; 2 | import {shallow} from 'enzyme'; 3 | 4 | describe('TrackList', () => { 5 | 6 | it('shows two tracks', () => { 7 | const props = { 8 | tracks: [{ id: 1, title: 'foo' }, { id: 2, title: 'bar' }] 9 | }; 10 | const element = shallow(); 11 | 12 | expect(element.find('div > div')).to.have.length(2); 13 | }); 14 | 15 | it('shows track title', () => { 16 | const props = { 17 | tracks: [{ id: 1, title: 'foo' }] 18 | } 19 | const element = shallow(); 20 | 21 | expect(element.contains('foo')).to.be.true; 22 | }) 23 | 24 | }); 25 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/components/TrackList/index.js: -------------------------------------------------------------------------------- 1 | import {connect} from 'react-redux'; 2 | import TrackList from './TrackList'; 3 | 4 | export default connect(({tracks}) => ({tracks}))(TrackList); 5 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/config.js: -------------------------------------------------------------------------------- 1 | export const CLIENT_ID = process.env.CLIENT_ID; 2 | export const REDIRECT_URI = process.env.REDIRECT_URI || 'http://localhost:8080/callback'; 3 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/core/constants.js: -------------------------------------------------------------------------------- 1 | export const ActionTypes = { 2 | TRACKS_SET: 'TRACKS_SET' 3 | } 4 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Provider} from 'react-redux'; 4 | import SoundCloud from 'soundcloud'; 5 | import {Router, browserHistory} from 'react-router' 6 | import {syncHistoryWithStore} from 'react-router-redux' 7 | import {configureStore} from './store'; 8 | import {CLIENT_ID, REDIRECT_URI} from './config'; 9 | import createRoutes from './routes'; 10 | 11 | SoundCloud.initialize({ 12 | client_id: CLIENT_ID, 13 | redirect_uri: REDIRECT_URI 14 | }) 15 | 16 | const store = configureStore(); 17 | const history = syncHistoryWithStore(browserHistory, store); 18 | const routes = createRoutes(); 19 | 20 | ReactDOM.render( 21 | 22 | 23 | , 24 | document.getElementById('app') 25 | ); 26 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import {combineReducers} from 'redux'; 2 | import {routerReducer} from 'react-router-redux'; 3 | import tracks from './tracks'; 4 | 5 | export default combineReducers({ 6 | tracks, 7 | routing: routerReducer 8 | }); 9 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/reducers/tracks.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = []; 4 | 5 | export default function(state = initialState, action) { 6 | switch (action.type) { 7 | case ActionTypes.TRACKS_SET: 8 | return setTracks(state, action); 9 | } 10 | 11 | return state; 12 | } 13 | 14 | function setTracks(state, action) { 15 | const {tracks} = action; 16 | return [...state, ...tracks]; 17 | } 18 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/routes.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {Route, IndexRoute} from 'react-router'; 3 | 4 | import App from './components/App'; 5 | import TrackList from './components/TrackList'; 6 | import Callback from './components/Callback'; 7 | 8 | export default function createRoutes() { 9 | return ( 10 | 11 | 12 | 13 | 14 | 15 | ) 16 | } 17 | -------------------------------------------------------------------------------- /connect-with-soundcloud/src/store.js: -------------------------------------------------------------------------------- 1 | import {createStore, applyMiddleware} from 'redux'; 2 | import createLogger from 'redux-logger'; 3 | import {browserHistory} from 'react-router'; 4 | import {routerMiddleware} from 'react-router-redux'; 5 | import rootReducer from './reducers/index'; 6 | 7 | const logger = createLogger(); 8 | const router = routerMiddleware(browserHistory); 9 | 10 | const createStoreWithMiddleware = applyMiddleware(router, logger)(createStore); 11 | 12 | export function configureStore(initialState) { 13 | return createStoreWithMiddleware(rootReducer, initialState); 14 | } 15 | -------------------------------------------------------------------------------- /connect-with-soundcloud/test/setup.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {expect} from 'chai'; 3 | import jsdom from 'jsdom'; 4 | 5 | const document = jsdom.jsdom(''); 6 | const window = document.defaultView; 7 | 8 | global.document = document; 9 | global.window = window; 10 | 11 | Object.keys(window).forEach((key) => { 12 | if (!(key in global)) { 13 | global[key] = window[key]; 14 | } 15 | }); 16 | 17 | global.React = React; 18 | global.expect = expect; 19 | -------------------------------------------------------------------------------- /connect-with-soundcloud/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true, 28 | historyApiFallback: true 29 | }, 30 | 31 | plugins: [ 32 | new HtmlWebpackPlugin({ 33 | template: 'src/index.html', 34 | inject: true 35 | }) 36 | ] 37 | } 38 | -------------------------------------------------------------------------------- /fetch-tracks/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /fetch-tracks/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /fetch-tracks/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.prod.js", 9 | "test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "chai": "^3.5.0", 22 | "enzyme": "^2.4.1", 23 | "exports-loader": "^0.6.3", 24 | "html-webpack-plugin": "^2.21.0", 25 | "imports-loader": "^0.7.0", 26 | "jsdom": "^9.4.1", 27 | "mocha": "^2.5.3", 28 | "react-addons-test-utils": "^15.2.1", 29 | "react-hot-loader": "^1.3.0", 30 | "webpack": "^1.13.1", 31 | "webpack-dev-server": "^1.14.1", 32 | "whatwg-fetch": "^2.0.1" 33 | }, 34 | "dependencies": { 35 | "material-ui": "^0.17.1", 36 | "react": "^15.2.1", 37 | "react-dom": "^15.2.1", 38 | "react-redux": "^4.4.5", 39 | "react-router": "^3.0.0", 40 | "react-router-redux": "^4.0.7", 41 | "react-tap-event-plugin": "^2.0.1", 42 | "redux": "^3.5.2", 43 | "redux-logger": "^2.6.1", 44 | "redux-thunk": "^2.1.0", 45 | "soundcloud": "^3.1.2", 46 | "whatwg-fetch": "^2.0.1" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /fetch-tracks/src/actions/auth.js: -------------------------------------------------------------------------------- 1 | import SoundCloud from 'soundcloud'; 2 | import {ActionTypes} from '../core/constants'; 3 | import {setTracks} from '../actions/track'; 4 | 5 | const API_HOST = '//api.soundcloud.com'; 6 | 7 | export function auth() { 8 | return (dispatch) => { 9 | SoundCloud.connect().then((session) => { 10 | dispatch(fetchMe(session)); 11 | dispatch(fetchTracks(session)); 12 | }); 13 | } 14 | } 15 | 16 | function fetchMe(session) { 17 | return (dispatch) => { 18 | fetch(`${API_HOST}/me?oauth_token=${session.oauth_token}`) 19 | .then((res) => res.json()) 20 | .then((user) => { 21 | dispatch(setMe(user)); 22 | }); 23 | } 24 | } 25 | 26 | function setMe(user) { 27 | return {type: ActionTypes.ME_SET, user} 28 | } 29 | 30 | function fetchTracks(session) { 31 | return (dispatch) => { 32 | fetch(`${API_HOST}/me/activities?limit=20&offset=0&oauth_token=${session.oauth_token}`) 33 | .then((res) => res.json()) 34 | .then((data) => { 35 | dispatch(setTracks(data.collection)); 36 | }); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /fetch-tracks/src/actions/index.js: -------------------------------------------------------------------------------- 1 | import {auth} from './auth'; 2 | import {setTracks, play} from './track'; 3 | 4 | export { 5 | auth, 6 | play, 7 | setTracks 8 | }; 9 | -------------------------------------------------------------------------------- /fetch-tracks/src/actions/track.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | export function setTracks(tracks) { 4 | return { 5 | type: ActionTypes.TRACKS_SET, 6 | tracks 7 | }; 8 | }; 9 | 10 | export function play(track) { 11 | return { 12 | type: ActionTypes.TRACK_PLAY, 13 | track 14 | }; 15 | } 16 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/App/App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import injectTapEventPlugin from 'react-tap-event-plugin'; 3 | import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; 4 | 5 | injectTapEventPlugin(); 6 | 7 | export default class App extends Component { 8 | 9 | render() { 10 | return ( 11 | 12 |
{this.props.children}
13 |
14 | ) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/App/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholicguy/react-redux-tutorial/d568f526d0551c88db551bed6c1550bc6d4573ca/fetch-tracks/src/components/App/App.spec.js -------------------------------------------------------------------------------- /fetch-tracks/src/components/App/index.js: -------------------------------------------------------------------------------- 1 | import App from './App'; 2 | 3 | export default App; 4 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/Callback/Callback.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | 3 | const TIME_OUT = 100 4 | 5 | export default class Callback extends Component { 6 | 7 | componentDidMount() { 8 | setTimeout(opener.SC.connectCallback, TIME_OUT); 9 | } 10 | 11 | render() { 12 | return ( 13 |
14 |

This page will close soon.

15 |
16 | ) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/Callback/Callback.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholicguy/react-redux-tutorial/d568f526d0551c88db551bed6c1550bc6d4573ca/fetch-tracks/src/components/Callback/Callback.spec.js -------------------------------------------------------------------------------- /fetch-tracks/src/components/Callback/index.js: -------------------------------------------------------------------------------- 1 | import Callback from './Callback'; 2 | 3 | export default Callback; 4 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/TrackList/Track.js: -------------------------------------------------------------------------------- 1 | import React, {PropTypes, Component} from 'react'; 2 | 3 | export default class Track extends Component { 4 | static propTypes = { 5 | track: PropTypes.object.isRequired, 6 | play: PropTypes.func.isRequired 7 | } 8 | 9 | _play() { 10 | this.props.play(this.props.track); 11 | } 12 | 13 | render() { 14 | const {origin: {artwork_url, title}} = this.props.track 15 | return ( 16 |
17 | 18 | {title} 19 | 20 |
21 | ) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/TrackList/Track.spec.js: -------------------------------------------------------------------------------- 1 | import Track from './Track'; 2 | import {shallow} from 'enzyme'; 3 | 4 | describe('Track', () => { 5 | 6 | it('shows track title', () => { 7 | const props = { 8 | track: {origin: {title: 'foo'}} 9 | } 10 | const element = shallow(); 11 | 12 | expect(element.contains('foo')).to.be.true; 13 | }) 14 | 15 | }); 16 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/TrackList/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | import Track from './Track'; 3 | 4 | export default class TrackList extends Component { 5 | static propTypes = { 6 | tracks: PropTypes.object, 7 | user: PropTypes.object, 8 | clientId: PropTypes.string, 9 | auth: PropTypes.func, 10 | play: PropTypes.func 11 | } 12 | 13 | static defaultProps = { 14 | tracks: [] 15 | } 16 | 17 | componentDidUpdate() { 18 | const player = this.player; 19 | if (player) { 20 | if (this.props.tracks.activeTrack) { 21 | player.play(); 22 | } else { 23 | player.pause(); 24 | } 25 | } 26 | } 27 | 28 | render() { 29 | const {clientId, tracks: {activeTrack, tracks}} = this.props; 30 | 31 | return ( 32 |
33 |
34 | { 35 | this.props.user 36 | ?
Hello {this.props.user.full_name}
37 | : 38 | } 39 |
40 |
41 | { 42 | tracks.map((track, key) => { 43 | return ( 44 | 45 | ) 46 | }) 47 | } 48 |
49 |
50 | {activeTrack && ( 51 | 56 | )} 57 |
58 |
59 | ) 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/TrackList/TrackList.spec.js: -------------------------------------------------------------------------------- 1 | import TrackList from './TrackList'; 2 | import Track from './Track'; 3 | import {shallow} from 'enzyme'; 4 | 5 | describe('TrackList', () => { 6 | 7 | it('shows two component', () => { 8 | const props = { 9 | tracks: { 10 | tracks: [{ origin: { id: 1, title: 'foo' }}, { origin: { id: 2, title: 'bar' }}], 11 | activeTrack: null 12 | } 13 | }; 14 | const element = shallow(); 15 | 16 | expect(element.find(Track)).to.have.length(2); 17 | }); 18 | 19 | }); 20 | -------------------------------------------------------------------------------- /fetch-tracks/src/components/TrackList/index.js: -------------------------------------------------------------------------------- 1 | import {connect} from 'react-redux'; 2 | import TrackList from './TrackList'; 3 | import {CLIENT_ID} from '../../config'; 4 | import {auth, play} from '../../actions'; 5 | 6 | export default connect(({tracks, auth}) => ({tracks, user: auth.user, clientId: CLIENT_ID}), {auth, play})(TrackList); 7 | -------------------------------------------------------------------------------- /fetch-tracks/src/config.js: -------------------------------------------------------------------------------- 1 | export const CLIENT_ID = __CLIENT_ID__; 2 | export const REDIRECT_URI = __REDIRECT_URI__ ; 3 | -------------------------------------------------------------------------------- /fetch-tracks/src/core/constants.js: -------------------------------------------------------------------------------- 1 | export const ActionTypes = { 2 | TRACKS_SET: 'TRACKS_SET', 3 | TRACK_PLAY: 'TRACK_PLAY', 4 | 5 | ME_SET: 'ME_SET' 6 | } 7 | -------------------------------------------------------------------------------- /fetch-tracks/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /fetch-tracks/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import {Provider} from 'react-redux'; 4 | import SoundCloud from 'soundcloud'; 5 | import {Router, browserHistory} from 'react-router' 6 | import {syncHistoryWithStore} from 'react-router-redux' 7 | import {configureStore} from './store'; 8 | import {CLIENT_ID, REDIRECT_URI} from './config'; 9 | import createRoutes from './routes'; 10 | 11 | SoundCloud.initialize({client_id: CLIENT_ID, redirect_uri: REDIRECT_URI}) 12 | 13 | const store = configureStore(); 14 | const history = syncHistoryWithStore(browserHistory, store); 15 | const routes = createRoutes(); 16 | 17 | ReactDOM.render( 18 | 19 | 20 | , 21 | document.getElementById('app') 22 | ); 23 | -------------------------------------------------------------------------------- /fetch-tracks/src/reducers/auth.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = {}; 4 | 5 | export default function(state = initialState, {type, user}) { 6 | switch (type) { 7 | case ActionTypes.ME_SET: 8 | return {...state, user}; 9 | } 10 | 11 | return state; 12 | } 13 | -------------------------------------------------------------------------------- /fetch-tracks/src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import {combineReducers} from 'redux'; 2 | import {routerReducer} from 'react-router-redux'; 3 | import tracks from './tracks'; 4 | import auth from './auth'; 5 | 6 | export default combineReducers({ 7 | tracks, 8 | auth, 9 | routing: routerReducer 10 | }); 11 | -------------------------------------------------------------------------------- /fetch-tracks/src/reducers/tracks.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = { 4 | tracks: [], 5 | activeTrack: null 6 | }; 7 | 8 | export default function(state = initialState, action) { 9 | switch (action.type) { 10 | case ActionTypes.TRACKS_SET: 11 | return setTracks(state, action); 12 | case ActionTypes.TRACK_PLAY: 13 | return setActiveTrack(state, action) 14 | } 15 | 16 | return state; 17 | } 18 | 19 | function setTracks(state, action) { 20 | const {tracks} = action; 21 | return {...state, tracks}; 22 | } 23 | 24 | function setActiveTrack(state, action) { 25 | const {track} = action; 26 | return {...state, activeTrack: track}; 27 | } 28 | -------------------------------------------------------------------------------- /fetch-tracks/src/routes.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {Route, IndexRoute} from 'react-router'; 3 | 4 | import App from './components/App'; 5 | import TrackList from './components/TrackList'; 6 | import Callback from './components/Callback'; 7 | 8 | export default function createRoutes() { 9 | return ( 10 | 11 | 12 | 13 | 14 | 15 | ) 16 | } 17 | -------------------------------------------------------------------------------- /fetch-tracks/src/store.js: -------------------------------------------------------------------------------- 1 | import {createStore, applyMiddleware} from 'redux'; 2 | import createLogger from 'redux-logger'; 3 | import {browserHistory} from 'react-router'; 4 | import {routerMiddleware} from 'react-router-redux'; 5 | import thunk from 'redux-thunk'; 6 | import rootReducer from './reducers/index'; 7 | 8 | const logger = createLogger(); 9 | const router = routerMiddleware(browserHistory); 10 | 11 | const createStoreWithMiddleware = applyMiddleware(thunk, router, logger)(createStore); 12 | 13 | export function configureStore(initialState) { 14 | return createStoreWithMiddleware(rootReducer, initialState); 15 | } 16 | -------------------------------------------------------------------------------- /fetch-tracks/test/setup.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {expect} from 'chai'; 3 | import jsdom from 'jsdom'; 4 | 5 | const document = jsdom.jsdom(''); 6 | const window = document.defaultView; 7 | 8 | global.document = document; 9 | global.window = window; 10 | 11 | Object.keys(window).forEach((key) => { 12 | if (!(key in global)) { 13 | global[key] = window[key]; 14 | } 15 | }); 16 | 17 | global.React = React; 18 | global.expect = expect; 19 | -------------------------------------------------------------------------------- /fetch-tracks/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true, 28 | historyApiFallback: true 29 | }, 30 | 31 | plugins: [ 32 | new HtmlWebpackPlugin({ 33 | template: 'src/index.html', 34 | inject: true 35 | }), 36 | new webpack.DefinePlugin({ 37 | __CLIENT_ID__: JSON.stringify(process.env.CLIENT_ID || ''), 38 | __REDIRECT_URI__: JSON.stringify(process.env.REDIRECT_URI || 'http://localhost:8080/callback') 39 | }), 40 | new webpack.ProvidePlugin({ 41 | 'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch' 42 | }) 43 | ] 44 | } 45 | -------------------------------------------------------------------------------- /fetch-tracks/webpack.config.prod.js: -------------------------------------------------------------------------------- 1 | : 'app.[hash].js' 2 | }, 3 | module: { 4 | loaders: [{ 5 | test: /\.js?$/, 6 | exclude: /node_modules/, 7 | loader: 'react-hot!babel' 8 | }] 9 | }, 10 | plugins: [ 11 | new webpack.DefinePlugin({ 12 | __CLIENT_ID__: JSON.stringify(process.env.CLIENT_ID || ''), 13 | __REDIRECT_URI__: JSON.stringify(process.env.REDIRECT_URI || ''), 14 | 'process.env.NODE_ENV': '"production"' 15 | }), 16 | new webpack.optimize.DedupePlugin(), 17 | new HtmlWebpackPlugin({ 18 | template: 'src/index.html', 19 | inject: true, 20 | minify: { 21 | collapseWhitespace: true, 22 | minifyCSS: true 23 | } 24 | }) 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /fetch-tracks/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abab@^1.0.3: 6 | version "1.0.3" 7 | resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d" 8 | 9 | abbrev@1: 10 | version "1.1.0" 11 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 12 | 13 | accepts@~1.3.3: 14 | version "1.3.3" 15 | resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" 16 | dependencies: 17 | mime-types "~2.1.11" 18 | negotiator "0.6.1" 19 | 20 | acorn-globals@^3.1.0: 21 | version "3.1.0" 22 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf" 23 | dependencies: 24 | acorn "^4.0.4" 25 | 26 | acorn@^3.0.0: 27 | version "3.3.0" 28 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 29 | 30 | acorn@^4.0.4: 31 | version "4.0.11" 32 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0" 33 | 34 | ajv@^4.9.1: 35 | version "4.11.5" 36 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.5.tgz#b6ee74657b993a01dce44b7944d56f485828d5bd" 37 | dependencies: 38 | co "^4.6.0" 39 | json-stable-stringify "^1.0.1" 40 | 41 | align-text@^0.1.1, align-text@^0.1.3: 42 | version "0.1.4" 43 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 44 | dependencies: 45 | kind-of "^3.0.2" 46 | longest "^1.0.1" 47 | repeat-string "^1.5.2" 48 | 49 | amdefine@>=0.0.4: 50 | version "1.0.1" 51 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 52 | 53 | ansi-regex@^2.0.0: 54 | version "2.1.1" 55 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 56 | 57 | ansi-styles@^2.2.1: 58 | version "2.2.1" 59 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 60 | 61 | anymatch@^1.3.0: 62 | version "1.3.0" 63 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.0.tgz#a3e52fa39168c825ff57b0248126ce5a8ff95507" 64 | dependencies: 65 | arrify "^1.0.0" 66 | micromatch "^2.1.5" 67 | 68 | aproba@^1.0.3: 69 | version "1.1.1" 70 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.1.tgz#95d3600f07710aa0e9298c726ad5ecf2eacbabab" 71 | 72 | are-we-there-yet@~1.1.2: 73 | version "1.1.2" 74 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz#80e470e95a084794fe1899262c5667c6e88de1b3" 75 | dependencies: 76 | delegates "^1.0.0" 77 | readable-stream "^2.0.0 || ^1.1.13" 78 | 79 | arr-diff@^2.0.0: 80 | version "2.0.0" 81 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 82 | dependencies: 83 | arr-flatten "^1.0.1" 84 | 85 | arr-flatten@^1.0.1: 86 | version "1.0.1" 87 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.0.1.tgz#e5ffe54d45e19f32f216e91eb99c8ce892bb604b" 88 | 89 | array-equal@^1.0.0: 90 | version "1.0.0" 91 | resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 92 | 93 | array-flatten@1.1.1: 94 | version "1.1.1" 95 | resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" 96 | 97 | array-unique@^0.2.1: 98 | version "0.2.1" 99 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 100 | 101 | arrify@^1.0.0: 102 | version "1.0.1" 103 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 104 | 105 | asap@~2.0.3: 106 | version "2.0.5" 107 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f" 108 | 109 | asn1@~0.2.3: 110 | version "0.2.3" 111 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 112 | 113 | assert-plus@1.0.0, assert-plus@^1.0.0: 114 | version "1.0.0" 115 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 116 | 117 | assert-plus@^0.2.0: 118 | version "0.2.0" 119 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 120 | 121 | assert@^1.1.1: 122 | version "1.4.1" 123 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 124 | dependencies: 125 | util "0.10.3" 126 | 127 | assertion-error@^1.0.1: 128 | version "1.0.2" 129 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c" 130 | 131 | async-each@^1.0.0: 132 | version "1.0.1" 133 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 134 | 135 | async@^0.9.0: 136 | version "0.9.2" 137 | resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 138 | 139 | async@^1.3.0: 140 | version "1.5.2" 141 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 142 | 143 | async@~0.2.6: 144 | version "0.2.10" 145 | resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" 146 | 147 | asynckit@^0.4.0: 148 | version "0.4.0" 149 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 150 | 151 | aws-sign2@~0.6.0: 152 | version "0.6.0" 153 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 154 | 155 | aws4@^1.2.1: 156 | version "1.6.0" 157 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 158 | 159 | babel-code-frame@^6.22.0: 160 | version "6.22.0" 161 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" 162 | dependencies: 163 | chalk "^1.1.0" 164 | esutils "^2.0.2" 165 | js-tokens "^3.0.0" 166 | 167 | babel-core@^6.10.4, babel-core@^6.24.0: 168 | version "6.24.0" 169 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.24.0.tgz#8f36a0a77f5c155aed6f920b844d23ba56742a02" 170 | dependencies: 171 | babel-code-frame "^6.22.0" 172 | babel-generator "^6.24.0" 173 | babel-helpers "^6.23.0" 174 | babel-messages "^6.23.0" 175 | babel-register "^6.24.0" 176 | babel-runtime "^6.22.0" 177 | babel-template "^6.23.0" 178 | babel-traverse "^6.23.1" 179 | babel-types "^6.23.0" 180 | babylon "^6.11.0" 181 | convert-source-map "^1.1.0" 182 | debug "^2.1.1" 183 | json5 "^0.5.0" 184 | lodash "^4.2.0" 185 | minimatch "^3.0.2" 186 | path-is-absolute "^1.0.0" 187 | private "^0.1.6" 188 | slash "^1.0.0" 189 | source-map "^0.5.0" 190 | 191 | babel-generator@^6.24.0: 192 | version "6.24.0" 193 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.24.0.tgz#eba270a8cc4ce6e09a61be43465d7c62c1f87c56" 194 | dependencies: 195 | babel-messages "^6.23.0" 196 | babel-runtime "^6.22.0" 197 | babel-types "^6.23.0" 198 | detect-indent "^4.0.0" 199 | jsesc "^1.3.0" 200 | lodash "^4.2.0" 201 | source-map "^0.5.0" 202 | trim-right "^1.0.1" 203 | 204 | babel-helper-bindify-decorators@^6.22.0: 205 | version "6.22.0" 206 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952" 207 | dependencies: 208 | babel-runtime "^6.22.0" 209 | babel-traverse "^6.22.0" 210 | babel-types "^6.22.0" 211 | 212 | babel-helper-builder-binary-assignment-operator-visitor@^6.22.0: 213 | version "6.22.0" 214 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd" 215 | dependencies: 216 | babel-helper-explode-assignable-expression "^6.22.0" 217 | babel-runtime "^6.22.0" 218 | babel-types "^6.22.0" 219 | 220 | babel-helper-builder-react-jsx@^6.23.0: 221 | version "6.23.0" 222 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b" 223 | dependencies: 224 | babel-runtime "^6.22.0" 225 | babel-types "^6.23.0" 226 | esutils "^2.0.0" 227 | lodash "^4.2.0" 228 | 229 | babel-helper-call-delegate@^6.22.0: 230 | version "6.22.0" 231 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef" 232 | dependencies: 233 | babel-helper-hoist-variables "^6.22.0" 234 | babel-runtime "^6.22.0" 235 | babel-traverse "^6.22.0" 236 | babel-types "^6.22.0" 237 | 238 | babel-helper-define-map@^6.23.0: 239 | version "6.23.0" 240 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7" 241 | dependencies: 242 | babel-helper-function-name "^6.23.0" 243 | babel-runtime "^6.22.0" 244 | babel-types "^6.23.0" 245 | lodash "^4.2.0" 246 | 247 | babel-helper-explode-assignable-expression@^6.22.0: 248 | version "6.22.0" 249 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478" 250 | dependencies: 251 | babel-runtime "^6.22.0" 252 | babel-traverse "^6.22.0" 253 | babel-types "^6.22.0" 254 | 255 | babel-helper-explode-class@^6.22.0: 256 | version "6.22.0" 257 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b" 258 | dependencies: 259 | babel-helper-bindify-decorators "^6.22.0" 260 | babel-runtime "^6.22.0" 261 | babel-traverse "^6.22.0" 262 | babel-types "^6.22.0" 263 | 264 | babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0: 265 | version "6.23.0" 266 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6" 267 | dependencies: 268 | babel-helper-get-function-arity "^6.22.0" 269 | babel-runtime "^6.22.0" 270 | babel-template "^6.23.0" 271 | babel-traverse "^6.23.0" 272 | babel-types "^6.23.0" 273 | 274 | babel-helper-get-function-arity@^6.22.0: 275 | version "6.22.0" 276 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce" 277 | dependencies: 278 | babel-runtime "^6.22.0" 279 | babel-types "^6.22.0" 280 | 281 | babel-helper-hoist-variables@^6.22.0: 282 | version "6.22.0" 283 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72" 284 | dependencies: 285 | babel-runtime "^6.22.0" 286 | babel-types "^6.22.0" 287 | 288 | babel-helper-optimise-call-expression@^6.23.0: 289 | version "6.23.0" 290 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5" 291 | dependencies: 292 | babel-runtime "^6.22.0" 293 | babel-types "^6.23.0" 294 | 295 | babel-helper-regex@^6.22.0: 296 | version "6.22.0" 297 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d" 298 | dependencies: 299 | babel-runtime "^6.22.0" 300 | babel-types "^6.22.0" 301 | lodash "^4.2.0" 302 | 303 | babel-helper-remap-async-to-generator@^6.22.0: 304 | version "6.22.0" 305 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383" 306 | dependencies: 307 | babel-helper-function-name "^6.22.0" 308 | babel-runtime "^6.22.0" 309 | babel-template "^6.22.0" 310 | babel-traverse "^6.22.0" 311 | babel-types "^6.22.0" 312 | 313 | babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0: 314 | version "6.23.0" 315 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd" 316 | dependencies: 317 | babel-helper-optimise-call-expression "^6.23.0" 318 | babel-messages "^6.23.0" 319 | babel-runtime "^6.22.0" 320 | babel-template "^6.23.0" 321 | babel-traverse "^6.23.0" 322 | babel-types "^6.23.0" 323 | 324 | babel-helpers@^6.23.0: 325 | version "6.23.0" 326 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992" 327 | dependencies: 328 | babel-runtime "^6.22.0" 329 | babel-template "^6.23.0" 330 | 331 | babel-loader@^6.2.4: 332 | version "6.4.1" 333 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 334 | dependencies: 335 | find-cache-dir "^0.1.1" 336 | loader-utils "^0.2.16" 337 | mkdirp "^0.5.1" 338 | object-assign "^4.0.1" 339 | 340 | babel-messages@^6.23.0: 341 | version "6.23.0" 342 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 343 | dependencies: 344 | babel-runtime "^6.22.0" 345 | 346 | babel-plugin-check-es2015-constants@^6.22.0: 347 | version "6.22.0" 348 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 349 | dependencies: 350 | babel-runtime "^6.22.0" 351 | 352 | babel-plugin-syntax-async-functions@^6.8.0: 353 | version "6.13.0" 354 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 355 | 356 | babel-plugin-syntax-async-generators@^6.5.0: 357 | version "6.13.0" 358 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 359 | 360 | babel-plugin-syntax-class-constructor-call@^6.18.0: 361 | version "6.18.0" 362 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-constructor-call/-/babel-plugin-syntax-class-constructor-call-6.18.0.tgz#9cb9d39fe43c8600bec8146456ddcbd4e1a76416" 363 | 364 | babel-plugin-syntax-class-properties@^6.8.0: 365 | version "6.13.0" 366 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 367 | 368 | babel-plugin-syntax-decorators@^6.13.0: 369 | version "6.13.0" 370 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 371 | 372 | babel-plugin-syntax-dynamic-import@^6.18.0: 373 | version "6.18.0" 374 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 375 | 376 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 377 | version "6.13.0" 378 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 379 | 380 | babel-plugin-syntax-export-extensions@^6.8.0: 381 | version "6.13.0" 382 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721" 383 | 384 | babel-plugin-syntax-flow@^6.18.0: 385 | version "6.18.0" 386 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 387 | 388 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 389 | version "6.18.0" 390 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 391 | 392 | babel-plugin-syntax-object-rest-spread@^6.8.0: 393 | version "6.13.0" 394 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 395 | 396 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 397 | version "6.22.0" 398 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 399 | 400 | babel-plugin-transform-async-generator-functions@^6.22.0: 401 | version "6.22.0" 402 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46" 403 | dependencies: 404 | babel-helper-remap-async-to-generator "^6.22.0" 405 | babel-plugin-syntax-async-generators "^6.5.0" 406 | babel-runtime "^6.22.0" 407 | 408 | babel-plugin-transform-async-to-generator@^6.22.0: 409 | version "6.22.0" 410 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e" 411 | dependencies: 412 | babel-helper-remap-async-to-generator "^6.22.0" 413 | babel-plugin-syntax-async-functions "^6.8.0" 414 | babel-runtime "^6.22.0" 415 | 416 | babel-plugin-transform-class-constructor-call@^6.22.0: 417 | version "6.22.0" 418 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz#11a4d2216abb5b0eef298b493748f4f2f4869120" 419 | dependencies: 420 | babel-plugin-syntax-class-constructor-call "^6.18.0" 421 | babel-runtime "^6.22.0" 422 | babel-template "^6.22.0" 423 | 424 | babel-plugin-transform-class-properties@^6.22.0: 425 | version "6.23.0" 426 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b" 427 | dependencies: 428 | babel-helper-function-name "^6.23.0" 429 | babel-plugin-syntax-class-properties "^6.8.0" 430 | babel-runtime "^6.22.0" 431 | babel-template "^6.23.0" 432 | 433 | babel-plugin-transform-decorators@^6.22.0: 434 | version "6.22.0" 435 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c" 436 | dependencies: 437 | babel-helper-explode-class "^6.22.0" 438 | babel-plugin-syntax-decorators "^6.13.0" 439 | babel-runtime "^6.22.0" 440 | babel-template "^6.22.0" 441 | babel-types "^6.22.0" 442 | 443 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 444 | version "6.22.0" 445 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 446 | dependencies: 447 | babel-runtime "^6.22.0" 448 | 449 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 450 | version "6.22.0" 451 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 452 | dependencies: 453 | babel-runtime "^6.22.0" 454 | 455 | babel-plugin-transform-es2015-block-scoping@^6.22.0: 456 | version "6.23.0" 457 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" 458 | dependencies: 459 | babel-runtime "^6.22.0" 460 | babel-template "^6.23.0" 461 | babel-traverse "^6.23.0" 462 | babel-types "^6.23.0" 463 | lodash "^4.2.0" 464 | 465 | babel-plugin-transform-es2015-classes@^6.22.0: 466 | version "6.23.0" 467 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" 468 | dependencies: 469 | babel-helper-define-map "^6.23.0" 470 | babel-helper-function-name "^6.23.0" 471 | babel-helper-optimise-call-expression "^6.23.0" 472 | babel-helper-replace-supers "^6.23.0" 473 | babel-messages "^6.23.0" 474 | babel-runtime "^6.22.0" 475 | babel-template "^6.23.0" 476 | babel-traverse "^6.23.0" 477 | babel-types "^6.23.0" 478 | 479 | babel-plugin-transform-es2015-computed-properties@^6.22.0: 480 | version "6.22.0" 481 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" 482 | dependencies: 483 | babel-runtime "^6.22.0" 484 | babel-template "^6.22.0" 485 | 486 | babel-plugin-transform-es2015-destructuring@^6.22.0: 487 | version "6.23.0" 488 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 489 | dependencies: 490 | babel-runtime "^6.22.0" 491 | 492 | babel-plugin-transform-es2015-duplicate-keys@^6.22.0: 493 | version "6.22.0" 494 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" 495 | dependencies: 496 | babel-runtime "^6.22.0" 497 | babel-types "^6.22.0" 498 | 499 | babel-plugin-transform-es2015-for-of@^6.22.0: 500 | version "6.23.0" 501 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 502 | dependencies: 503 | babel-runtime "^6.22.0" 504 | 505 | babel-plugin-transform-es2015-function-name@^6.22.0: 506 | version "6.22.0" 507 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" 508 | dependencies: 509 | babel-helper-function-name "^6.22.0" 510 | babel-runtime "^6.22.0" 511 | babel-types "^6.22.0" 512 | 513 | babel-plugin-transform-es2015-literals@^6.22.0: 514 | version "6.22.0" 515 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 516 | dependencies: 517 | babel-runtime "^6.22.0" 518 | 519 | babel-plugin-transform-es2015-modules-amd@^6.24.0: 520 | version "6.24.0" 521 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" 522 | dependencies: 523 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 524 | babel-runtime "^6.22.0" 525 | babel-template "^6.22.0" 526 | 527 | babel-plugin-transform-es2015-modules-commonjs@^6.24.0: 528 | version "6.24.0" 529 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" 530 | dependencies: 531 | babel-plugin-transform-strict-mode "^6.22.0" 532 | babel-runtime "^6.22.0" 533 | babel-template "^6.23.0" 534 | babel-types "^6.23.0" 535 | 536 | babel-plugin-transform-es2015-modules-systemjs@^6.22.0: 537 | version "6.23.0" 538 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" 539 | dependencies: 540 | babel-helper-hoist-variables "^6.22.0" 541 | babel-runtime "^6.22.0" 542 | babel-template "^6.23.0" 543 | 544 | babel-plugin-transform-es2015-modules-umd@^6.24.0: 545 | version "6.24.0" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" 547 | dependencies: 548 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 549 | babel-runtime "^6.22.0" 550 | babel-template "^6.23.0" 551 | 552 | babel-plugin-transform-es2015-object-super@^6.22.0: 553 | version "6.22.0" 554 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" 555 | dependencies: 556 | babel-helper-replace-supers "^6.22.0" 557 | babel-runtime "^6.22.0" 558 | 559 | babel-plugin-transform-es2015-parameters@^6.22.0: 560 | version "6.23.0" 561 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" 562 | dependencies: 563 | babel-helper-call-delegate "^6.22.0" 564 | babel-helper-get-function-arity "^6.22.0" 565 | babel-runtime "^6.22.0" 566 | babel-template "^6.23.0" 567 | babel-traverse "^6.23.0" 568 | babel-types "^6.23.0" 569 | 570 | babel-plugin-transform-es2015-shorthand-properties@^6.22.0: 571 | version "6.22.0" 572 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" 573 | dependencies: 574 | babel-runtime "^6.22.0" 575 | babel-types "^6.22.0" 576 | 577 | babel-plugin-transform-es2015-spread@^6.22.0: 578 | version "6.22.0" 579 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 580 | dependencies: 581 | babel-runtime "^6.22.0" 582 | 583 | babel-plugin-transform-es2015-sticky-regex@^6.22.0: 584 | version "6.22.0" 585 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" 586 | dependencies: 587 | babel-helper-regex "^6.22.0" 588 | babel-runtime "^6.22.0" 589 | babel-types "^6.22.0" 590 | 591 | babel-plugin-transform-es2015-template-literals@^6.22.0: 592 | version "6.22.0" 593 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 594 | dependencies: 595 | babel-runtime "^6.22.0" 596 | 597 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 598 | version "6.23.0" 599 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 600 | dependencies: 601 | babel-runtime "^6.22.0" 602 | 603 | babel-plugin-transform-es2015-unicode-regex@^6.22.0: 604 | version "6.22.0" 605 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" 606 | dependencies: 607 | babel-helper-regex "^6.22.0" 608 | babel-runtime "^6.22.0" 609 | regexpu-core "^2.0.0" 610 | 611 | babel-plugin-transform-exponentiation-operator@^6.22.0: 612 | version "6.22.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d" 614 | dependencies: 615 | babel-helper-builder-binary-assignment-operator-visitor "^6.22.0" 616 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 617 | babel-runtime "^6.22.0" 618 | 619 | babel-plugin-transform-export-extensions@^6.22.0: 620 | version "6.22.0" 621 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653" 622 | dependencies: 623 | babel-plugin-syntax-export-extensions "^6.8.0" 624 | babel-runtime "^6.22.0" 625 | 626 | babel-plugin-transform-flow-strip-types@^6.22.0: 627 | version "6.22.0" 628 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 629 | dependencies: 630 | babel-plugin-syntax-flow "^6.18.0" 631 | babel-runtime "^6.22.0" 632 | 633 | babel-plugin-transform-object-rest-spread@^6.22.0: 634 | version "6.23.0" 635 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921" 636 | dependencies: 637 | babel-plugin-syntax-object-rest-spread "^6.8.0" 638 | babel-runtime "^6.22.0" 639 | 640 | babel-plugin-transform-react-display-name@^6.23.0: 641 | version "6.23.0" 642 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37" 643 | dependencies: 644 | babel-runtime "^6.22.0" 645 | 646 | babel-plugin-transform-react-jsx-self@^6.22.0: 647 | version "6.22.0" 648 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 649 | dependencies: 650 | babel-plugin-syntax-jsx "^6.8.0" 651 | babel-runtime "^6.22.0" 652 | 653 | babel-plugin-transform-react-jsx-source@^6.22.0: 654 | version "6.22.0" 655 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 656 | dependencies: 657 | babel-plugin-syntax-jsx "^6.8.0" 658 | babel-runtime "^6.22.0" 659 | 660 | babel-plugin-transform-react-jsx@^6.23.0: 661 | version "6.23.0" 662 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470" 663 | dependencies: 664 | babel-helper-builder-react-jsx "^6.23.0" 665 | babel-plugin-syntax-jsx "^6.8.0" 666 | babel-runtime "^6.22.0" 667 | 668 | babel-plugin-transform-regenerator@^6.22.0: 669 | version "6.22.0" 670 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" 671 | dependencies: 672 | regenerator-transform "0.9.8" 673 | 674 | babel-plugin-transform-strict-mode@^6.22.0: 675 | version "6.22.0" 676 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c" 677 | dependencies: 678 | babel-runtime "^6.22.0" 679 | babel-types "^6.22.0" 680 | 681 | babel-preset-es2015@^6.9.0: 682 | version "6.24.0" 683 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.0.tgz#c162d68b1932696e036cd3110dc1ccd303d2673a" 684 | dependencies: 685 | babel-plugin-check-es2015-constants "^6.22.0" 686 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 687 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 688 | babel-plugin-transform-es2015-block-scoping "^6.22.0" 689 | babel-plugin-transform-es2015-classes "^6.22.0" 690 | babel-plugin-transform-es2015-computed-properties "^6.22.0" 691 | babel-plugin-transform-es2015-destructuring "^6.22.0" 692 | babel-plugin-transform-es2015-duplicate-keys "^6.22.0" 693 | babel-plugin-transform-es2015-for-of "^6.22.0" 694 | babel-plugin-transform-es2015-function-name "^6.22.0" 695 | babel-plugin-transform-es2015-literals "^6.22.0" 696 | babel-plugin-transform-es2015-modules-amd "^6.24.0" 697 | babel-plugin-transform-es2015-modules-commonjs "^6.24.0" 698 | babel-plugin-transform-es2015-modules-systemjs "^6.22.0" 699 | babel-plugin-transform-es2015-modules-umd "^6.24.0" 700 | babel-plugin-transform-es2015-object-super "^6.22.0" 701 | babel-plugin-transform-es2015-parameters "^6.22.0" 702 | babel-plugin-transform-es2015-shorthand-properties "^6.22.0" 703 | babel-plugin-transform-es2015-spread "^6.22.0" 704 | babel-plugin-transform-es2015-sticky-regex "^6.22.0" 705 | babel-plugin-transform-es2015-template-literals "^6.22.0" 706 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 707 | babel-plugin-transform-es2015-unicode-regex "^6.22.0" 708 | babel-plugin-transform-regenerator "^6.22.0" 709 | 710 | babel-preset-flow@^6.23.0: 711 | version "6.23.0" 712 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 713 | dependencies: 714 | babel-plugin-transform-flow-strip-types "^6.22.0" 715 | 716 | babel-preset-react@^6.11.1: 717 | version "6.23.0" 718 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.23.0.tgz#eb7cee4de98a3f94502c28565332da9819455195" 719 | dependencies: 720 | babel-plugin-syntax-jsx "^6.3.13" 721 | babel-plugin-transform-react-display-name "^6.23.0" 722 | babel-plugin-transform-react-jsx "^6.23.0" 723 | babel-plugin-transform-react-jsx-self "^6.22.0" 724 | babel-plugin-transform-react-jsx-source "^6.22.0" 725 | babel-preset-flow "^6.23.0" 726 | 727 | babel-preset-stage-1@^6.5.0: 728 | version "6.22.0" 729 | resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz#7da05bffea6ad5a10aef93e320cfc6dd465dbc1a" 730 | dependencies: 731 | babel-plugin-transform-class-constructor-call "^6.22.0" 732 | babel-plugin-transform-export-extensions "^6.22.0" 733 | babel-preset-stage-2 "^6.22.0" 734 | 735 | babel-preset-stage-2@^6.11.0, babel-preset-stage-2@^6.22.0: 736 | version "6.22.0" 737 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07" 738 | dependencies: 739 | babel-plugin-syntax-dynamic-import "^6.18.0" 740 | babel-plugin-transform-class-properties "^6.22.0" 741 | babel-plugin-transform-decorators "^6.22.0" 742 | babel-preset-stage-3 "^6.22.0" 743 | 744 | babel-preset-stage-3@^6.22.0: 745 | version "6.22.0" 746 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e" 747 | dependencies: 748 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 749 | babel-plugin-transform-async-generator-functions "^6.22.0" 750 | babel-plugin-transform-async-to-generator "^6.22.0" 751 | babel-plugin-transform-exponentiation-operator "^6.22.0" 752 | babel-plugin-transform-object-rest-spread "^6.22.0" 753 | 754 | babel-register@^6.24.0: 755 | version "6.24.0" 756 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.0.tgz#5e89f8463ba9970356d02eb07dabe3308b080cfd" 757 | dependencies: 758 | babel-core "^6.24.0" 759 | babel-runtime "^6.22.0" 760 | core-js "^2.4.0" 761 | home-or-tmp "^2.0.0" 762 | lodash "^4.2.0" 763 | mkdirp "^0.5.1" 764 | source-map-support "^0.4.2" 765 | 766 | babel-runtime@^6.18.0, babel-runtime@^6.20.0, babel-runtime@^6.22.0: 767 | version "6.23.0" 768 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b" 769 | dependencies: 770 | core-js "^2.4.0" 771 | regenerator-runtime "^0.10.0" 772 | 773 | babel-template@^6.22.0, babel-template@^6.23.0: 774 | version "6.23.0" 775 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638" 776 | dependencies: 777 | babel-runtime "^6.22.0" 778 | babel-traverse "^6.23.0" 779 | babel-types "^6.23.0" 780 | babylon "^6.11.0" 781 | lodash "^4.2.0" 782 | 783 | babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1: 784 | version "6.23.1" 785 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48" 786 | dependencies: 787 | babel-code-frame "^6.22.0" 788 | babel-messages "^6.23.0" 789 | babel-runtime "^6.22.0" 790 | babel-types "^6.23.0" 791 | babylon "^6.15.0" 792 | debug "^2.2.0" 793 | globals "^9.0.0" 794 | invariant "^2.2.0" 795 | lodash "^4.2.0" 796 | 797 | babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0: 798 | version "6.23.0" 799 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf" 800 | dependencies: 801 | babel-runtime "^6.22.0" 802 | esutils "^2.0.2" 803 | lodash "^4.2.0" 804 | to-fast-properties "^1.0.1" 805 | 806 | babylon@^6.11.0, babylon@^6.15.0: 807 | version "6.16.1" 808 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" 809 | 810 | balanced-match@^0.4.1: 811 | version "0.4.2" 812 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" 813 | 814 | base64-js@^1.0.2: 815 | version "1.2.0" 816 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" 817 | 818 | batch@0.5.3: 819 | version "0.5.3" 820 | resolved "https://registry.yarnpkg.com/batch/-/batch-0.5.3.tgz#3f3414f380321743bfc1042f9a83ff1d5824d464" 821 | 822 | bcrypt-pbkdf@^1.0.0: 823 | version "1.0.1" 824 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 825 | dependencies: 826 | tweetnacl "^0.14.3" 827 | 828 | big.js@^3.1.3: 829 | version "3.1.3" 830 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 831 | 832 | binary-extensions@^1.0.0: 833 | version "1.8.0" 834 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" 835 | 836 | block-stream@*: 837 | version "0.0.9" 838 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 839 | dependencies: 840 | inherits "~2.0.0" 841 | 842 | bluebird@^3.4.7: 843 | version "3.5.0" 844 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 845 | 846 | boolbase@~1.0.0: 847 | version "1.0.0" 848 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 849 | 850 | boom@2.x.x: 851 | version "2.10.1" 852 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 853 | dependencies: 854 | hoek "2.x.x" 855 | 856 | bowser@^1.0.0: 857 | version "1.6.1" 858 | resolved "https://registry.yarnpkg.com/bowser/-/bowser-1.6.1.tgz#9157e9498f456e937173a2918f3b2161e5353eb3" 859 | 860 | brace-expansion@^1.0.0: 861 | version "1.1.6" 862 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" 863 | dependencies: 864 | balanced-match "^0.4.1" 865 | concat-map "0.0.1" 866 | 867 | braces@^1.8.2: 868 | version "1.8.5" 869 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 870 | dependencies: 871 | expand-range "^1.8.1" 872 | preserve "^0.2.0" 873 | repeat-element "^1.1.2" 874 | 875 | browserify-aes@0.4.0: 876 | version "0.4.0" 877 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-0.4.0.tgz#067149b668df31c4b58533e02d01e806d8608e2c" 878 | dependencies: 879 | inherits "^2.0.1" 880 | 881 | browserify-zlib@^0.1.4: 882 | version "0.1.4" 883 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 884 | dependencies: 885 | pako "~0.2.0" 886 | 887 | buffer-shims@^1.0.0: 888 | version "1.0.0" 889 | resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" 890 | 891 | buffer@^4.9.0: 892 | version "4.9.1" 893 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 894 | dependencies: 895 | base64-js "^1.0.2" 896 | ieee754 "^1.1.4" 897 | isarray "^1.0.0" 898 | 899 | builtin-status-codes@^3.0.0: 900 | version "3.0.0" 901 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 902 | 903 | bytes@2.3.0: 904 | version "2.3.0" 905 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.3.0.tgz#d5b680a165b6201739acb611542aabc2d8ceb070" 906 | 907 | camel-case@3.0.x: 908 | version "3.0.0" 909 | resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" 910 | dependencies: 911 | no-case "^2.2.0" 912 | upper-case "^1.1.1" 913 | 914 | camelcase@^1.0.2: 915 | version "1.2.1" 916 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 917 | 918 | caseless@~0.12.0: 919 | version "0.12.0" 920 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 921 | 922 | center-align@^0.1.1: 923 | version "0.1.3" 924 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 925 | dependencies: 926 | align-text "^0.1.3" 927 | lazy-cache "^1.0.3" 928 | 929 | chai@^3.5.0: 930 | version "3.5.0" 931 | resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247" 932 | dependencies: 933 | assertion-error "^1.0.1" 934 | deep-eql "^0.1.3" 935 | type-detect "^1.0.0" 936 | 937 | chalk@^1.1.0: 938 | version "1.1.3" 939 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 940 | dependencies: 941 | ansi-styles "^2.2.1" 942 | escape-string-regexp "^1.0.2" 943 | has-ansi "^2.0.0" 944 | strip-ansi "^3.0.0" 945 | supports-color "^2.0.0" 946 | 947 | change-emitter@^0.1.2: 948 | version "0.1.3" 949 | resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.3.tgz#731c9360913855f613dd256568d50f854a8806ac" 950 | 951 | cheerio@^0.22.0: 952 | version "0.22.0" 953 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" 954 | dependencies: 955 | css-select "~1.2.0" 956 | dom-serializer "~0.1.0" 957 | entities "~1.1.1" 958 | htmlparser2 "^3.9.1" 959 | lodash.assignin "^4.0.9" 960 | lodash.bind "^4.1.4" 961 | lodash.defaults "^4.0.1" 962 | lodash.filter "^4.4.0" 963 | lodash.flatten "^4.2.0" 964 | lodash.foreach "^4.3.0" 965 | lodash.map "^4.4.0" 966 | lodash.merge "^4.4.0" 967 | lodash.pick "^4.2.1" 968 | lodash.reduce "^4.4.0" 969 | lodash.reject "^4.4.0" 970 | lodash.some "^4.4.0" 971 | 972 | chokidar@^1.0.0: 973 | version "1.6.1" 974 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" 975 | dependencies: 976 | anymatch "^1.3.0" 977 | async-each "^1.0.0" 978 | glob-parent "^2.0.0" 979 | inherits "^2.0.1" 980 | is-binary-path "^1.0.0" 981 | is-glob "^2.0.0" 982 | path-is-absolute "^1.0.0" 983 | readdirp "^2.0.0" 984 | optionalDependencies: 985 | fsevents "^1.0.0" 986 | 987 | clean-css@4.0.x: 988 | version "4.0.11" 989 | resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.0.11.tgz#a6d88bffb399420b24298db49d99a1ed067534a8" 990 | dependencies: 991 | source-map "0.5.x" 992 | 993 | cliui@^2.1.0: 994 | version "2.1.0" 995 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 996 | dependencies: 997 | center-align "^0.1.1" 998 | right-align "^0.1.1" 999 | wordwrap "0.0.2" 1000 | 1001 | clone@^1.0.2: 1002 | version "1.0.2" 1003 | resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" 1004 | 1005 | co@^4.6.0: 1006 | version "4.6.0" 1007 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1008 | 1009 | code-point-at@^1.0.0: 1010 | version "1.1.0" 1011 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 1012 | 1013 | colors@>=0.6.0: 1014 | version "1.1.2" 1015 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 1016 | 1017 | combined-stream@^1.0.5, combined-stream@~1.0.5: 1018 | version "1.0.5" 1019 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 1020 | dependencies: 1021 | delayed-stream "~1.0.0" 1022 | 1023 | commander@0.6.1: 1024 | version "0.6.1" 1025 | resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" 1026 | 1027 | commander@2.3.0: 1028 | version "2.3.0" 1029 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" 1030 | 1031 | commander@2.9.x: 1032 | version "2.9.0" 1033 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" 1034 | dependencies: 1035 | graceful-readlink ">= 1.0.0" 1036 | 1037 | commondir@^1.0.1: 1038 | version "1.0.1" 1039 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1040 | 1041 | compressible@~2.0.8: 1042 | version "2.0.10" 1043 | resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.10.tgz#feda1c7f7617912732b29bf8cf26252a20b9eecd" 1044 | dependencies: 1045 | mime-db ">= 1.27.0 < 2" 1046 | 1047 | compression@^1.5.2: 1048 | version "1.6.2" 1049 | resolved "https://registry.yarnpkg.com/compression/-/compression-1.6.2.tgz#cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3" 1050 | dependencies: 1051 | accepts "~1.3.3" 1052 | bytes "2.3.0" 1053 | compressible "~2.0.8" 1054 | debug "~2.2.0" 1055 | on-headers "~1.0.1" 1056 | vary "~1.1.0" 1057 | 1058 | concat-map@0.0.1: 1059 | version "0.0.1" 1060 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1061 | 1062 | connect-history-api-fallback@^1.3.0: 1063 | version "1.3.0" 1064 | resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" 1065 | 1066 | console-browserify@^1.1.0: 1067 | version "1.1.0" 1068 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1069 | dependencies: 1070 | date-now "^0.1.4" 1071 | 1072 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1073 | version "1.1.0" 1074 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1075 | 1076 | constants-browserify@^1.0.0: 1077 | version "1.0.0" 1078 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1079 | 1080 | content-disposition@0.5.2: 1081 | version "0.5.2" 1082 | resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" 1083 | 1084 | content-type-parser@^1.0.1: 1085 | version "1.0.1" 1086 | resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94" 1087 | 1088 | content-type@~1.0.2: 1089 | version "1.0.2" 1090 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" 1091 | 1092 | convert-source-map@^1.1.0: 1093 | version "1.5.0" 1094 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1095 | 1096 | cookie-signature@1.0.6: 1097 | version "1.0.6" 1098 | resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" 1099 | 1100 | cookie@0.3.1: 1101 | version "0.3.1" 1102 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" 1103 | 1104 | core-js@^1.0.0: 1105 | version "1.2.7" 1106 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1107 | 1108 | core-js@^2.4.0: 1109 | version "2.4.1" 1110 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" 1111 | 1112 | core-util-is@~1.0.0: 1113 | version "1.0.2" 1114 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1115 | 1116 | cryptiles@2.x.x: 1117 | version "2.0.5" 1118 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1119 | dependencies: 1120 | boom "2.x.x" 1121 | 1122 | crypto-browserify@3.3.0: 1123 | version "3.3.0" 1124 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.3.0.tgz#b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c" 1125 | dependencies: 1126 | browserify-aes "0.4.0" 1127 | pbkdf2-compat "2.0.1" 1128 | ripemd160 "0.2.0" 1129 | sha.js "2.2.6" 1130 | 1131 | css-select@^1.1.0, css-select@~1.2.0: 1132 | version "1.2.0" 1133 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" 1134 | dependencies: 1135 | boolbase "~1.0.0" 1136 | css-what "2.1" 1137 | domutils "1.5.1" 1138 | nth-check "~1.0.1" 1139 | 1140 | css-what@2.1: 1141 | version "2.1.0" 1142 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" 1143 | 1144 | cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 1145 | version "0.3.2" 1146 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b" 1147 | 1148 | "cssstyle@>= 0.2.37 < 0.3.0": 1149 | version "0.2.37" 1150 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" 1151 | dependencies: 1152 | cssom "0.3.x" 1153 | 1154 | dashdash@^1.12.0: 1155 | version "1.14.1" 1156 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1157 | dependencies: 1158 | assert-plus "^1.0.0" 1159 | 1160 | date-now@^0.1.4: 1161 | version "0.1.4" 1162 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1163 | 1164 | debug@2.2.0, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0: 1165 | version "2.2.0" 1166 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" 1167 | dependencies: 1168 | ms "0.7.1" 1169 | 1170 | debug@2.6.1: 1171 | version "2.6.1" 1172 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.1.tgz#79855090ba2c4e3115cc7d8769491d58f0491351" 1173 | dependencies: 1174 | ms "0.7.2" 1175 | 1176 | debug@2.6.3: 1177 | version "2.6.3" 1178 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" 1179 | dependencies: 1180 | ms "0.7.2" 1181 | 1182 | decamelize@^1.0.0: 1183 | version "1.2.0" 1184 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1185 | 1186 | deep-diff@0.3.4: 1187 | version "0.3.4" 1188 | resolved "https://registry.yarnpkg.com/deep-diff/-/deep-diff-0.3.4.tgz#aac5c39952236abe5f037a2349060ba01b00ae48" 1189 | 1190 | deep-eql@^0.1.3: 1191 | version "0.1.3" 1192 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2" 1193 | dependencies: 1194 | type-detect "0.1.1" 1195 | 1196 | deep-extend@~0.4.0: 1197 | version "0.4.1" 1198 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" 1199 | 1200 | deep-is@~0.1.3: 1201 | version "0.1.3" 1202 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1203 | 1204 | define-properties@^1.1.2: 1205 | version "1.1.2" 1206 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94" 1207 | dependencies: 1208 | foreach "^2.0.5" 1209 | object-keys "^1.0.8" 1210 | 1211 | delayed-stream@~1.0.0: 1212 | version "1.0.0" 1213 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1214 | 1215 | delegates@^1.0.0: 1216 | version "1.0.0" 1217 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1218 | 1219 | depd@1.1.0, depd@~1.1.0: 1220 | version "1.1.0" 1221 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" 1222 | 1223 | destroy@~1.0.4: 1224 | version "1.0.4" 1225 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 1226 | 1227 | detect-indent@^4.0.0: 1228 | version "4.0.0" 1229 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1230 | dependencies: 1231 | repeating "^2.0.0" 1232 | 1233 | diff@1.4.0: 1234 | version "1.4.0" 1235 | resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" 1236 | 1237 | dom-converter@~0.1: 1238 | version "0.1.4" 1239 | resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" 1240 | dependencies: 1241 | utila "~0.3" 1242 | 1243 | dom-serializer@0, dom-serializer@~0.1.0: 1244 | version "0.1.0" 1245 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" 1246 | dependencies: 1247 | domelementtype "~1.1.1" 1248 | entities "~1.1.1" 1249 | 1250 | domain-browser@^1.1.1: 1251 | version "1.1.7" 1252 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1253 | 1254 | domelementtype@1, domelementtype@^1.3.0: 1255 | version "1.3.0" 1256 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.0.tgz#b17aed82e8ab59e52dd9c19b1756e0fc187204c2" 1257 | 1258 | domelementtype@~1.1.1: 1259 | version "1.1.3" 1260 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" 1261 | 1262 | domhandler@2.1: 1263 | version "2.1.0" 1264 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.1.0.tgz#d2646f5e57f6c3bab11cf6cb05d3c0acf7412594" 1265 | dependencies: 1266 | domelementtype "1" 1267 | 1268 | domhandler@^2.3.0: 1269 | version "2.3.0" 1270 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.3.0.tgz#2de59a0822d5027fabff6f032c2b25a2a8abe738" 1271 | dependencies: 1272 | domelementtype "1" 1273 | 1274 | domutils@1.1: 1275 | version "1.1.6" 1276 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.1.6.tgz#bddc3de099b9a2efacc51c623f28f416ecc57485" 1277 | dependencies: 1278 | domelementtype "1" 1279 | 1280 | domutils@1.5.1, domutils@^1.5.1: 1281 | version "1.5.1" 1282 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" 1283 | dependencies: 1284 | dom-serializer "0" 1285 | domelementtype "1" 1286 | 1287 | ecc-jsbn@~0.1.1: 1288 | version "0.1.1" 1289 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1290 | dependencies: 1291 | jsbn "~0.1.0" 1292 | 1293 | ee-first@1.1.1: 1294 | version "1.1.1" 1295 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 1296 | 1297 | emojis-list@^2.0.0: 1298 | version "2.1.0" 1299 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1300 | 1301 | encodeurl@~1.0.1: 1302 | version "1.0.1" 1303 | resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" 1304 | 1305 | encoding@^0.1.11: 1306 | version "0.1.12" 1307 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1308 | dependencies: 1309 | iconv-lite "~0.4.13" 1310 | 1311 | enhanced-resolve@~0.9.0: 1312 | version "0.9.1" 1313 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e" 1314 | dependencies: 1315 | graceful-fs "^4.1.2" 1316 | memory-fs "^0.2.0" 1317 | tapable "^0.1.8" 1318 | 1319 | entities@^1.1.1, entities@~1.1.1: 1320 | version "1.1.1" 1321 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" 1322 | 1323 | enzyme@^2.4.1: 1324 | version "2.8.0" 1325 | resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.8.0.tgz#86cc1fc96e5cbd7695766dd6e89deb13a0aead51" 1326 | dependencies: 1327 | cheerio "^0.22.0" 1328 | function.prototype.name "^1.0.0" 1329 | is-subset "^0.1.1" 1330 | lodash "^4.17.2" 1331 | object-is "^1.0.1" 1332 | object.assign "^4.0.4" 1333 | object.entries "^1.0.3" 1334 | object.values "^1.0.3" 1335 | uuid "^2.0.3" 1336 | 1337 | errno@^0.1.3: 1338 | version "0.1.4" 1339 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1340 | dependencies: 1341 | prr "~0.0.0" 1342 | 1343 | es-abstract@^1.6.1: 1344 | version "1.7.0" 1345 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" 1346 | dependencies: 1347 | es-to-primitive "^1.1.1" 1348 | function-bind "^1.1.0" 1349 | is-callable "^1.1.3" 1350 | is-regex "^1.0.3" 1351 | 1352 | es-to-primitive@^1.1.1: 1353 | version "1.1.1" 1354 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d" 1355 | dependencies: 1356 | is-callable "^1.1.1" 1357 | is-date-object "^1.0.1" 1358 | is-symbol "^1.0.1" 1359 | 1360 | es6-promise@^2.3.0: 1361 | version "2.3.0" 1362 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-2.3.0.tgz#96edb9f2fdb01995822b263dd8aadab6748181bc" 1363 | 1364 | escape-html@~1.0.3: 1365 | version "1.0.3" 1366 | resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 1367 | 1368 | escape-string-regexp@1.0.2, escape-string-regexp@^1.0.2: 1369 | version "1.0.2" 1370 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" 1371 | 1372 | escodegen@^1.6.1: 1373 | version "1.8.1" 1374 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.8.1.tgz#5a5b53af4693110bebb0867aa3430dd3b70a1018" 1375 | dependencies: 1376 | esprima "^2.7.1" 1377 | estraverse "^1.9.1" 1378 | esutils "^2.0.2" 1379 | optionator "^0.8.1" 1380 | optionalDependencies: 1381 | source-map "~0.2.0" 1382 | 1383 | esprima@^2.7.1: 1384 | version "2.7.3" 1385 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" 1386 | 1387 | estraverse@^1.9.1: 1388 | version "1.9.3" 1389 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" 1390 | 1391 | esutils@^2.0.0, esutils@^2.0.2: 1392 | version "2.0.2" 1393 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1394 | 1395 | etag@~1.8.0: 1396 | version "1.8.0" 1397 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" 1398 | 1399 | eventemitter3@1.x.x: 1400 | version "1.2.0" 1401 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" 1402 | 1403 | events@^1.0.0: 1404 | version "1.1.1" 1405 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1406 | 1407 | eventsource@0.1.6: 1408 | version "0.1.6" 1409 | resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" 1410 | dependencies: 1411 | original ">=0.0.5" 1412 | 1413 | expand-brackets@^0.1.4: 1414 | version "0.1.5" 1415 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1416 | dependencies: 1417 | is-posix-bracket "^0.1.0" 1418 | 1419 | expand-range@^1.8.1: 1420 | version "1.8.2" 1421 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1422 | dependencies: 1423 | fill-range "^2.1.0" 1424 | 1425 | exports-loader@^0.6.3: 1426 | version "0.6.4" 1427 | resolved "https://registry.yarnpkg.com/exports-loader/-/exports-loader-0.6.4.tgz#d70fc6121975b35fc12830cf52754be2740fc886" 1428 | dependencies: 1429 | loader-utils "^1.0.2" 1430 | source-map "0.5.x" 1431 | 1432 | express@^4.13.3: 1433 | version "4.15.2" 1434 | resolved "https://registry.yarnpkg.com/express/-/express-4.15.2.tgz#af107fc148504457f2dca9a6f2571d7129b97b35" 1435 | dependencies: 1436 | accepts "~1.3.3" 1437 | array-flatten "1.1.1" 1438 | content-disposition "0.5.2" 1439 | content-type "~1.0.2" 1440 | cookie "0.3.1" 1441 | cookie-signature "1.0.6" 1442 | debug "2.6.1" 1443 | depd "~1.1.0" 1444 | encodeurl "~1.0.1" 1445 | escape-html "~1.0.3" 1446 | etag "~1.8.0" 1447 | finalhandler "~1.0.0" 1448 | fresh "0.5.0" 1449 | merge-descriptors "1.0.1" 1450 | methods "~1.1.2" 1451 | on-finished "~2.3.0" 1452 | parseurl "~1.3.1" 1453 | path-to-regexp "0.1.7" 1454 | proxy-addr "~1.1.3" 1455 | qs "6.4.0" 1456 | range-parser "~1.2.0" 1457 | send "0.15.1" 1458 | serve-static "1.12.1" 1459 | setprototypeof "1.0.3" 1460 | statuses "~1.3.1" 1461 | type-is "~1.6.14" 1462 | utils-merge "1.0.0" 1463 | vary "~1.1.0" 1464 | 1465 | extend@~3.0.0: 1466 | version "3.0.0" 1467 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" 1468 | 1469 | extglob@^0.3.1: 1470 | version "0.3.2" 1471 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1472 | dependencies: 1473 | is-extglob "^1.0.0" 1474 | 1475 | extsprintf@1.0.2: 1476 | version "1.0.2" 1477 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" 1478 | 1479 | fast-levenshtein@~2.0.4: 1480 | version "2.0.6" 1481 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1482 | 1483 | faye-websocket@^0.10.0: 1484 | version "0.10.0" 1485 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" 1486 | dependencies: 1487 | websocket-driver ">=0.5.1" 1488 | 1489 | faye-websocket@~0.11.0: 1490 | version "0.11.1" 1491 | resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" 1492 | dependencies: 1493 | websocket-driver ">=0.5.1" 1494 | 1495 | fbjs@^0.8.1, fbjs@^0.8.4, fbjs@^0.8.6: 1496 | version "0.8.12" 1497 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" 1498 | dependencies: 1499 | core-js "^1.0.0" 1500 | isomorphic-fetch "^2.1.1" 1501 | loose-envify "^1.0.0" 1502 | object-assign "^4.1.0" 1503 | promise "^7.1.1" 1504 | setimmediate "^1.0.5" 1505 | ua-parser-js "^0.7.9" 1506 | 1507 | filename-regex@^2.0.0: 1508 | version "2.0.0" 1509 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775" 1510 | 1511 | fill-range@^2.1.0: 1512 | version "2.2.3" 1513 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1514 | dependencies: 1515 | is-number "^2.1.0" 1516 | isobject "^2.0.0" 1517 | randomatic "^1.1.3" 1518 | repeat-element "^1.1.2" 1519 | repeat-string "^1.5.2" 1520 | 1521 | finalhandler@~1.0.0: 1522 | version "1.0.1" 1523 | resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.1.tgz#bcd15d1689c0e5ed729b6f7f541a6df984117db8" 1524 | dependencies: 1525 | debug "2.6.3" 1526 | encodeurl "~1.0.1" 1527 | escape-html "~1.0.3" 1528 | on-finished "~2.3.0" 1529 | parseurl "~1.3.1" 1530 | statuses "~1.3.1" 1531 | unpipe "~1.0.0" 1532 | 1533 | find-cache-dir@^0.1.1: 1534 | version "0.1.1" 1535 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1536 | dependencies: 1537 | commondir "^1.0.1" 1538 | mkdirp "^0.5.1" 1539 | pkg-dir "^1.0.0" 1540 | 1541 | find-up@^1.0.0: 1542 | version "1.1.2" 1543 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1544 | dependencies: 1545 | path-exists "^2.0.0" 1546 | pinkie-promise "^2.0.0" 1547 | 1548 | for-in@^1.0.1: 1549 | version "1.0.2" 1550 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1551 | 1552 | for-own@^0.1.4: 1553 | version "0.1.5" 1554 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1555 | dependencies: 1556 | for-in "^1.0.1" 1557 | 1558 | foreach@^2.0.5: 1559 | version "2.0.5" 1560 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 1561 | 1562 | forever-agent@~0.6.1: 1563 | version "0.6.1" 1564 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1565 | 1566 | form-data@~2.1.1: 1567 | version "2.1.2" 1568 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.2.tgz#89c3534008b97eada4cbb157d58f6f5df025eae4" 1569 | dependencies: 1570 | asynckit "^0.4.0" 1571 | combined-stream "^1.0.5" 1572 | mime-types "^2.1.12" 1573 | 1574 | form-urlencoded@^0.1.4: 1575 | version "0.1.9" 1576 | resolved "https://registry.yarnpkg.com/form-urlencoded/-/form-urlencoded-0.1.9.tgz#0a8b82700dd2450a1fedaece999c7b335fb29d62" 1577 | 1578 | forwarded@~0.1.0: 1579 | version "0.1.0" 1580 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" 1581 | 1582 | fresh@0.5.0: 1583 | version "0.5.0" 1584 | resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" 1585 | 1586 | fs.realpath@^1.0.0: 1587 | version "1.0.0" 1588 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1589 | 1590 | fsevents@^1.0.0: 1591 | version "1.1.1" 1592 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.1.tgz#f19fd28f43eeaf761680e519a203c4d0b3d31aff" 1593 | dependencies: 1594 | nan "^2.3.0" 1595 | node-pre-gyp "^0.6.29" 1596 | 1597 | fstream-ignore@^1.0.5: 1598 | version "1.0.5" 1599 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1600 | dependencies: 1601 | fstream "^1.0.0" 1602 | inherits "2" 1603 | minimatch "^3.0.0" 1604 | 1605 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1606 | version "1.0.11" 1607 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1608 | dependencies: 1609 | graceful-fs "^4.1.2" 1610 | inherits "~2.0.0" 1611 | mkdirp ">=0.5 0" 1612 | rimraf "2" 1613 | 1614 | function-bind@^1.0.2, function-bind@^1.1.0: 1615 | version "1.1.0" 1616 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" 1617 | 1618 | function.prototype.name@^1.0.0: 1619 | version "1.0.0" 1620 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.0.0.tgz#5f523ca64e491a5f95aba80cc1e391080a14482e" 1621 | dependencies: 1622 | define-properties "^1.1.2" 1623 | function-bind "^1.1.0" 1624 | is-callable "^1.1.2" 1625 | 1626 | gauge@~2.7.1: 1627 | version "2.7.3" 1628 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.3.tgz#1c23855f962f17b3ad3d0dc7443f304542edfe09" 1629 | dependencies: 1630 | aproba "^1.0.3" 1631 | console-control-strings "^1.0.0" 1632 | has-unicode "^2.0.0" 1633 | object-assign "^4.1.0" 1634 | signal-exit "^3.0.0" 1635 | string-width "^1.0.1" 1636 | strip-ansi "^3.0.1" 1637 | wide-align "^1.1.0" 1638 | 1639 | getpass@^0.1.1: 1640 | version "0.1.6" 1641 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" 1642 | dependencies: 1643 | assert-plus "^1.0.0" 1644 | 1645 | glob-base@^0.3.0: 1646 | version "0.3.0" 1647 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1648 | dependencies: 1649 | glob-parent "^2.0.0" 1650 | is-glob "^2.0.0" 1651 | 1652 | glob-parent@^2.0.0: 1653 | version "2.0.0" 1654 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1655 | dependencies: 1656 | is-glob "^2.0.0" 1657 | 1658 | glob@3.2.11: 1659 | version "3.2.11" 1660 | resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" 1661 | dependencies: 1662 | inherits "2" 1663 | minimatch "0.3" 1664 | 1665 | glob@^7.0.5: 1666 | version "7.1.1" 1667 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 1668 | dependencies: 1669 | fs.realpath "^1.0.0" 1670 | inflight "^1.0.4" 1671 | inherits "2" 1672 | minimatch "^3.0.2" 1673 | once "^1.3.0" 1674 | path-is-absolute "^1.0.0" 1675 | 1676 | globals@^9.0.0: 1677 | version "9.17.0" 1678 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286" 1679 | 1680 | graceful-fs@^4.1.2: 1681 | version "4.1.11" 1682 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1683 | 1684 | "graceful-readlink@>= 1.0.0": 1685 | version "1.0.1" 1686 | resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" 1687 | 1688 | growl@1.9.2: 1689 | version "1.9.2" 1690 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" 1691 | 1692 | har-schema@^1.0.5: 1693 | version "1.0.5" 1694 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1695 | 1696 | har-validator@~4.2.1: 1697 | version "4.2.1" 1698 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1699 | dependencies: 1700 | ajv "^4.9.1" 1701 | har-schema "^1.0.5" 1702 | 1703 | has-ansi@^2.0.0: 1704 | version "2.0.0" 1705 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1706 | dependencies: 1707 | ansi-regex "^2.0.0" 1708 | 1709 | has-flag@^1.0.0: 1710 | version "1.0.0" 1711 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1712 | 1713 | has-unicode@^2.0.0: 1714 | version "2.0.1" 1715 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1716 | 1717 | has@^1.0.1: 1718 | version "1.0.1" 1719 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" 1720 | dependencies: 1721 | function-bind "^1.0.2" 1722 | 1723 | hawk@~3.1.3: 1724 | version "3.1.3" 1725 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1726 | dependencies: 1727 | boom "2.x.x" 1728 | cryptiles "2.x.x" 1729 | hoek "2.x.x" 1730 | sntp "1.x.x" 1731 | 1732 | he@1.1.x: 1733 | version "1.1.1" 1734 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 1735 | 1736 | history@^3.0.0: 1737 | version "3.3.0" 1738 | resolved "https://registry.yarnpkg.com/history/-/history-3.3.0.tgz#fcedcce8f12975371545d735461033579a6dae9c" 1739 | dependencies: 1740 | invariant "^2.2.1" 1741 | loose-envify "^1.2.0" 1742 | query-string "^4.2.2" 1743 | warning "^3.0.0" 1744 | 1745 | hoek@2.x.x: 1746 | version "2.16.3" 1747 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1748 | 1749 | hoist-non-react-statics@^1.0.0, hoist-non-react-statics@^1.0.3, hoist-non-react-statics@^1.2.0: 1750 | version "1.2.0" 1751 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" 1752 | 1753 | home-or-tmp@^2.0.0: 1754 | version "2.0.0" 1755 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1756 | dependencies: 1757 | os-homedir "^1.0.0" 1758 | os-tmpdir "^1.0.1" 1759 | 1760 | html-encoding-sniffer@^1.0.1: 1761 | version "1.0.1" 1762 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da" 1763 | dependencies: 1764 | whatwg-encoding "^1.0.1" 1765 | 1766 | html-minifier@^3.2.3: 1767 | version "3.4.2" 1768 | resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.4.2.tgz#31896baaf735c1d95f7a0b7291f9dc36c0720752" 1769 | dependencies: 1770 | camel-case "3.0.x" 1771 | clean-css "4.0.x" 1772 | commander "2.9.x" 1773 | he "1.1.x" 1774 | ncname "1.0.x" 1775 | param-case "2.1.x" 1776 | relateurl "0.2.x" 1777 | uglify-js "2.8.x" 1778 | 1779 | html-webpack-plugin@^2.21.0: 1780 | version "2.28.0" 1781 | resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-2.28.0.tgz#2e7863b57e5fd48fe263303e2ffc934c3064d009" 1782 | dependencies: 1783 | bluebird "^3.4.7" 1784 | html-minifier "^3.2.3" 1785 | loader-utils "^0.2.16" 1786 | lodash "^4.17.3" 1787 | pretty-error "^2.0.2" 1788 | toposort "^1.0.0" 1789 | 1790 | htmlparser2@^3.9.1: 1791 | version "3.9.2" 1792 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" 1793 | dependencies: 1794 | domelementtype "^1.3.0" 1795 | domhandler "^2.3.0" 1796 | domutils "^1.5.1" 1797 | entities "^1.1.1" 1798 | inherits "^2.0.1" 1799 | readable-stream "^2.0.2" 1800 | 1801 | htmlparser2@~3.3.0: 1802 | version "3.3.0" 1803 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.3.0.tgz#cc70d05a59f6542e43f0e685c982e14c924a9efe" 1804 | dependencies: 1805 | domelementtype "1" 1806 | domhandler "2.1" 1807 | domutils "1.1" 1808 | readable-stream "1.0" 1809 | 1810 | http-errors@~1.5.0: 1811 | version "1.5.1" 1812 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" 1813 | dependencies: 1814 | inherits "2.0.3" 1815 | setprototypeof "1.0.2" 1816 | statuses ">= 1.3.1 < 2" 1817 | 1818 | http-errors@~1.6.1: 1819 | version "1.6.1" 1820 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" 1821 | dependencies: 1822 | depd "1.1.0" 1823 | inherits "2.0.3" 1824 | setprototypeof "1.0.3" 1825 | statuses ">= 1.3.1 < 2" 1826 | 1827 | http-proxy-middleware@~0.17.1: 1828 | version "0.17.4" 1829 | resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" 1830 | dependencies: 1831 | http-proxy "^1.16.2" 1832 | is-glob "^3.1.0" 1833 | lodash "^4.17.2" 1834 | micromatch "^2.3.11" 1835 | 1836 | http-proxy@^1.16.2: 1837 | version "1.16.2" 1838 | resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" 1839 | dependencies: 1840 | eventemitter3 "1.x.x" 1841 | requires-port "1.x.x" 1842 | 1843 | http-signature@~1.1.0: 1844 | version "1.1.1" 1845 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1846 | dependencies: 1847 | assert-plus "^0.2.0" 1848 | jsprim "^1.2.2" 1849 | sshpk "^1.7.0" 1850 | 1851 | https-browserify@0.0.1: 1852 | version "0.0.1" 1853 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1854 | 1855 | hyphenate-style-name@^1.0.1: 1856 | version "1.0.2" 1857 | resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.2.tgz#31160a36930adaf1fc04c6074f7eb41465d4ec4b" 1858 | 1859 | iconv-lite@0.4.13, iconv-lite@~0.4.13: 1860 | version "0.4.13" 1861 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" 1862 | 1863 | ieee754@^1.1.4: 1864 | version "1.1.8" 1865 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1866 | 1867 | imports-loader@^0.7.0: 1868 | version "0.7.1" 1869 | resolved "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.7.1.tgz#f204b5f34702a32c1db7d48d89d5e867a0441253" 1870 | dependencies: 1871 | loader-utils "^1.0.2" 1872 | source-map "^0.5.6" 1873 | 1874 | indexof@0.0.1: 1875 | version "0.0.1" 1876 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1877 | 1878 | inflight@^1.0.4: 1879 | version "1.0.6" 1880 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1881 | dependencies: 1882 | once "^1.3.0" 1883 | wrappy "1" 1884 | 1885 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.0, inherits@~2.0.1: 1886 | version "2.0.3" 1887 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1888 | 1889 | inherits@2.0.1: 1890 | version "2.0.1" 1891 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1892 | 1893 | ini@~1.3.0: 1894 | version "1.3.4" 1895 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1896 | 1897 | inline-style-prefixer@^2.0.1: 1898 | version "2.0.5" 1899 | resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-2.0.5.tgz#c153c7e88fd84fef5c602e95a8168b2770671fe7" 1900 | dependencies: 1901 | bowser "^1.0.0" 1902 | hyphenate-style-name "^1.0.1" 1903 | 1904 | interpret@^0.6.4: 1905 | version "0.6.6" 1906 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b" 1907 | 1908 | invariant@^2.0.0, invariant@^2.2.0, invariant@^2.2.1: 1909 | version "2.2.2" 1910 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1911 | dependencies: 1912 | loose-envify "^1.0.0" 1913 | 1914 | ipaddr.js@1.3.0: 1915 | version "1.3.0" 1916 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" 1917 | 1918 | is-binary-path@^1.0.0: 1919 | version "1.0.1" 1920 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1921 | dependencies: 1922 | binary-extensions "^1.0.0" 1923 | 1924 | is-buffer@^1.0.2: 1925 | version "1.1.5" 1926 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1927 | 1928 | is-callable@^1.1.1, is-callable@^1.1.2, is-callable@^1.1.3: 1929 | version "1.1.3" 1930 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2" 1931 | 1932 | is-date-object@^1.0.1: 1933 | version "1.0.1" 1934 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" 1935 | 1936 | is-dotfile@^1.0.0: 1937 | version "1.0.2" 1938 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" 1939 | 1940 | is-equal-shallow@^0.1.3: 1941 | version "0.1.3" 1942 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1943 | dependencies: 1944 | is-primitive "^2.0.0" 1945 | 1946 | is-extendable@^0.1.1: 1947 | version "0.1.1" 1948 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1949 | 1950 | is-extglob@^1.0.0: 1951 | version "1.0.0" 1952 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1953 | 1954 | is-extglob@^2.1.0: 1955 | version "2.1.1" 1956 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1957 | 1958 | is-finite@^1.0.0: 1959 | version "1.0.2" 1960 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1961 | dependencies: 1962 | number-is-nan "^1.0.0" 1963 | 1964 | is-fullwidth-code-point@^1.0.0: 1965 | version "1.0.0" 1966 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1967 | dependencies: 1968 | number-is-nan "^1.0.0" 1969 | 1970 | is-glob@^2.0.0, is-glob@^2.0.1: 1971 | version "2.0.1" 1972 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1973 | dependencies: 1974 | is-extglob "^1.0.0" 1975 | 1976 | is-glob@^3.1.0: 1977 | version "3.1.0" 1978 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 1979 | dependencies: 1980 | is-extglob "^2.1.0" 1981 | 1982 | is-number@^2.0.2, is-number@^2.1.0: 1983 | version "2.1.0" 1984 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1985 | dependencies: 1986 | kind-of "^3.0.2" 1987 | 1988 | is-posix-bracket@^0.1.0: 1989 | version "0.1.1" 1990 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1991 | 1992 | is-primitive@^2.0.0: 1993 | version "2.0.0" 1994 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1995 | 1996 | is-regex@^1.0.3: 1997 | version "1.0.4" 1998 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" 1999 | dependencies: 2000 | has "^1.0.1" 2001 | 2002 | is-stream@^1.0.1: 2003 | version "1.1.0" 2004 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 2005 | 2006 | is-subset@^0.1.1: 2007 | version "0.1.1" 2008 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 2009 | 2010 | is-symbol@^1.0.1: 2011 | version "1.0.1" 2012 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.1.tgz#3cc59f00025194b6ab2e38dbae6689256b660572" 2013 | 2014 | is-typedarray@~1.0.0: 2015 | version "1.0.0" 2016 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 2017 | 2018 | isarray@0.0.1: 2019 | version "0.0.1" 2020 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" 2021 | 2022 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 2023 | version "1.0.0" 2024 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 2025 | 2026 | isobject@^2.0.0: 2027 | version "2.1.0" 2028 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 2029 | dependencies: 2030 | isarray "1.0.0" 2031 | 2032 | isomorphic-fetch@^2.1.1: 2033 | version "2.2.1" 2034 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 2035 | dependencies: 2036 | node-fetch "^1.0.1" 2037 | whatwg-fetch ">=0.10.0" 2038 | 2039 | isstream@~0.1.2: 2040 | version "0.1.2" 2041 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 2042 | 2043 | jade@0.26.3: 2044 | version "0.26.3" 2045 | resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" 2046 | dependencies: 2047 | commander "0.6.1" 2048 | mkdirp "0.3.0" 2049 | 2050 | jodid25519@^1.0.0: 2051 | version "1.0.2" 2052 | resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" 2053 | dependencies: 2054 | jsbn "~0.1.0" 2055 | 2056 | js-tokens@^3.0.0: 2057 | version "3.0.1" 2058 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7" 2059 | 2060 | jsbn@~0.1.0: 2061 | version "0.1.1" 2062 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 2063 | 2064 | jsdom@^9.4.1: 2065 | version "9.12.0" 2066 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.12.0.tgz#e8c546fffcb06c00d4833ca84410fed7f8a097d4" 2067 | dependencies: 2068 | abab "^1.0.3" 2069 | acorn "^4.0.4" 2070 | acorn-globals "^3.1.0" 2071 | array-equal "^1.0.0" 2072 | content-type-parser "^1.0.1" 2073 | cssom ">= 0.3.2 < 0.4.0" 2074 | cssstyle ">= 0.2.37 < 0.3.0" 2075 | escodegen "^1.6.1" 2076 | html-encoding-sniffer "^1.0.1" 2077 | nwmatcher ">= 1.3.9 < 2.0.0" 2078 | parse5 "^1.5.1" 2079 | request "^2.79.0" 2080 | sax "^1.2.1" 2081 | symbol-tree "^3.2.1" 2082 | tough-cookie "^2.3.2" 2083 | webidl-conversions "^4.0.0" 2084 | whatwg-encoding "^1.0.1" 2085 | whatwg-url "^4.3.0" 2086 | xml-name-validator "^2.0.1" 2087 | 2088 | jsesc@^1.3.0: 2089 | version "1.3.0" 2090 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 2091 | 2092 | jsesc@~0.5.0: 2093 | version "0.5.0" 2094 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 2095 | 2096 | json-schema@0.2.3: 2097 | version "0.2.3" 2098 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 2099 | 2100 | json-stable-stringify@^1.0.1: 2101 | version "1.0.1" 2102 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 2103 | dependencies: 2104 | jsonify "~0.0.0" 2105 | 2106 | json-stringify-safe@~5.0.1: 2107 | version "5.0.1" 2108 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 2109 | 2110 | json3@^3.3.2: 2111 | version "3.3.2" 2112 | resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" 2113 | 2114 | json5@^0.5.0: 2115 | version "0.5.1" 2116 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 2117 | 2118 | jsonify@~0.0.0: 2119 | version "0.0.0" 2120 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 2121 | 2122 | jsprim@^1.2.2: 2123 | version "1.4.0" 2124 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" 2125 | dependencies: 2126 | assert-plus "1.0.0" 2127 | extsprintf "1.0.2" 2128 | json-schema "0.2.3" 2129 | verror "1.3.6" 2130 | 2131 | keycode@^2.1.1: 2132 | version "2.1.8" 2133 | resolved "https://registry.yarnpkg.com/keycode/-/keycode-2.1.8.tgz#94d2b7098215eff0e8f9a8931d5a59076c4532fb" 2134 | 2135 | kind-of@^3.0.2: 2136 | version "3.1.0" 2137 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.1.0.tgz#475d698a5e49ff5e53d14e3e732429dc8bf4cf47" 2138 | dependencies: 2139 | is-buffer "^1.0.2" 2140 | 2141 | lazy-cache@^1.0.3: 2142 | version "1.0.4" 2143 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 2144 | 2145 | levn@~0.3.0: 2146 | version "0.3.0" 2147 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 2148 | dependencies: 2149 | prelude-ls "~1.1.2" 2150 | type-check "~0.3.2" 2151 | 2152 | loader-utils@^0.2.11, loader-utils@^0.2.16: 2153 | version "0.2.17" 2154 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 2155 | dependencies: 2156 | big.js "^3.1.3" 2157 | emojis-list "^2.0.0" 2158 | json5 "^0.5.0" 2159 | object-assign "^4.0.1" 2160 | 2161 | loader-utils@^1.0.2: 2162 | version "1.1.0" 2163 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 2164 | dependencies: 2165 | big.js "^3.1.3" 2166 | emojis-list "^2.0.0" 2167 | json5 "^0.5.0" 2168 | 2169 | lodash-es@^4.2.1: 2170 | version "4.17.4" 2171 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.4.tgz#dcc1d7552e150a0640073ba9cb31d70f032950e7" 2172 | 2173 | lodash.assignin@^4.0.9: 2174 | version "4.2.0" 2175 | resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" 2176 | 2177 | lodash.bind@^4.1.4: 2178 | version "4.2.1" 2179 | resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 2180 | 2181 | lodash.defaults@^4.0.1: 2182 | version "4.2.0" 2183 | resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" 2184 | 2185 | lodash.filter@^4.4.0: 2186 | version "4.6.0" 2187 | resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" 2188 | 2189 | lodash.flatten@^4.2.0: 2190 | version "4.4.0" 2191 | resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" 2192 | 2193 | lodash.foreach@^4.3.0: 2194 | version "4.5.0" 2195 | resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 2196 | 2197 | lodash.map@^4.4.0: 2198 | version "4.6.0" 2199 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 2200 | 2201 | lodash.merge@^4.4.0, lodash.merge@^4.6.0: 2202 | version "4.6.0" 2203 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.0.tgz#69884ba144ac33fe699737a6086deffadd0f89c5" 2204 | 2205 | lodash.pick@^4.2.1: 2206 | version "4.4.0" 2207 | resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" 2208 | 2209 | lodash.reduce@^4.4.0: 2210 | version "4.6.0" 2211 | resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" 2212 | 2213 | lodash.reject@^4.4.0: 2214 | version "4.6.0" 2215 | resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" 2216 | 2217 | lodash.some@^4.4.0: 2218 | version "4.6.0" 2219 | resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 2220 | 2221 | lodash.throttle@^4.1.1: 2222 | version "4.1.1" 2223 | resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" 2224 | 2225 | lodash@^4.17.2, lodash@^4.17.3, lodash@^4.2.0, lodash@^4.2.1: 2226 | version "4.17.4" 2227 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 2228 | 2229 | longest@^1.0.1: 2230 | version "1.0.1" 2231 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 2232 | 2233 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0: 2234 | version "1.3.1" 2235 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 2236 | dependencies: 2237 | js-tokens "^3.0.0" 2238 | 2239 | lower-case@^1.1.1: 2240 | version "1.1.4" 2241 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" 2242 | 2243 | lru-cache@2: 2244 | version "2.7.3" 2245 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" 2246 | 2247 | material-ui@^0.17.1: 2248 | version "0.17.1" 2249 | resolved "https://registry.yarnpkg.com/material-ui/-/material-ui-0.17.1.tgz#37f9b9c073afa1603b8fb900d620b41699663176" 2250 | dependencies: 2251 | babel-runtime "^6.18.0" 2252 | inline-style-prefixer "^2.0.1" 2253 | keycode "^2.1.1" 2254 | lodash.merge "^4.6.0" 2255 | lodash.throttle "^4.1.1" 2256 | react-addons-create-fragment "^15.0.0" 2257 | react-addons-transition-group "^15.0.0" 2258 | react-event-listener "^0.4.0" 2259 | recompose "^0.22.0" 2260 | simple-assign "^0.1.0" 2261 | warning "^3.0.0" 2262 | 2263 | media-typer@0.3.0: 2264 | version "0.3.0" 2265 | resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 2266 | 2267 | memory-fs@^0.2.0: 2268 | version "0.2.0" 2269 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" 2270 | 2271 | memory-fs@~0.3.0: 2272 | version "0.3.0" 2273 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20" 2274 | dependencies: 2275 | errno "^0.1.3" 2276 | readable-stream "^2.0.1" 2277 | 2278 | memory-fs@~0.4.1: 2279 | version "0.4.1" 2280 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 2281 | dependencies: 2282 | errno "^0.1.3" 2283 | readable-stream "^2.0.1" 2284 | 2285 | merge-descriptors@1.0.1: 2286 | version "1.0.1" 2287 | resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 2288 | 2289 | methods@~1.1.2: 2290 | version "1.1.2" 2291 | resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 2292 | 2293 | micromatch@^2.1.5, micromatch@^2.3.11: 2294 | version "2.3.11" 2295 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 2296 | dependencies: 2297 | arr-diff "^2.0.0" 2298 | array-unique "^0.2.1" 2299 | braces "^1.8.2" 2300 | expand-brackets "^0.1.4" 2301 | extglob "^0.3.1" 2302 | filename-regex "^2.0.0" 2303 | is-extglob "^1.0.0" 2304 | is-glob "^2.0.1" 2305 | kind-of "^3.0.2" 2306 | normalize-path "^2.0.1" 2307 | object.omit "^2.0.0" 2308 | parse-glob "^3.0.4" 2309 | regex-cache "^0.4.2" 2310 | 2311 | "mime-db@>= 1.27.0 < 2", mime-db@~1.27.0: 2312 | version "1.27.0" 2313 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" 2314 | 2315 | mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: 2316 | version "2.1.15" 2317 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" 2318 | dependencies: 2319 | mime-db "~1.27.0" 2320 | 2321 | mime@1.3.4, mime@>=1.2.9, mime@^1.3.4: 2322 | version "1.3.4" 2323 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" 2324 | 2325 | minimatch@0.3: 2326 | version "0.3.0" 2327 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" 2328 | dependencies: 2329 | lru-cache "2" 2330 | sigmund "~1.0.0" 2331 | 2332 | minimatch@^3.0.0, minimatch@^3.0.2: 2333 | version "3.0.3" 2334 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" 2335 | dependencies: 2336 | brace-expansion "^1.0.0" 2337 | 2338 | minimist@0.0.8, minimist@~0.0.1: 2339 | version "0.0.8" 2340 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 2341 | 2342 | minimist@^1.2.0: 2343 | version "1.2.0" 2344 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 2345 | 2346 | mkdirp@0.3.0: 2347 | version "0.3.0" 2348 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" 2349 | 2350 | mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 2351 | version "0.5.1" 2352 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 2353 | dependencies: 2354 | minimist "0.0.8" 2355 | 2356 | mocha@^2.5.3: 2357 | version "2.5.3" 2358 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" 2359 | dependencies: 2360 | commander "2.3.0" 2361 | debug "2.2.0" 2362 | diff "1.4.0" 2363 | escape-string-regexp "1.0.2" 2364 | glob "3.2.11" 2365 | growl "1.9.2" 2366 | jade "0.26.3" 2367 | mkdirp "0.5.1" 2368 | supports-color "1.2.0" 2369 | to-iso-string "0.0.2" 2370 | 2371 | ms@0.7.1: 2372 | version "0.7.1" 2373 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" 2374 | 2375 | ms@0.7.2: 2376 | version "0.7.2" 2377 | resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" 2378 | 2379 | nan@^2.3.0: 2380 | version "2.5.1" 2381 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2" 2382 | 2383 | ncname@1.0.x: 2384 | version "1.0.0" 2385 | resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" 2386 | dependencies: 2387 | xml-char-classes "^1.0.0" 2388 | 2389 | negotiator@0.6.1: 2390 | version "0.6.1" 2391 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 2392 | 2393 | no-case@^2.2.0: 2394 | version "2.3.1" 2395 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.1.tgz#7aeba1c73a52184265554b7dc03baf720df80081" 2396 | dependencies: 2397 | lower-case "^1.1.1" 2398 | 2399 | node-fetch@^1.0.1: 2400 | version "1.6.3" 2401 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.6.3.tgz#dc234edd6489982d58e8f0db4f695029abcd8c04" 2402 | dependencies: 2403 | encoding "^0.1.11" 2404 | is-stream "^1.0.1" 2405 | 2406 | node-libs-browser@^0.7.0: 2407 | version "0.7.0" 2408 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.7.0.tgz#3e272c0819e308935e26674408d7af0e1491b83b" 2409 | dependencies: 2410 | assert "^1.1.1" 2411 | browserify-zlib "^0.1.4" 2412 | buffer "^4.9.0" 2413 | console-browserify "^1.1.0" 2414 | constants-browserify "^1.0.0" 2415 | crypto-browserify "3.3.0" 2416 | domain-browser "^1.1.1" 2417 | events "^1.0.0" 2418 | https-browserify "0.0.1" 2419 | os-browserify "^0.2.0" 2420 | path-browserify "0.0.0" 2421 | process "^0.11.0" 2422 | punycode "^1.2.4" 2423 | querystring-es3 "^0.2.0" 2424 | readable-stream "^2.0.5" 2425 | stream-browserify "^2.0.1" 2426 | stream-http "^2.3.1" 2427 | string_decoder "^0.10.25" 2428 | timers-browserify "^2.0.2" 2429 | tty-browserify "0.0.0" 2430 | url "^0.11.0" 2431 | util "^0.10.3" 2432 | vm-browserify "0.0.4" 2433 | 2434 | node-pre-gyp@^0.6.29: 2435 | version "0.6.34" 2436 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz#94ad1c798a11d7fc67381b50d47f8cc18d9799f7" 2437 | dependencies: 2438 | mkdirp "^0.5.1" 2439 | nopt "^4.0.1" 2440 | npmlog "^4.0.2" 2441 | rc "^1.1.7" 2442 | request "^2.81.0" 2443 | rimraf "^2.6.1" 2444 | semver "^5.3.0" 2445 | tar "^2.2.1" 2446 | tar-pack "^3.4.0" 2447 | 2448 | node-static@^0.7.7: 2449 | version "0.7.9" 2450 | resolved "https://registry.yarnpkg.com/node-static/-/node-static-0.7.9.tgz#9bb69fce2281f7ae3cd1fb983e9ea0ec0cd9fecb" 2451 | dependencies: 2452 | colors ">=0.6.0" 2453 | mime ">=1.2.9" 2454 | optimist ">=0.3.4" 2455 | 2456 | nopt@^4.0.1: 2457 | version "4.0.1" 2458 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 2459 | dependencies: 2460 | abbrev "1" 2461 | osenv "^0.1.4" 2462 | 2463 | normalize-path@^2.0.1: 2464 | version "2.1.1" 2465 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 2466 | dependencies: 2467 | remove-trailing-separator "^1.0.1" 2468 | 2469 | npmlog@^4.0.2: 2470 | version "4.0.2" 2471 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.0.2.tgz#d03950e0e78ce1527ba26d2a7592e9348ac3e75f" 2472 | dependencies: 2473 | are-we-there-yet "~1.1.2" 2474 | console-control-strings "~1.1.0" 2475 | gauge "~2.7.1" 2476 | set-blocking "~2.0.0" 2477 | 2478 | nth-check@~1.0.1: 2479 | version "1.0.1" 2480 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" 2481 | dependencies: 2482 | boolbase "~1.0.0" 2483 | 2484 | number-is-nan@^1.0.0: 2485 | version "1.0.1" 2486 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 2487 | 2488 | "nwmatcher@>= 1.3.9 < 2.0.0": 2489 | version "1.3.9" 2490 | resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 2491 | 2492 | oauth-sign@~0.8.1: 2493 | version "0.8.2" 2494 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 2495 | 2496 | object-assign@^4.0.1, object-assign@^4.1.0: 2497 | version "4.1.1" 2498 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2499 | 2500 | object-is@^1.0.1: 2501 | version "1.0.1" 2502 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" 2503 | 2504 | object-keys@^1.0.10, object-keys@^1.0.8: 2505 | version "1.0.11" 2506 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" 2507 | 2508 | object.assign@^4.0.4: 2509 | version "4.0.4" 2510 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc" 2511 | dependencies: 2512 | define-properties "^1.1.2" 2513 | function-bind "^1.1.0" 2514 | object-keys "^1.0.10" 2515 | 2516 | object.entries@^1.0.3: 2517 | version "1.0.4" 2518 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.0.4.tgz#1bf9a4dd2288f5b33f3a993d257661f05d161a5f" 2519 | dependencies: 2520 | define-properties "^1.1.2" 2521 | es-abstract "^1.6.1" 2522 | function-bind "^1.1.0" 2523 | has "^1.0.1" 2524 | 2525 | object.omit@^2.0.0: 2526 | version "2.0.1" 2527 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 2528 | dependencies: 2529 | for-own "^0.1.4" 2530 | is-extendable "^0.1.1" 2531 | 2532 | object.values@^1.0.3: 2533 | version "1.0.4" 2534 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz#e524da09b4f66ff05df457546ec72ac99f13069a" 2535 | dependencies: 2536 | define-properties "^1.1.2" 2537 | es-abstract "^1.6.1" 2538 | function-bind "^1.1.0" 2539 | has "^1.0.1" 2540 | 2541 | on-finished@~2.3.0: 2542 | version "2.3.0" 2543 | resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" 2544 | dependencies: 2545 | ee-first "1.1.1" 2546 | 2547 | on-headers@~1.0.1: 2548 | version "1.0.1" 2549 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" 2550 | 2551 | once@^1.3.0, once@^1.3.3: 2552 | version "1.4.0" 2553 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2554 | dependencies: 2555 | wrappy "1" 2556 | 2557 | open@0.0.5: 2558 | version "0.0.5" 2559 | resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc" 2560 | 2561 | optimist@>=0.3.4, optimist@~0.6.0, optimist@~0.6.1: 2562 | version "0.6.1" 2563 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 2564 | dependencies: 2565 | minimist "~0.0.1" 2566 | wordwrap "~0.0.2" 2567 | 2568 | optionator@^0.8.1: 2569 | version "0.8.2" 2570 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 2571 | dependencies: 2572 | deep-is "~0.1.3" 2573 | fast-levenshtein "~2.0.4" 2574 | levn "~0.3.0" 2575 | prelude-ls "~1.1.2" 2576 | type-check "~0.3.2" 2577 | wordwrap "~1.0.0" 2578 | 2579 | original@>=0.0.5: 2580 | version "1.0.0" 2581 | resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" 2582 | dependencies: 2583 | url-parse "1.0.x" 2584 | 2585 | os-browserify@^0.2.0: 2586 | version "0.2.1" 2587 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2588 | 2589 | os-homedir@^1.0.0: 2590 | version "1.0.2" 2591 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2592 | 2593 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2594 | version "1.0.2" 2595 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2596 | 2597 | osenv@^0.1.4: 2598 | version "0.1.4" 2599 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2600 | dependencies: 2601 | os-homedir "^1.0.0" 2602 | os-tmpdir "^1.0.0" 2603 | 2604 | pako@~0.2.0: 2605 | version "0.2.9" 2606 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2607 | 2608 | param-case@2.1.x: 2609 | version "2.1.1" 2610 | resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" 2611 | dependencies: 2612 | no-case "^2.2.0" 2613 | 2614 | parse-glob@^3.0.4: 2615 | version "3.0.4" 2616 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2617 | dependencies: 2618 | glob-base "^0.3.0" 2619 | is-dotfile "^1.0.0" 2620 | is-extglob "^1.0.0" 2621 | is-glob "^2.0.0" 2622 | 2623 | parse5@^1.5.1: 2624 | version "1.5.1" 2625 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-1.5.1.tgz#9b7f3b0de32be78dc2401b17573ccaf0f6f59d94" 2626 | 2627 | parseurl@~1.3.1: 2628 | version "1.3.1" 2629 | resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" 2630 | 2631 | path-browserify@0.0.0: 2632 | version "0.0.0" 2633 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2634 | 2635 | path-exists@^2.0.0: 2636 | version "2.1.0" 2637 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2638 | dependencies: 2639 | pinkie-promise "^2.0.0" 2640 | 2641 | path-is-absolute@^1.0.0: 2642 | version "1.0.1" 2643 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2644 | 2645 | path-to-regexp@0.1.7: 2646 | version "0.1.7" 2647 | resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" 2648 | 2649 | pbkdf2-compat@2.0.1: 2650 | version "2.0.1" 2651 | resolved "https://registry.yarnpkg.com/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288" 2652 | 2653 | performance-now@^0.2.0: 2654 | version "0.2.0" 2655 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2656 | 2657 | pinkie-promise@^2.0.0: 2658 | version "2.0.1" 2659 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2660 | dependencies: 2661 | pinkie "^2.0.0" 2662 | 2663 | pinkie@^2.0.0: 2664 | version "2.0.4" 2665 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2666 | 2667 | pkg-dir@^1.0.0: 2668 | version "1.0.0" 2669 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2670 | dependencies: 2671 | find-up "^1.0.0" 2672 | 2673 | prelude-ls@~1.1.2: 2674 | version "1.1.2" 2675 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2676 | 2677 | preserve@^0.2.0: 2678 | version "0.2.0" 2679 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2680 | 2681 | pretty-error@^2.0.2: 2682 | version "2.1.0" 2683 | resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.0.tgz#87f4e9d706a24c87d6cbee9fabec001fcf8c75d8" 2684 | dependencies: 2685 | renderkid "^2.0.1" 2686 | utila "~0.4" 2687 | 2688 | private@^0.1.6: 2689 | version "0.1.7" 2690 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2691 | 2692 | process-nextick-args@~1.0.6: 2693 | version "1.0.7" 2694 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2695 | 2696 | process@^0.11.0: 2697 | version "0.11.9" 2698 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" 2699 | 2700 | promise@^7.1.1: 2701 | version "7.1.1" 2702 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.1.1.tgz#489654c692616b8aa55b0724fa809bb7db49c5bf" 2703 | dependencies: 2704 | asap "~2.0.3" 2705 | 2706 | proxy-addr@~1.1.3: 2707 | version "1.1.4" 2708 | resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" 2709 | dependencies: 2710 | forwarded "~0.1.0" 2711 | ipaddr.js "1.3.0" 2712 | 2713 | prr@~0.0.0: 2714 | version "0.0.0" 2715 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2716 | 2717 | punycode@1.3.2: 2718 | version "1.3.2" 2719 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2720 | 2721 | punycode@^1.2.4, punycode@^1.4.1: 2722 | version "1.4.1" 2723 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2724 | 2725 | qs@6.4.0, qs@~6.4.0: 2726 | version "6.4.0" 2727 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2728 | 2729 | query-string@^2.3.0: 2730 | version "2.4.2" 2731 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-2.4.2.tgz#7db0666420804baa92ae9f268962855a76143dfb" 2732 | dependencies: 2733 | strict-uri-encode "^1.0.0" 2734 | 2735 | query-string@^4.2.2: 2736 | version "4.3.2" 2737 | resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.2.tgz#ec0fd765f58a50031a3968c2431386f8947a5cdd" 2738 | dependencies: 2739 | object-assign "^4.1.0" 2740 | strict-uri-encode "^1.0.0" 2741 | 2742 | querystring-es3@^0.2.0: 2743 | version "0.2.1" 2744 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2745 | 2746 | querystring@0.2.0: 2747 | version "0.2.0" 2748 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2749 | 2750 | querystringify@0.0.x: 2751 | version "0.0.4" 2752 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" 2753 | 2754 | randomatic@^1.1.3: 2755 | version "1.1.6" 2756 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" 2757 | dependencies: 2758 | is-number "^2.0.2" 2759 | kind-of "^3.0.2" 2760 | 2761 | range-parser@^1.0.3, range-parser@~1.2.0: 2762 | version "1.2.0" 2763 | resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" 2764 | 2765 | rc@^1.1.7: 2766 | version "1.2.1" 2767 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2768 | dependencies: 2769 | deep-extend "~0.4.0" 2770 | ini "~1.3.0" 2771 | minimist "^1.2.0" 2772 | strip-json-comments "~2.0.1" 2773 | 2774 | react-addons-create-fragment@^15.0.0: 2775 | version "15.5.1" 2776 | resolved "https://registry.yarnpkg.com/react-addons-create-fragment/-/react-addons-create-fragment-15.5.1.tgz#62c2427ee1e32fcd511f612cf3fe326ef9671b1c" 2777 | dependencies: 2778 | fbjs "^0.8.4" 2779 | object-assign "^4.1.0" 2780 | 2781 | react-addons-shallow-compare@^15.4.2: 2782 | version "15.5.0" 2783 | resolved "https://registry.yarnpkg.com/react-addons-shallow-compare/-/react-addons-shallow-compare-15.5.0.tgz#4d95c68a5537ccb75f395169b64db1745617fab5" 2784 | dependencies: 2785 | fbjs "^0.8.4" 2786 | object-assign "^4.1.0" 2787 | 2788 | react-addons-test-utils@^15.2.1: 2789 | version "15.4.2" 2790 | resolved "https://registry.yarnpkg.com/react-addons-test-utils/-/react-addons-test-utils-15.4.2.tgz#93bcaa718fcae7360d42e8fb1c09756cc36302a2" 2791 | dependencies: 2792 | fbjs "^0.8.4" 2793 | object-assign "^4.1.0" 2794 | 2795 | react-addons-transition-group@^15.0.0: 2796 | version "15.5.0" 2797 | resolved "https://registry.yarnpkg.com/react-addons-transition-group/-/react-addons-transition-group-15.5.0.tgz#4a7dd48d2061f49a8977396f9e7c3f40f1b07a40" 2798 | dependencies: 2799 | fbjs "^0.8.4" 2800 | object-assign "^4.1.0" 2801 | 2802 | react-dom@^15.2.1: 2803 | version "15.4.2" 2804 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f" 2805 | dependencies: 2806 | fbjs "^0.8.1" 2807 | loose-envify "^1.1.0" 2808 | object-assign "^4.1.0" 2809 | 2810 | react-event-listener@^0.4.0: 2811 | version "0.4.3" 2812 | resolved "https://registry.yarnpkg.com/react-event-listener/-/react-event-listener-0.4.3.tgz#a0aaa447555fbaa5c398a06b6ad47935bba961a8" 2813 | dependencies: 2814 | babel-runtime "^6.20.0" 2815 | react-addons-shallow-compare "^15.4.2" 2816 | warning "^3.0.0" 2817 | 2818 | react-hot-api@^0.4.5: 2819 | version "0.4.7" 2820 | resolved "https://registry.yarnpkg.com/react-hot-api/-/react-hot-api-0.4.7.tgz#a7e22a56d252e11abd9366b61264cf4492c58171" 2821 | 2822 | react-hot-loader@^1.3.0: 2823 | version "1.3.1" 2824 | resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-1.3.1.tgz#c95647ae78b73dfceff6ec71ffcb04182ff6daf9" 2825 | dependencies: 2826 | react-hot-api "^0.4.5" 2827 | source-map "^0.4.4" 2828 | 2829 | react-redux@^4.4.5: 2830 | version "4.4.7" 2831 | resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-4.4.7.tgz#74fbea055e81591aacb14dac0dfb80c6428424db" 2832 | dependencies: 2833 | hoist-non-react-statics "^1.0.3" 2834 | invariant "^2.0.0" 2835 | lodash "^4.2.0" 2836 | loose-envify "^1.1.0" 2837 | 2838 | react-router-redux@^4.0.7: 2839 | version "4.0.8" 2840 | resolved "https://registry.yarnpkg.com/react-router-redux/-/react-router-redux-4.0.8.tgz#227403596b5151e182377dab835b5d45f0f8054e" 2841 | 2842 | react-router@^3.0.0: 2843 | version "3.0.3" 2844 | resolved "https://registry.yarnpkg.com/react-router/-/react-router-3.0.3.tgz#e95304b2e418482e5ecff2699d2b8aae52d5f884" 2845 | dependencies: 2846 | history "^3.0.0" 2847 | hoist-non-react-statics "^1.2.0" 2848 | invariant "^2.2.1" 2849 | loose-envify "^1.2.0" 2850 | warning "^3.0.0" 2851 | 2852 | react-tap-event-plugin@^2.0.1: 2853 | version "2.0.1" 2854 | resolved "https://registry.yarnpkg.com/react-tap-event-plugin/-/react-tap-event-plugin-2.0.1.tgz#316beb3bc6556e29ec869a7293e89c826a9074d2" 2855 | dependencies: 2856 | fbjs "^0.8.6" 2857 | 2858 | react@^15.2.1: 2859 | version "15.4.2" 2860 | resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef" 2861 | dependencies: 2862 | fbjs "^0.8.4" 2863 | loose-envify "^1.1.0" 2864 | object-assign "^4.1.0" 2865 | 2866 | readable-stream@1.0: 2867 | version "1.0.34" 2868 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 2869 | dependencies: 2870 | core-util-is "~1.0.0" 2871 | inherits "~2.0.1" 2872 | isarray "0.0.1" 2873 | string_decoder "~0.10.x" 2874 | 2875 | "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.4, readable-stream@^2.2.6: 2876 | version "2.2.6" 2877 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.6.tgz#8b43aed76e71483938d12a8d46c6cf1a00b1f816" 2878 | dependencies: 2879 | buffer-shims "^1.0.0" 2880 | core-util-is "~1.0.0" 2881 | inherits "~2.0.1" 2882 | isarray "~1.0.0" 2883 | process-nextick-args "~1.0.6" 2884 | string_decoder "~0.10.x" 2885 | util-deprecate "~1.0.1" 2886 | 2887 | readdirp@^2.0.0: 2888 | version "2.1.0" 2889 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2890 | dependencies: 2891 | graceful-fs "^4.1.2" 2892 | minimatch "^3.0.2" 2893 | readable-stream "^2.0.2" 2894 | set-immediate-shim "^1.0.1" 2895 | 2896 | recompose@^0.22.0: 2897 | version "0.22.0" 2898 | resolved "https://registry.yarnpkg.com/recompose/-/recompose-0.22.0.tgz#f099d18385882ca41d9eec891718dadddc3204ef" 2899 | dependencies: 2900 | change-emitter "^0.1.2" 2901 | fbjs "^0.8.1" 2902 | hoist-non-react-statics "^1.0.0" 2903 | symbol-observable "^1.0.4" 2904 | 2905 | redux-logger@^2.6.1: 2906 | version "2.10.2" 2907 | resolved "https://registry.yarnpkg.com/redux-logger/-/redux-logger-2.10.2.tgz#3c5a5f0a6f32577c1deadf6655f257f82c6c3937" 2908 | dependencies: 2909 | deep-diff "0.3.4" 2910 | 2911 | redux-thunk@^2.1.0: 2912 | version "2.2.0" 2913 | resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.2.0.tgz#e615a16e16b47a19a515766133d1e3e99b7852e5" 2914 | 2915 | redux@^3.5.2: 2916 | version "3.6.0" 2917 | resolved "https://registry.yarnpkg.com/redux/-/redux-3.6.0.tgz#887c2b3d0b9bd86eca2be70571c27654c19e188d" 2918 | dependencies: 2919 | lodash "^4.2.1" 2920 | lodash-es "^4.2.1" 2921 | loose-envify "^1.1.0" 2922 | symbol-observable "^1.0.2" 2923 | 2924 | regenerate@^1.2.1: 2925 | version "1.3.2" 2926 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2927 | 2928 | regenerator-runtime@^0.10.0: 2929 | version "0.10.3" 2930 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.3.tgz#8c4367a904b51ea62a908ac310bf99ff90a82a3e" 2931 | 2932 | regenerator-transform@0.9.8: 2933 | version "0.9.8" 2934 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c" 2935 | dependencies: 2936 | babel-runtime "^6.18.0" 2937 | babel-types "^6.19.0" 2938 | private "^0.1.6" 2939 | 2940 | regex-cache@^0.4.2: 2941 | version "0.4.3" 2942 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" 2943 | dependencies: 2944 | is-equal-shallow "^0.1.3" 2945 | is-primitive "^2.0.0" 2946 | 2947 | regexpu-core@^2.0.0: 2948 | version "2.0.0" 2949 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2950 | dependencies: 2951 | regenerate "^1.2.1" 2952 | regjsgen "^0.2.0" 2953 | regjsparser "^0.1.4" 2954 | 2955 | regjsgen@^0.2.0: 2956 | version "0.2.0" 2957 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2958 | 2959 | regjsparser@^0.1.4: 2960 | version "0.1.5" 2961 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2962 | dependencies: 2963 | jsesc "~0.5.0" 2964 | 2965 | relateurl@0.2.x: 2966 | version "0.2.7" 2967 | resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 2968 | 2969 | remove-trailing-separator@^1.0.1: 2970 | version "1.0.1" 2971 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4" 2972 | 2973 | renderkid@^2.0.1: 2974 | version "2.0.1" 2975 | resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" 2976 | dependencies: 2977 | css-select "^1.1.0" 2978 | dom-converter "~0.1" 2979 | htmlparser2 "~3.3.0" 2980 | strip-ansi "^3.0.0" 2981 | utila "~0.3" 2982 | 2983 | repeat-element@^1.1.2: 2984 | version "1.1.2" 2985 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2986 | 2987 | repeat-string@^1.5.2: 2988 | version "1.6.1" 2989 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2990 | 2991 | repeating@^2.0.0: 2992 | version "2.0.1" 2993 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2994 | dependencies: 2995 | is-finite "^1.0.0" 2996 | 2997 | request@^2.79.0, request@^2.81.0: 2998 | version "2.81.0" 2999 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 3000 | dependencies: 3001 | aws-sign2 "~0.6.0" 3002 | aws4 "^1.2.1" 3003 | caseless "~0.12.0" 3004 | combined-stream "~1.0.5" 3005 | extend "~3.0.0" 3006 | forever-agent "~0.6.1" 3007 | form-data "~2.1.1" 3008 | har-validator "~4.2.1" 3009 | hawk "~3.1.3" 3010 | http-signature "~1.1.0" 3011 | is-typedarray "~1.0.0" 3012 | isstream "~0.1.2" 3013 | json-stringify-safe "~5.0.1" 3014 | mime-types "~2.1.7" 3015 | oauth-sign "~0.8.1" 3016 | performance-now "^0.2.0" 3017 | qs "~6.4.0" 3018 | safe-buffer "^5.0.1" 3019 | stringstream "~0.0.4" 3020 | tough-cookie "~2.3.0" 3021 | tunnel-agent "^0.6.0" 3022 | uuid "^3.0.0" 3023 | 3024 | requires-port@1.0.x, requires-port@1.x.x: 3025 | version "1.0.0" 3026 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 3027 | 3028 | right-align@^0.1.1: 3029 | version "0.1.3" 3030 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 3031 | dependencies: 3032 | align-text "^0.1.1" 3033 | 3034 | rimraf@2, rimraf@^2.5.1, rimraf@^2.6.1: 3035 | version "2.6.1" 3036 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 3037 | dependencies: 3038 | glob "^7.0.5" 3039 | 3040 | ripemd160@0.2.0: 3041 | version "0.2.0" 3042 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce" 3043 | 3044 | safe-buffer@^5.0.1: 3045 | version "5.0.1" 3046 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.0.1.tgz#d263ca54696cd8a306b5ca6551e92de57918fbe7" 3047 | 3048 | sax@^1.2.1: 3049 | version "1.2.2" 3050 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828" 3051 | 3052 | semver@^5.3.0: 3053 | version "5.3.0" 3054 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 3055 | 3056 | send@0.15.1: 3057 | version "0.15.1" 3058 | resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f" 3059 | dependencies: 3060 | debug "2.6.1" 3061 | depd "~1.1.0" 3062 | destroy "~1.0.4" 3063 | encodeurl "~1.0.1" 3064 | escape-html "~1.0.3" 3065 | etag "~1.8.0" 3066 | fresh "0.5.0" 3067 | http-errors "~1.6.1" 3068 | mime "1.3.4" 3069 | ms "0.7.2" 3070 | on-finished "~2.3.0" 3071 | range-parser "~1.2.0" 3072 | statuses "~1.3.1" 3073 | 3074 | serve-index@^1.7.2: 3075 | version "1.8.0" 3076 | resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.8.0.tgz#7c5d96c13fb131101f93c1c5774f8516a1e78d3b" 3077 | dependencies: 3078 | accepts "~1.3.3" 3079 | batch "0.5.3" 3080 | debug "~2.2.0" 3081 | escape-html "~1.0.3" 3082 | http-errors "~1.5.0" 3083 | mime-types "~2.1.11" 3084 | parseurl "~1.3.1" 3085 | 3086 | serve-static@1.12.1: 3087 | version "1.12.1" 3088 | resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.1.tgz#7443a965e3ced647aceb5639fa06bf4d1bbe0039" 3089 | dependencies: 3090 | encodeurl "~1.0.1" 3091 | escape-html "~1.0.3" 3092 | parseurl "~1.3.1" 3093 | send "0.15.1" 3094 | 3095 | set-blocking@~2.0.0: 3096 | version "2.0.0" 3097 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 3098 | 3099 | set-immediate-shim@^1.0.1: 3100 | version "1.0.1" 3101 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 3102 | 3103 | setimmediate@^1.0.4, setimmediate@^1.0.5: 3104 | version "1.0.5" 3105 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 3106 | 3107 | setprototypeof@1.0.2: 3108 | version "1.0.2" 3109 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" 3110 | 3111 | setprototypeof@1.0.3: 3112 | version "1.0.3" 3113 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" 3114 | 3115 | sha.js@2.2.6: 3116 | version "2.2.6" 3117 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba" 3118 | 3119 | sigmund@~1.0.0: 3120 | version "1.0.1" 3121 | resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 3122 | 3123 | signal-exit@^3.0.0: 3124 | version "3.0.2" 3125 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 3126 | 3127 | simple-assign@^0.1.0: 3128 | version "0.1.0" 3129 | resolved "https://registry.yarnpkg.com/simple-assign/-/simple-assign-0.1.0.tgz#17fd3066a5f3d7738f50321bb0f14ca281cc4baa" 3130 | 3131 | slash@^1.0.0: 3132 | version "1.0.0" 3133 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 3134 | 3135 | sntp@1.x.x: 3136 | version "1.0.9" 3137 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 3138 | dependencies: 3139 | hoek "2.x.x" 3140 | 3141 | sockjs-client@^1.0.3: 3142 | version "1.1.2" 3143 | resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.2.tgz#f0212a8550e4c9468c8cceaeefd2e3493c033ad5" 3144 | dependencies: 3145 | debug "^2.2.0" 3146 | eventsource "0.1.6" 3147 | faye-websocket "~0.11.0" 3148 | inherits "^2.0.1" 3149 | json3 "^3.3.2" 3150 | url-parse "^1.1.1" 3151 | 3152 | sockjs@^0.3.15: 3153 | version "0.3.18" 3154 | resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" 3155 | dependencies: 3156 | faye-websocket "^0.10.0" 3157 | uuid "^2.0.2" 3158 | 3159 | soundcloud@^3.1.2: 3160 | version "3.1.2" 3161 | resolved "https://registry.yarnpkg.com/soundcloud/-/soundcloud-3.1.2.tgz#a4ab2b1e14ec3195f6eaf89e742812e47f7954aa" 3162 | dependencies: 3163 | es6-promise "^2.3.0" 3164 | form-urlencoded "^0.1.4" 3165 | node-static "^0.7.7" 3166 | query-string "^2.3.0" 3167 | 3168 | source-list-map@~0.1.7: 3169 | version "0.1.8" 3170 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" 3171 | 3172 | source-map-support@^0.4.2: 3173 | version "0.4.14" 3174 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.14.tgz#9d4463772598b86271b4f523f6c1f4e02a7d6aef" 3175 | dependencies: 3176 | source-map "^0.5.6" 3177 | 3178 | source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.1: 3179 | version "0.5.6" 3180 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" 3181 | 3182 | source-map@^0.4.4, source-map@~0.4.1: 3183 | version "0.4.4" 3184 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 3185 | dependencies: 3186 | amdefine ">=0.0.4" 3187 | 3188 | source-map@~0.2.0: 3189 | version "0.2.0" 3190 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.2.0.tgz#dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d" 3191 | dependencies: 3192 | amdefine ">=0.0.4" 3193 | 3194 | sshpk@^1.7.0: 3195 | version "1.11.0" 3196 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.11.0.tgz#2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77" 3197 | dependencies: 3198 | asn1 "~0.2.3" 3199 | assert-plus "^1.0.0" 3200 | dashdash "^1.12.0" 3201 | getpass "^0.1.1" 3202 | optionalDependencies: 3203 | bcrypt-pbkdf "^1.0.0" 3204 | ecc-jsbn "~0.1.1" 3205 | jodid25519 "^1.0.0" 3206 | jsbn "~0.1.0" 3207 | tweetnacl "~0.14.0" 3208 | 3209 | "statuses@>= 1.3.1 < 2", statuses@~1.3.1: 3210 | version "1.3.1" 3211 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" 3212 | 3213 | stream-browserify@^2.0.1: 3214 | version "2.0.1" 3215 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 3216 | dependencies: 3217 | inherits "~2.0.1" 3218 | readable-stream "^2.0.2" 3219 | 3220 | stream-cache@~0.0.1: 3221 | version "0.0.2" 3222 | resolved "https://registry.yarnpkg.com/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f" 3223 | 3224 | stream-http@^2.3.1: 3225 | version "2.7.0" 3226 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.0.tgz#cec1f4e3b494bc4a81b451808970f8b20b4ed5f6" 3227 | dependencies: 3228 | builtin-status-codes "^3.0.0" 3229 | inherits "^2.0.1" 3230 | readable-stream "^2.2.6" 3231 | to-arraybuffer "^1.0.0" 3232 | xtend "^4.0.0" 3233 | 3234 | strict-uri-encode@^1.0.0: 3235 | version "1.1.0" 3236 | resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 3237 | 3238 | string-width@^1.0.1: 3239 | version "1.0.2" 3240 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 3241 | dependencies: 3242 | code-point-at "^1.0.0" 3243 | is-fullwidth-code-point "^1.0.0" 3244 | strip-ansi "^3.0.0" 3245 | 3246 | string_decoder@^0.10.25, string_decoder@~0.10.x: 3247 | version "0.10.31" 3248 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 3249 | 3250 | stringstream@~0.0.4: 3251 | version "0.0.5" 3252 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 3253 | 3254 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 3255 | version "3.0.1" 3256 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 3257 | dependencies: 3258 | ansi-regex "^2.0.0" 3259 | 3260 | strip-json-comments@~2.0.1: 3261 | version "2.0.1" 3262 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 3263 | 3264 | supports-color@1.2.0: 3265 | version "1.2.0" 3266 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" 3267 | 3268 | supports-color@^2.0.0: 3269 | version "2.0.0" 3270 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 3271 | 3272 | supports-color@^3.1.0, supports-color@^3.1.1: 3273 | version "3.2.3" 3274 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 3275 | dependencies: 3276 | has-flag "^1.0.0" 3277 | 3278 | symbol-observable@^1.0.2, symbol-observable@^1.0.4: 3279 | version "1.0.4" 3280 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 3281 | 3282 | symbol-tree@^3.2.1: 3283 | version "3.2.2" 3284 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" 3285 | 3286 | tapable@^0.1.8, tapable@~0.1.8: 3287 | version "0.1.10" 3288 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4" 3289 | 3290 | tar-pack@^3.4.0: 3291 | version "3.4.0" 3292 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 3293 | dependencies: 3294 | debug "^2.2.0" 3295 | fstream "^1.0.10" 3296 | fstream-ignore "^1.0.5" 3297 | once "^1.3.3" 3298 | readable-stream "^2.1.4" 3299 | rimraf "^2.5.1" 3300 | tar "^2.2.1" 3301 | uid-number "^0.0.6" 3302 | 3303 | tar@^2.2.1: 3304 | version "2.2.1" 3305 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 3306 | dependencies: 3307 | block-stream "*" 3308 | fstream "^1.0.2" 3309 | inherits "2" 3310 | 3311 | timers-browserify@^2.0.2: 3312 | version "2.0.2" 3313 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.2.tgz#ab4883cf597dcd50af211349a00fbca56ac86b86" 3314 | dependencies: 3315 | setimmediate "^1.0.4" 3316 | 3317 | to-arraybuffer@^1.0.0: 3318 | version "1.0.1" 3319 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 3320 | 3321 | to-fast-properties@^1.0.1: 3322 | version "1.0.2" 3323 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" 3324 | 3325 | to-iso-string@0.0.2: 3326 | version "0.0.2" 3327 | resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" 3328 | 3329 | toposort@^1.0.0: 3330 | version "1.0.3" 3331 | resolved "https://registry.yarnpkg.com/toposort/-/toposort-1.0.3.tgz#f02cd8a74bd8be2fc0e98611c3bacb95a171869c" 3332 | 3333 | tough-cookie@^2.3.2, tough-cookie@~2.3.0: 3334 | version "2.3.2" 3335 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 3336 | dependencies: 3337 | punycode "^1.4.1" 3338 | 3339 | tr46@~0.0.3: 3340 | version "0.0.3" 3341 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3342 | 3343 | trim-right@^1.0.1: 3344 | version "1.0.1" 3345 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 3346 | 3347 | tty-browserify@0.0.0: 3348 | version "0.0.0" 3349 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 3350 | 3351 | tunnel-agent@^0.6.0: 3352 | version "0.6.0" 3353 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 3354 | dependencies: 3355 | safe-buffer "^5.0.1" 3356 | 3357 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 3358 | version "0.14.5" 3359 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 3360 | 3361 | type-check@~0.3.2: 3362 | version "0.3.2" 3363 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 3364 | dependencies: 3365 | prelude-ls "~1.1.2" 3366 | 3367 | type-detect@0.1.1: 3368 | version "0.1.1" 3369 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822" 3370 | 3371 | type-detect@^1.0.0: 3372 | version "1.0.0" 3373 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2" 3374 | 3375 | type-is@~1.6.14: 3376 | version "1.6.15" 3377 | resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" 3378 | dependencies: 3379 | media-typer "0.3.0" 3380 | mime-types "~2.1.15" 3381 | 3382 | ua-parser-js@^0.7.9: 3383 | version "0.7.12" 3384 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.12.tgz#04c81a99bdd5dc52263ea29d24c6bf8d4818a4bb" 3385 | 3386 | uglify-js@2.8.x: 3387 | version "2.8.21" 3388 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.21.tgz#1733f669ae6f82fc90c7b25ec0f5c783ee375314" 3389 | dependencies: 3390 | source-map "~0.5.1" 3391 | yargs "~3.10.0" 3392 | optionalDependencies: 3393 | uglify-to-browserify "~1.0.0" 3394 | 3395 | uglify-js@~2.7.3: 3396 | version "2.7.5" 3397 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.7.5.tgz#4612c0c7baaee2ba7c487de4904ae122079f2ca8" 3398 | dependencies: 3399 | async "~0.2.6" 3400 | source-map "~0.5.1" 3401 | uglify-to-browserify "~1.0.0" 3402 | yargs "~3.10.0" 3403 | 3404 | uglify-to-browserify@~1.0.0: 3405 | version "1.0.2" 3406 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 3407 | 3408 | uid-number@^0.0.6: 3409 | version "0.0.6" 3410 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 3411 | 3412 | unpipe@~1.0.0: 3413 | version "1.0.0" 3414 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" 3415 | 3416 | upper-case@^1.1.1: 3417 | version "1.1.3" 3418 | resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 3419 | 3420 | url-parse@1.0.x: 3421 | version "1.0.5" 3422 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" 3423 | dependencies: 3424 | querystringify "0.0.x" 3425 | requires-port "1.0.x" 3426 | 3427 | url-parse@^1.1.1: 3428 | version "1.1.8" 3429 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.8.tgz#7a65b3a8d57a1e86af6b4e2276e34774167c0156" 3430 | dependencies: 3431 | querystringify "0.0.x" 3432 | requires-port "1.0.x" 3433 | 3434 | url@^0.11.0: 3435 | version "0.11.0" 3436 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 3437 | dependencies: 3438 | punycode "1.3.2" 3439 | querystring "0.2.0" 3440 | 3441 | util-deprecate@~1.0.1: 3442 | version "1.0.2" 3443 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 3444 | 3445 | util@0.10.3, util@^0.10.3: 3446 | version "0.10.3" 3447 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 3448 | dependencies: 3449 | inherits "2.0.1" 3450 | 3451 | utila@~0.3: 3452 | version "0.3.3" 3453 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.3.3.tgz#d7e8e7d7e309107092b05f8d9688824d633a4226" 3454 | 3455 | utila@~0.4: 3456 | version "0.4.0" 3457 | resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" 3458 | 3459 | utils-merge@1.0.0: 3460 | version "1.0.0" 3461 | resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" 3462 | 3463 | uuid@^2.0.2, uuid@^2.0.3: 3464 | version "2.0.3" 3465 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" 3466 | 3467 | uuid@^3.0.0: 3468 | version "3.0.1" 3469 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" 3470 | 3471 | vary@~1.1.0: 3472 | version "1.1.1" 3473 | resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" 3474 | 3475 | verror@1.3.6: 3476 | version "1.3.6" 3477 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" 3478 | dependencies: 3479 | extsprintf "1.0.2" 3480 | 3481 | vm-browserify@0.0.4: 3482 | version "0.0.4" 3483 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 3484 | dependencies: 3485 | indexof "0.0.1" 3486 | 3487 | warning@^3.0.0: 3488 | version "3.0.0" 3489 | resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" 3490 | dependencies: 3491 | loose-envify "^1.0.0" 3492 | 3493 | watchpack@^0.2.1: 3494 | version "0.2.9" 3495 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b" 3496 | dependencies: 3497 | async "^0.9.0" 3498 | chokidar "^1.0.0" 3499 | graceful-fs "^4.1.2" 3500 | 3501 | webidl-conversions@^3.0.0: 3502 | version "3.0.1" 3503 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3504 | 3505 | webidl-conversions@^4.0.0: 3506 | version "4.0.1" 3507 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0" 3508 | 3509 | webpack-core@~0.6.9: 3510 | version "0.6.9" 3511 | resolved "https://registry.yarnpkg.com/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2" 3512 | dependencies: 3513 | source-list-map "~0.1.7" 3514 | source-map "~0.4.1" 3515 | 3516 | webpack-dev-middleware@^1.4.0: 3517 | version "1.10.1" 3518 | resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.10.1.tgz#c6b4cf428139cf1aefbe06a0c00fdb4f8da2f893" 3519 | dependencies: 3520 | memory-fs "~0.4.1" 3521 | mime "^1.3.4" 3522 | path-is-absolute "^1.0.0" 3523 | range-parser "^1.0.3" 3524 | 3525 | webpack-dev-server@^1.14.1: 3526 | version "1.16.3" 3527 | resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-1.16.3.tgz#cbb6a0d3e7c8eb5453b3e9befcbe843219f62661" 3528 | dependencies: 3529 | compression "^1.5.2" 3530 | connect-history-api-fallback "^1.3.0" 3531 | express "^4.13.3" 3532 | http-proxy-middleware "~0.17.1" 3533 | open "0.0.5" 3534 | optimist "~0.6.1" 3535 | serve-index "^1.7.2" 3536 | sockjs "^0.3.15" 3537 | sockjs-client "^1.0.3" 3538 | stream-cache "~0.0.1" 3539 | strip-ansi "^3.0.0" 3540 | supports-color "^3.1.1" 3541 | webpack-dev-middleware "^1.4.0" 3542 | 3543 | webpack@^1.13.1: 3544 | version "1.14.0" 3545 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-1.14.0.tgz#54f1ffb92051a328a5b2057d6ae33c289462c823" 3546 | dependencies: 3547 | acorn "^3.0.0" 3548 | async "^1.3.0" 3549 | clone "^1.0.2" 3550 | enhanced-resolve "~0.9.0" 3551 | interpret "^0.6.4" 3552 | loader-utils "^0.2.11" 3553 | memory-fs "~0.3.0" 3554 | mkdirp "~0.5.0" 3555 | node-libs-browser "^0.7.0" 3556 | optimist "~0.6.0" 3557 | supports-color "^3.1.0" 3558 | tapable "~0.1.8" 3559 | uglify-js "~2.7.3" 3560 | watchpack "^0.2.1" 3561 | webpack-core "~0.6.9" 3562 | 3563 | websocket-driver@>=0.5.1: 3564 | version "0.6.5" 3565 | resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" 3566 | dependencies: 3567 | websocket-extensions ">=0.1.1" 3568 | 3569 | websocket-extensions@>=0.1.1: 3570 | version "0.1.1" 3571 | resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" 3572 | 3573 | whatwg-encoding@^1.0.1: 3574 | version "1.0.1" 3575 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.1.tgz#3c6c451a198ee7aec55b1ec61d0920c67801a5f4" 3576 | dependencies: 3577 | iconv-lite "0.4.13" 3578 | 3579 | whatwg-fetch@>=0.10.0, whatwg-fetch@^2.0.1: 3580 | version "2.0.3" 3581 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 3582 | 3583 | whatwg-url@^4.3.0: 3584 | version "4.7.0" 3585 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.7.0.tgz#202035ac1955b087cdd20fa8b58ded3ab1cd2af5" 3586 | dependencies: 3587 | tr46 "~0.0.3" 3588 | webidl-conversions "^3.0.0" 3589 | 3590 | wide-align@^1.1.0: 3591 | version "1.1.0" 3592 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad" 3593 | dependencies: 3594 | string-width "^1.0.1" 3595 | 3596 | window-size@0.1.0: 3597 | version "0.1.0" 3598 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 3599 | 3600 | wordwrap@0.0.2: 3601 | version "0.0.2" 3602 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 3603 | 3604 | wordwrap@~0.0.2: 3605 | version "0.0.3" 3606 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 3607 | 3608 | wordwrap@~1.0.0: 3609 | version "1.0.0" 3610 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 3611 | 3612 | wrappy@1: 3613 | version "1.0.2" 3614 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 3615 | 3616 | xml-char-classes@^1.0.0: 3617 | version "1.0.0" 3618 | resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" 3619 | 3620 | xml-name-validator@^2.0.1: 3621 | version "2.0.1" 3622 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635" 3623 | 3624 | xtend@^4.0.0: 3625 | version "4.0.1" 3626 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 3627 | 3628 | yargs@~3.10.0: 3629 | version "3.10.0" 3630 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 3631 | dependencies: 3632 | camelcase "^1.0.2" 3633 | cliui "^2.1.0" 3634 | decamelize "^1.0.0" 3635 | window-size "0.1.0" 3636 | -------------------------------------------------------------------------------- /first-react-component/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /first-react-component/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /first-react-component/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.js", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "html-webpack-plugin": "^2.21.0", 22 | "react-hot-loader": "^1.3.0", 23 | "webpack": "^1.13.1", 24 | "webpack-dev-server": "^1.14.1" 25 | }, 26 | "dependencies": { 27 | "react": "^15.2.1", 28 | "react-dom": "^15.2.1" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /first-react-component/src/components/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | 3 | export default class TrackList extends Component { 4 | static propTypes = { 5 | tracks: PropTypes.array 6 | } 7 | 8 | static defaultProps = { 9 | tracks: [] 10 | } 11 | 12 | render() { 13 | return ( 14 |
15 | { 16 | this.props.tracks.map((track, key) => { 17 | return
Track: {track.title}
; 18 | }) 19 | } 20 |
21 | ) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /first-react-component/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /first-react-component/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import TrackList from './components/TrackList'; 4 | 5 | const tracks = [ 6 | { 7 | id: 1, 8 | title: 'Em của ngày hôm qua' 9 | }, 10 | { 11 | id: 2, 12 | title: 'Cơn mưa ngang qua' 13 | } 14 | ]; 15 | 16 | ReactDOM.render( 17 | , 18 | document.getElementById('app') 19 | ); 20 | -------------------------------------------------------------------------------- /first-react-component/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true 28 | }, 29 | 30 | plugins: [ 31 | new HtmlWebpackPlugin({ 32 | template: 'src/index.html', 33 | inject: true 34 | }) 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /redux/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /redux/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /redux/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.js", 9 | "test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "chai": "^3.5.0", 22 | "enzyme": "^2.4.1", 23 | "html-webpack-plugin": "^2.21.0", 24 | "jsdom": "^9.4.1", 25 | "mocha": "^2.5.3", 26 | "react-addons-test-utils": "^15.2.1", 27 | "react-hot-loader": "^1.3.0", 28 | "webpack": "^1.13.1", 29 | "webpack-dev-server": "^1.14.1" 30 | }, 31 | "dependencies": { 32 | "react": "^15.2.1", 33 | "react-dom": "^15.2.1", 34 | "redux": "^3.5.2", 35 | "redux-logger": "^2.6.1" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /redux/src/actions/index.js: -------------------------------------------------------------------------------- 1 | import {setTracks} from './track'; 2 | 3 | export { 4 | setTracks 5 | }; 6 | -------------------------------------------------------------------------------- /redux/src/actions/track.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | export function setTracks(tracks) { 4 | return { 5 | type: ActionTypes.TRACKS_SET, 6 | tracks 7 | }; 8 | }; 9 | -------------------------------------------------------------------------------- /redux/src/components/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | 3 | export default class TrackList extends Component { 4 | static propTypes = { 5 | tracks: PropTypes.array 6 | } 7 | 8 | static defaultProps = { 9 | tracks: [] 10 | } 11 | 12 | render() { 13 | return ( 14 |
15 | { 16 | this.props.tracks.map((track, key) => { 17 | return
Track: {track.title}
; 18 | }) 19 | } 20 |
21 | ) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /redux/src/components/TrackList.spec.js: -------------------------------------------------------------------------------- 1 | import TrackList from './TrackList'; 2 | import {shallow} from 'enzyme'; 3 | 4 | describe('TrackList', () => { 5 | 6 | it('shows two tracks', () => { 7 | const props = { 8 | tracks: [{ id: 1, title: 'foo' }, { id: 2, title: 'bar' }] 9 | }; 10 | const element = shallow(); 11 | 12 | expect(element.find('div > div')).to.have.length(2); 13 | }); 14 | 15 | it('shows track title', () => { 16 | const props = { 17 | tracks: [{ id: 1, title: 'foo' }] 18 | } 19 | const element = shallow(); 20 | 21 | expect(element.contains('foo')).to.be.true; 22 | }) 23 | 24 | }); 25 | -------------------------------------------------------------------------------- /redux/src/core/constants.js: -------------------------------------------------------------------------------- 1 | export const ActionTypes = { 2 | TRACKS_SET: 'TRACKS_SET' 3 | } 4 | -------------------------------------------------------------------------------- /redux/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /redux/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import TrackList from './components/TrackList'; 4 | import {configureStore} from './store'; 5 | import * as actions from './actions'; 6 | 7 | const tracks = [ 8 | { 9 | id: 1, 10 | title: 'Em của ngày hôm qua' 11 | }, 12 | { 13 | id: 2, 14 | title: 'Cơn mưa ngang qua' 15 | } 16 | ]; 17 | 18 | const store = configureStore(); 19 | store.dispatch(actions.setTracks(tracks)); 20 | 21 | ReactDOM.render( 22 | , 23 | document.getElementById('app') 24 | ); 25 | -------------------------------------------------------------------------------- /redux/src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import {combineReducers} from 'redux'; 2 | import track from './track'; 3 | 4 | export default combineReducers({ 5 | track 6 | }); 7 | -------------------------------------------------------------------------------- /redux/src/reducers/track.js: -------------------------------------------------------------------------------- 1 | import {ActionTypes} from '../core/constants'; 2 | 3 | const initialState = []; 4 | 5 | export default function(state = initialState, action) { 6 | switch (action.type) { 7 | case ActionTypes.TRACKS_SET: 8 | return setTracks(state, action); 9 | } 10 | 11 | return state; 12 | } 13 | 14 | function setTracks(state, action) { 15 | const {tracks} = action; 16 | return [...state, ...tracks]; 17 | } 18 | -------------------------------------------------------------------------------- /redux/src/store.js: -------------------------------------------------------------------------------- 1 | import {createStore, applyMiddleware} from 'redux'; 2 | import createLogger from 'redux-logger'; 3 | import rootReducer from './reducers/index'; 4 | 5 | const logger = createLogger(); 6 | 7 | const createStoreWithMiddleware = applyMiddleware(logger)(createStore); 8 | 9 | export function configureStore(initialState) { 10 | return createStoreWithMiddleware(rootReducer, initialState); 11 | } 12 | -------------------------------------------------------------------------------- /redux/test/setup.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {expect} from 'chai'; 3 | import jsdom from 'jsdom'; 4 | 5 | const document = jsdom.jsdom(''); 6 | const window = document.defaultView; 7 | 8 | global.document = document; 9 | global.window = window; 10 | 11 | Object.keys(window).forEach((key) => { 12 | if (!(key in global)) { 13 | global[key] = window[key]; 14 | } 15 | }); 16 | 17 | global.React = React; 18 | global.expect = expect; 19 | -------------------------------------------------------------------------------- /redux/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true 28 | }, 29 | 30 | plugins: [ 31 | new HtmlWebpackPlugin({ 32 | template: 'src/index.html', 33 | inject: true 34 | }) 35 | ] 36 | } 37 | -------------------------------------------------------------------------------- /testing-setup/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015", 4 | "react", 5 | "stage-1", 6 | "stage-2" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /testing-setup/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | -------------------------------------------------------------------------------- /testing-setup/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "soundcloud-client", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "start": "webpack-dev-server --progress --colors --hot --config ./webpack.config.js", 8 | "build": "webpack --progress --colors --config ./webpack.config.js", 9 | "test": "mocha --compilers js:babel-core/register --require ./test/setup.js 'src/**/*spec.js'" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "devDependencies": { 15 | "babel-core": "^6.10.4", 16 | "babel-loader": "^6.2.4", 17 | "babel-preset-es2015": "^6.9.0", 18 | "babel-preset-react": "^6.11.1", 19 | "babel-preset-stage-1": "^6.5.0", 20 | "babel-preset-stage-2": "^6.11.0", 21 | "chai": "^3.5.0", 22 | "enzyme": "^2.4.1", 23 | "html-webpack-plugin": "^2.21.0", 24 | "jsdom": "^9.4.1", 25 | "mocha": "^2.5.3", 26 | "react-addons-test-utils": "^15.2.1", 27 | "react-hot-loader": "^1.3.0", 28 | "webpack": "^1.13.1", 29 | "webpack-dev-server": "^1.14.1" 30 | }, 31 | "dependencies": { 32 | "react": "^15.2.1", 33 | "react-dom": "^15.2.1" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /testing-setup/src/components/TrackList.js: -------------------------------------------------------------------------------- 1 | import React, {Component, PropTypes} from 'react'; 2 | 3 | export default class TrackList extends Component { 4 | static propTypes = { 5 | tracks: PropTypes.array 6 | } 7 | 8 | static defaultProps = { 9 | tracks: [] 10 | } 11 | 12 | render() { 13 | return ( 14 |
15 | { 16 | this.props.tracks.map((track, key) => { 17 | return
Track: {track.title}
; 18 | }) 19 | } 20 |
21 | ) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /testing-setup/src/components/TrackList.spec.js: -------------------------------------------------------------------------------- 1 | import TrackList from './TrackList'; 2 | import {shallow} from 'enzyme'; 3 | 4 | describe('TrackList', () => { 5 | 6 | it('shows two tracks', () => { 7 | const props = { 8 | tracks: [{ id: 1, title: 'foo' }, { id: 2, title: 'bar' }] 9 | }; 10 | const element = shallow(); 11 | 12 | expect(element.find('div > div')).to.have.length(2); 13 | }); 14 | 15 | it('shows track title', () => { 16 | const props = { 17 | tracks: [{ id: 1, title: 'foo' }] 18 | } 19 | const element = shallow(); 20 | 21 | expect(element.contains('foo')).to.be.true; 22 | }) 23 | 24 | }); 25 | -------------------------------------------------------------------------------- /testing-setup/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Soundcloud Client 7 | 8 | 9 |
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /testing-setup/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import TrackList from './components/TrackList'; 4 | 5 | const tracks = [ 6 | { 7 | id: 1, 8 | title: 'Em của ngày hôm qua' 9 | }, 10 | { 11 | id: 2, 12 | title: 'Cơn mưa ngang qua' 13 | } 14 | ]; 15 | 16 | ReactDOM.render( 17 | , 18 | document.getElementById('app') 19 | ); 20 | -------------------------------------------------------------------------------- /testing-setup/test/setup.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import {expect} from 'chai'; 3 | import jsdom from 'jsdom'; 4 | 5 | const document = jsdom.jsdom(''); 6 | const window = document.defaultView; 7 | 8 | global.document = document; 9 | global.window = window; 10 | 11 | Object.keys(window).forEach((key) => { 12 | if (!(key in global)) { 13 | global[key] = window[key]; 14 | } 15 | }); 16 | 17 | global.React = React; 18 | global.expect = expect; 19 | -------------------------------------------------------------------------------- /testing-setup/webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const HtmlWebpackPlugin = require('html-webpack-plugin') 3 | 4 | module.exports = { 5 | entry: [ 6 | 'webpack-dev-server/client?http://localhost:8080', 7 | 'webpack/hot/only-dev-server', 8 | './src/index.js' 9 | ], 10 | 11 | module: { 12 | loaders: [{ 13 | test: /\.js?$/, 14 | exclude: /node_modules/, 15 | loader: 'react-hot!babel' 16 | }] 17 | }, 18 | 19 | output: { 20 | path: __dirname + '/build', 21 | publicPath: '/', 22 | filename: 'app.js' 23 | }, 24 | 25 | devServer: { 26 | contentBase: './build', 27 | hot: true 28 | }, 29 | 30 | plugins: [ 31 | new HtmlWebpackPlugin({ 32 | template: 'src/index.html', 33 | inject: true 34 | }) 35 | ] 36 | } 37 | --------------------------------------------------------------------------------