├── log └── .keep ├── tmp └── .keep ├── vendor └── .keep ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── public ├── favicon.ico ├── apple-touch-icon.png ├── apple-touch-icon-precomposed.png ├── robots.txt ├── 500.html ├── 422.html └── 404.html ├── test ├── helpers │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── user_test.rb │ ├── chatroom_test.rb │ └── message_test.rb ├── system │ └── .keep ├── controllers │ ├── .keep │ └── chatrooms_controller_test.rb ├── fixtures │ ├── .keep │ ├── files │ │ └── .keep │ ├── chatrooms.yml │ ├── messages.yml │ └── users.yml ├── integration │ └── .keep ├── application_system_test_case.rb └── test_helper.rb ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── channels │ │ │ └── .keep │ │ ├── application.js │ │ ├── chatrooms.coffee │ │ └── cable.js │ ├── config │ │ └── manifest.js │ └── stylesheets │ │ ├── messages.scss │ │ ├── application.css │ │ └── chatrooms.scss ├── models │ ├── concerns │ │ └── .keep │ ├── chatroom.rb │ ├── application_record.rb │ ├── message.rb │ └── user.rb ├── controllers │ ├── concerns │ │ └── .keep │ ├── application_controller.rb │ ├── chatrooms_controller.rb │ ├── messages_controller.rb │ └── users │ │ └── omniauth_callbacks_controller.rb ├── views │ ├── layouts │ │ ├── mailer.text.erb │ │ ├── mailer.html.erb │ │ ├── application.html.erb │ │ └── chatrooms.html.erb │ ├── messages │ │ └── _message.json.jbuilder │ └── chatrooms │ │ ├── show.html.erb │ │ ├── _chatroom.json.jbuilder │ │ └── index.html.erb ├── helpers │ ├── chatrooms_helper.rb │ └── application_helper.rb ├── jobs │ ├── application_job.rb │ └── new_message_job.rb ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ └── chatroom_channel.rb └── mailers │ └── application_mailer.rb ├── client ├── .babelrc ├── .DS_Store ├── app │ ├── .DS_Store │ └── bundles │ │ ├── .DS_Store │ │ └── Chatroom │ │ ├── .DS_Store │ │ ├── components │ │ ├── Message.jsx │ │ ├── MessagesList.jsx │ │ ├── MessageForm.jsx │ │ └── Chatroom.jsx │ │ └── startup │ │ └── registration.jsx ├── REACT_ON_RAILS_CLIENT_README.md ├── package.json ├── webpack.config.js └── yarn.lock ├── db ├── seeds.rb ├── migrate │ ├── 20170903135254_create_chatrooms.rb │ ├── 20170903141504_create_messages.rb │ └── 20170903134439_devise_create_users.rb └── schema.rb ├── yarn.lock ├── bin ├── bundle ├── rake ├── rails ├── yarn ├── spring ├── update └── setup ├── config ├── spring.rb ├── boot.rb ├── environment.rb ├── initializers │ ├── mime_types.rb │ ├── application_controller_renderer.rb │ ├── filter_parameter_logging.rb │ ├── cookies_serializer.rb │ ├── backtrace_silencers.rb │ ├── wrap_parameters.rb │ ├── inflections.rb │ ├── assets.rb │ ├── react_on_rails.rb │ └── devise.rb ├── cable.yml ├── routes.rb ├── secrets.yml ├── application.rb ├── locales │ ├── en.yml │ └── devise.en.yml ├── webpacker_lite.yml ├── environments │ ├── test.rb │ ├── development.rb │ └── production.rb ├── puma.rb └── database.yml ├── config.ru ├── Procfile.dev ├── package.json ├── Rakefile ├── .gitignore ├── README.md ├── Gemfile └── Gemfile.lock /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/helpers/chatrooms_helper.rb: -------------------------------------------------------------------------------- 1 | module ChatroomsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | chatrooms = Chatroom.create!([{name: "React"}, {name: "Redux"} ]) 2 | -------------------------------------------------------------------------------- /client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnetto/reactchat/HEAD/client/.DS_Store -------------------------------------------------------------------------------- /client/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnetto/reactchat/HEAD/client/app/.DS_Store -------------------------------------------------------------------------------- /client/app/bundles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnetto/reactchat/HEAD/client/app/bundles/.DS_Store -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/models/chatroom.rb: -------------------------------------------------------------------------------- 1 | class Chatroom < ApplicationRecord 2 | has_many :messages, dependent: :destroy 3 | end 4 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file 2 | -------------------------------------------------------------------------------- /client/app/bundles/Chatroom/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learnetto/reactchat/HEAD/client/app/bundles/Chatroom/.DS_Store -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../javascripts .js 3 | //= link_directory ../stylesheets .css 4 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery with: :exception 3 | end 4 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /app/views/messages/_message.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.(message, :body, :id) 2 | json.user do 3 | json.extract! message.user, :id, :name, :image 4 | end 5 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- 1 | %w( 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ).each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require rails-ujs 2 | //= require turbolinks 3 | //= require jquery 4 | //= require jquery_ujs 5 | //= require_tree . 6 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require_relative 'application' 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class UserTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /test/models/chatroom_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ChatroomTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /test/models/message_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class MessageTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- 1 | web: rails s -p 3000 2 | client: sh -c 'rm -rf public/webpack/development/* || true && cd client && bundle exec rake react_on_rails:locale && yarn run build:development' 3 | -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- 1 | class Message < ApplicationRecord 2 | belongs_to :chatroom 3 | belongs_to :user 4 | 5 | after_commit { NewMessageJob.perform_later(self, chatroom) } 6 | end 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "postinstall": "cd client && yarn install" 4 | }, 5 | 6 | "name": "reactchat", 7 | "private": true, 8 | "dependencies": {} 9 | } 10 | -------------------------------------------------------------------------------- /test/fixtures/chatrooms.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html 2 | 3 | one: 4 | name: MyString 5 | 6 | two: 7 | name: MyString 8 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- 1 | require "test_helper" 2 | 3 | class ApplicationSystemTestCase < ActionDispatch::SystemTestCase 4 | driven_by :selenium, using: :chrome, screen_size: [1400, 1400] 5 | end 6 | -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- 1 | development: 2 | adapter: async 3 | 4 | test: 5 | adapter: async 6 | 7 | production: 8 | adapter: redis 9 | url: redis://localhost:6379/1 10 | channel_prefix: reactchat_production 11 | -------------------------------------------------------------------------------- /app/assets/stylesheets/messages.scss: -------------------------------------------------------------------------------- 1 | // Place all the styles related to the Messages controller here. 2 | // They will automatically be included in application.css. 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ 4 | -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # ApplicationController.renderer.defaults.merge!( 4 | # http_host: 'example.org', 5 | # https: false 6 | # ) 7 | -------------------------------------------------------------------------------- /client/app/bundles/Chatroom/components/Message.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const Message = ({message}) => 4 |

5 | {message.user.name}: {message.body} 6 |

7 | 8 | export default Message 9 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | devise_for :users, controllers: { omniauth_callbacks: "users/omniauth_callbacks" } 3 | resources :chatrooms do 4 | resources :messages 5 | end 6 | root to: 'chatrooms#index' 7 | end 8 | -------------------------------------------------------------------------------- /db/migrate/20170903135254_create_chatrooms.rb: -------------------------------------------------------------------------------- 1 | class CreateChatrooms < ActiveRecord::Migration[5.1] 2 | def change 3 | create_table :chatrooms do |t| 4 | t.string :name 5 | 6 | t.timestamps 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /app/views/chatrooms/show.html.erb: -------------------------------------------------------------------------------- 1 |

<%= @chatroom.name %>

2 | 3 | <%= react_component "Chatroom", 4 | props: {chatroom: render( 5 | partial: "chatrooms/chatroom.json", 6 | locals: { chatroom: @chatroom })} %> 7 | -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure sensitive parameters which will be filtered from the log file. 4 | Rails.application.config.filter_parameters += [:password] 5 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require_relative 'config/application' 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /app/assets/javascripts/chatrooms.coffee: -------------------------------------------------------------------------------- 1 | # Place all the behaviors and hooks related to the matching controller here. 2 | # All this logic will automatically be available in application.js. 3 | # You can use CoffeeScript in this file: http://coffeescript.org/ 4 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path('../spring', __FILE__) 4 | rescue LoadError => e 5 | raise unless e.message.include?('spring') 6 | end 7 | require_relative '../config/boot' 8 | require 'rake' 9 | Rake.application.run 10 | -------------------------------------------------------------------------------- /test/fixtures/messages.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html 2 | 3 | one: 4 | body: MyText 5 | chatroom: one 6 | user: one 7 | 8 | two: 9 | body: MyText 10 | chatroom: two 11 | user: two 12 | -------------------------------------------------------------------------------- /client/app/bundles/Chatroom/startup/registration.jsx: -------------------------------------------------------------------------------- 1 | import ReactOnRails from 'react-on-rails'; 2 | 3 | import Chatroom from '../components/Chatroom'; 4 | 5 | // This is how react_on_rails can see the Chatroom in the browser. 6 | ReactOnRails.register({ 7 | Chatroom, 8 | }); 9 | -------------------------------------------------------------------------------- /app/views/chatrooms/_chatroom.json.jbuilder: -------------------------------------------------------------------------------- 1 | json.(chatroom, :name, :id) 2 | json.messages(chatroom.messages 3 | .sort_by{|m| m[:created_at]}) do |message| 4 | json.extract! message, :id, :body 5 | json.user do 6 | json.extract! message.user, :id, :name, :image 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Specify a serializer for the signed and encrypted cookie jars. 4 | # Valid options are :json, :marshal, and :hybrid. 5 | Rails.application.config.action_dispatch.cookies_serializer = :json 6 | -------------------------------------------------------------------------------- /app/controllers/chatrooms_controller.rb: -------------------------------------------------------------------------------- 1 | class ChatroomsController < ApplicationController 2 | before_action :authenticate_user!, except: :index 3 | 4 | def index 5 | @chatrooms = Chatroom.all 6 | end 7 | 8 | def show 9 | @chatroom = Chatroom.find(params[:id]) 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /app/jobs/new_message_job.rb: -------------------------------------------------------------------------------- 1 | class NewMessageJob < ApplicationJob 2 | def perform(message, chatroom) 3 | ChatroomChannel.broadcast_to(chatroom, 4 | message: MessagesController.render( 5 | partial: "messages/message.json", 6 | locals: { message: message })) 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path('../spring', __FILE__) 4 | rescue LoadError => e 5 | raise unless e.message.include?('spring') 6 | end 7 | APP_PATH = File.expand_path('../config/application', __dir__) 8 | require_relative '../config/boot' 9 | require 'rails/commands' 10 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/views/chatrooms/index.html.erb: -------------------------------------------------------------------------------- 1 | <% if user_signed_in? %> 2 |

Join a chat room:

3 | <% @chatrooms.each do |chatroom| %> 4 |

<%= link_to chatroom.name, chatroom, data: { turbolinks: false } %>

5 | <% end %> 6 | <% else %> 7 | <%= link_to "Sign in with Github", user_github_omniauth_authorize_path %> 8 | <% end %> 9 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../../config/environment', __FILE__) 2 | require 'rails/test_help' 3 | 4 | class ActiveSupport::TestCase 5 | # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. 6 | fixtures :all 7 | 8 | # Add more helper methods to be used by all tests here... 9 | end 10 | -------------------------------------------------------------------------------- /db/migrate/20170903141504_create_messages.rb: -------------------------------------------------------------------------------- 1 | class CreateMessages < ActiveRecord::Migration[5.1] 2 | def change 3 | create_table :messages do |t| 4 | t.text :body 5 | t.references :chatroom, index: true, foreign_key: true 6 | t.references :user, index: true, foreign_key: true 7 | 8 | t.timestamps 9 | end 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | VENDOR_PATH = File.expand_path('..', __dir__) 3 | Dir.chdir(VENDOR_PATH) do 4 | begin 5 | exec "yarnpkg #{ARGV.join(" ")}" 6 | rescue Errno::ENOENT 7 | $stderr.puts "Yarn executable was not detected in the system." 8 | $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install" 9 | exit 1 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /test/controllers/chatrooms_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ChatroomsControllerTest < ActionDispatch::IntegrationTest 4 | test "should get index" do 5 | get chatrooms_index_url 6 | assert_response :success 7 | end 8 | 9 | test "should get show" do 10 | get chatrooms_show_url 11 | assert_response :success 12 | end 13 | 14 | end 15 | -------------------------------------------------------------------------------- /client/app/bundles/Chatroom/components/MessagesList.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import Message from './Message' 3 | 4 | const MessagesList = ({messages}) => 5 |
6 | {messages.map((message, i) => { 7 | return() 8 | })} 9 | 10 |
11 | 12 | export default MessagesList 13 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Reactchat 5 | <%= csrf_meta_tags %> 6 | 7 | <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> 8 | <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> 9 | 10 | 11 | 12 | <%= yield %> 13 | 14 | 15 | -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- 1 | // Action Cable provides the framework to deal with WebSockets in Rails. 2 | // You can generate new channels where WebSocket features live using the `rails generate channel` command. 3 | // 4 | //= require action_cable 5 | //= require_self 6 | //= require_tree ./channels 7 | 8 | (function() { 9 | this.App || (this.App = {}); 10 | 11 | App.cable = ActionCable.createConsumer(); 12 | 13 | }).call(this); 14 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- 1 | class MessagesController < ApplicationController 2 | before_action :authenticate_user! 3 | 4 | def create 5 | @chatroom = Chatroom.find(params[:chatroom_id]) 6 | @message = @chatroom.messages.new(message_params) 7 | @message.user = current_user 8 | @message.save 9 | end 10 | 11 | private 12 | def message_params 13 | params.require(:message).permit(:body, :chatroom_id, :user_id) 14 | end 15 | end 16 | -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | identified_by :current_user 4 | 5 | def connect 6 | self.current_user = find_verified_user 7 | end 8 | 9 | private 10 | def find_verified_user 11 | if verified_user = env['warden'].user 12 | verified_user 13 | else 14 | reject_unauthorized_connection 15 | end 16 | end 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- 1 | class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController 2 | def github 3 | @user = User.from_omniauth(request.env["omniauth.auth"]) 4 | if @user.persisted? 5 | sign_in_and_redirect @user, :event => :authentication 6 | else 7 | session["devise.github_data"] = request.env["omniauth.auth"] 8 | redirect_to new_user_registration_url 9 | end 10 | end 11 | 12 | def failure 13 | redirect_to root_path 14 | end 15 | end 16 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] 9 | end 10 | 11 | # To enable root element in JSON for ActiveRecord objects. 12 | # ActiveSupport.on_load(:active_record) do 13 | # self.include_root_in_json = true 14 | # end 15 | -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | # This file loads spring without using Bundler, in order to be fast. 4 | # It gets overwritten when you run the `spring binstub` command. 5 | 6 | unless defined?(Spring) 7 | require 'rubygems' 8 | require 'bundler' 9 | 10 | lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) 11 | spring = lockfile.specs.detect { |spec| spec.name == "spring" } 12 | if spring 13 | Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path 14 | gem 'spring', spring.version 15 | require 'spring/binstub' 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /client/REACT_ON_RAILS_CLIENT_README.md: -------------------------------------------------------------------------------- 1 | Client folder generated by the React on Rails gem. 2 | 3 | See documentation [at github.com/shakacode/react_on_rails](https://github.com/shakacode/react_on_rails) for details on how it is organized. 4 | 5 | If you need additional help, please consider: 6 | 7 | * [Our ShakaCode Forum for React on Rails](https://forum.shakacode.com/c/rails/reactonrails). 8 | * Joining our Slack discussion room by [emailing us a bit about you and your project](mailto:contact@shakacode.com). 9 | * [Hiring us](https://forum.shakacode.com/c/rails/reactonrails) for coaching and custom web application development for your project. 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config. 8 | /.bundle 9 | 10 | # Ignore all logfiles and tempfiles. 11 | /log/* 12 | /tmp/* 13 | !/log/.keep 14 | !/tmp/.keep 15 | 16 | /node_modules 17 | /yarn-error.log 18 | 19 | .byebug_history 20 | # React on Rails 21 | npm-debug.log* 22 | node_modules 23 | 24 | # Generated js bundles 25 | /public/webpack/* 26 | -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | development: 4 | secret_key_base: a1edd9da7d111af5be62690379b125fa8ccc0bc63c2c0ce249393710cf819b7079b820a001f526c9fb31661cea6c31d0dd1df7aab4e7d78cb63a6ca91277b4ed 5 | github_app_id: <%= ENV['GITHUB_APP_ID'] %> 6 | github_app_secret: <%= ENV['GITHUB_APP_SECRET'] %> 7 | 8 | test: 9 | secret_key_base: eb11e1699150a429ae715f28498ade9fbfd9646054ca2fda41fb336807750631b1614f9af7f0bc34b3233cfb565f0ac8103e973626f96c194dd2911ab3c41273 10 | 11 | # Do not keep production secrets in the unencrypted secrets file. 12 | production: 13 | secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> 14 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- 1 | class User < ApplicationRecord 2 | # Include default devise modules. Others available are: 3 | # :confirmable, :lockable, :timeoutable and :omniauthable 4 | devise :database_authenticatable, :registerable, 5 | :recoverable, :rememberable, :trackable, :validatable 6 | 7 | devise :omniauthable, omniauth_providers: [:github] 8 | 9 | has_many :messages, dependent: :destroy 10 | 11 | def self.from_omniauth(auth) 12 | where(provider: auth.provider, uid: auth.uid).first_or_create! do |user| 13 | user.email = auth.info.email 14 | user.password = Devise.friendly_token[0,20] 15 | user.name = auth.info.name 16 | user.image = auth.info.image 17 | end 18 | end 19 | end 20 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require_relative 'boot' 2 | 3 | require 'rails/all' 4 | 5 | # Require the gems listed in Gemfile, including any gems 6 | # you've limited to :test, :development, or :production. 7 | Bundler.require(*Rails.groups) 8 | 9 | module Reactchat 10 | class Application < Rails::Application 11 | # Initialize configuration defaults for originally generated Rails version. 12 | config.load_defaults 5.1 13 | config.action_cable.mount_path = '/cable' 14 | 15 | # Settings in config/environments/* take precedence over those specified here. 16 | # Application configuration should go into files in config/initializers 17 | # -- all .rb files in that directory are automatically loaded. 18 | end 19 | end 20 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, '\1en' 8 | # inflect.singular /^(ox)en/i, '\1' 9 | # inflect.irregular 'person', 'people' 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym 'RESTful' 16 | # end 17 | -------------------------------------------------------------------------------- /app/channels/chatroom_channel.rb: -------------------------------------------------------------------------------- 1 | class ChatroomChannel < ApplicationCable::Channel 2 | def subscribed 3 | chatroom = Chatroom.find(params[:id]) 4 | stream_for chatroom 5 | ChatroomChannel.broadcast_to( 6 | chatroom, 7 | message: { 8 | body: current_user.name + " joined", 9 | user: {name: "chatbot"}, 10 | className: "chatbot" 11 | }.to_json 12 | ) 13 | end 14 | 15 | def unsubscribed 16 | chatroom = Chatroom.find(params[:id]) 17 | stream_for chatroom 18 | ChatroomChannel.broadcast_to( 19 | chatroom, 20 | message: { 21 | body: current_user.name + " left", 22 | user: {name: "chatbot"}, 23 | className: "chatbot" 24 | }.to_json 25 | ) 26 | end 27 | end 28 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's 6 | * vendor/assets/stylesheets directory can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the bottom of the 9 | * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS 10 | * files in this directory. Styles in this file should be added after the last require_* statement. 11 | * It is generally better to create a new file per style scope. 12 | * 13 | *= require_tree . 14 | *= require_self 15 | */ 16 | -------------------------------------------------------------------------------- /app/assets/stylesheets/chatrooms.scss: -------------------------------------------------------------------------------- 1 | body{ 2 | width: 600px; 3 | margin:auto; 4 | font-family: sans-serif; 5 | } 6 | 7 | h1 a { 8 | text-decoration: none; 9 | color: darkred; 10 | } 11 | 12 | .adbar { 13 | width: 100%; 14 | padding: 10px; 15 | text-align: center; 16 | a { 17 | color: black; 18 | } 19 | } 20 | 21 | 22 | input[name='body'] { 23 | width:90%; 24 | } 25 | 26 | input[type='submit'] { 27 | background: black; 28 | color: white; 29 | outline: none; 30 | border: 0; 31 | border:none; 32 | margin: 5px; 33 | padding: 5px; 34 | cursor: pointer; 35 | } 36 | 37 | #messages { 38 | border: solid 1px #EAEAEA; 39 | padding: 20px; 40 | height: 50vh; 41 | overflow-y: scroll; 42 | } 43 | 44 | .messageForm { 45 | margin-bottom: 20px; 46 | } 47 | 48 | .chatbot { 49 | color: #777; 50 | font-style: italic; 51 | } 52 | 53 | -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'pathname' 3 | require 'fileutils' 4 | include FileUtils 5 | 6 | # path to your application root. 7 | APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) 8 | 9 | def system!(*args) 10 | system(*args) || abort("\n== Command #{args} failed ==") 11 | end 12 | 13 | chdir APP_ROOT do 14 | # This script is a way to update your development environment automatically. 15 | # Add necessary update steps to this file. 16 | 17 | puts '== Installing dependencies ==' 18 | system! 'gem install bundler --conservative' 19 | system('bundle check') || system!('bundle install') 20 | 21 | puts "\n== Updating database ==" 22 | system! 'bin/rails db:migrate' 23 | 24 | puts "\n== Removing old logs and tempfiles ==" 25 | system! 'bin/rails log:clear tmp:clear' 26 | 27 | puts "\n== Restarting application server ==" 28 | system! 'bin/rails restart' 29 | end 30 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t 'hello' 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t('hello') %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # The following keys must be escaped otherwise they will not be retrieved by 20 | # the default I18n backend: 21 | # 22 | # true, false, on, off, yes, no 23 | # 24 | # Instead, surround them with single quotes. 25 | # 26 | # en: 27 | # 'true': 'foo' 28 | # 29 | # To learn more, please read the Rails Internationalization guide 30 | # available at http://guides.rubyonrails.org/i18n.html. 31 | 32 | en: 33 | hello: "Hello world" 34 | -------------------------------------------------------------------------------- /config/webpacker_lite.yml: -------------------------------------------------------------------------------- 1 | # Note: Base output directory of /public is assumed for static files 2 | default: &default 3 | manifest: manifest.json 4 | # Used in your webpack configuration. Must be created in the 5 | # webpack_public_output_dir folder 6 | 7 | development: 8 | <<: *default 9 | # generated files for development, in /public/webpack/development 10 | webpack_public_output_dir: webpack/development 11 | 12 | # Default is localhost:3500 13 | hot_reloading_host: localhost:3500 14 | 15 | # Developer note: considering removing this option so it can ONLY be turned by using an ENV value. 16 | # Default is false, ENV 'HOT_RELOAD' will always override 17 | hot_reloading_enabled_by_default: false 18 | 19 | test: 20 | <<: *default 21 | # generated files for tests, in /public/webpack/test 22 | webpack_public_output_dir: webpack/test 23 | 24 | production: 25 | <<: *default 26 | # generated files for tests, in /public/webpack/production 27 | webpack_public_output_dir: webpack/production 28 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reactchat", 3 | "private": true, 4 | "scripts": { 5 | "build:test": "NODE_ENV=test webpack --config webpack.config.js", 6 | "build:production": "NODE_ENV=production webpack --config webpack.config.js", 7 | "build:development": "NODE_ENV=development webpack -w --config webpack.config.js" 8 | }, 9 | "cacheDirectories": [ 10 | "node_modules", 11 | "client/node_modules" 12 | ], 13 | "dependencies": { 14 | "babel-cli": "^6.24.1", 15 | "babel-core": "^6.24.1", 16 | "babel-loader": "^6.3.2", 17 | "babel-polyfill": "^6.23.0", 18 | "babel-preset-es2015": "^6.24.1", 19 | "babel-preset-react": "^6.24.1", 20 | "babel-preset-stage-2": "^6.24.1", 21 | "babel-runtime": "^6.23.0", 22 | "es5-shim": "^4.5.9", 23 | "expose-loader": "^0.7.3", 24 | "immutability-helper": "^2.3.1", 25 | "imports-loader": "^0.7.1", 26 | "js-yaml": "^3.8.2", 27 | "react": "^15.5.4", 28 | "react-dom": "^15.5.4", 29 | "react-on-rails": "8.0.0", 30 | "webpack": "^2.3.3", 31 | "webpack-manifest-plugin": "^1.1.0" 32 | }, 33 | "devDependencies": {} 34 | } 35 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require 'pathname' 3 | require 'fileutils' 4 | include FileUtils 5 | 6 | # path to your application root. 7 | APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) 8 | 9 | def system!(*args) 10 | system(*args) || abort("\n== Command #{args} failed ==") 11 | end 12 | 13 | chdir APP_ROOT do 14 | # This script is a starting point to setup your application. 15 | # Add necessary setup steps to this file. 16 | 17 | puts '== Installing dependencies ==' 18 | system! 'gem install bundler --conservative' 19 | system('bundle check') || system!('bundle install') 20 | 21 | # Install JavaScript dependencies if using Yarn 22 | # system('bin/yarn') 23 | 24 | 25 | # puts "\n== Copying sample files ==" 26 | # unless File.exist?('config/database.yml') 27 | # cp 'config/database.yml.sample', 'config/database.yml' 28 | # end 29 | 30 | puts "\n== Preparing database ==" 31 | system! 'bin/rails db:setup' 32 | 33 | puts "\n== Removing old logs and tempfiles ==" 34 | system! 'bin/rails log:clear tmp:clear' 35 | 36 | puts "\n== Restarting application server ==" 37 | system! 'bin/rails restart' 38 | end 39 | -------------------------------------------------------------------------------- /app/views/layouts/chatrooms.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Reactchat 5 | <%= csrf_meta_tags %> 6 | 7 | <%= action_cable_meta_tag %> 8 | <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> 9 | <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> 10 | 11 | <%= javascript_pack_tag 'webpack-bundle' %> 12 | 13 | 14 | 15 | 16 |
17 | <%= link_to "Learn how to build this chat app with React.js and Ruby on Rails", "https://learnetto.com/tutorials/how-to-build-a-chat-app-with-rails-5-1-actioncable-and-react-js-part-1" %> 18 |
19 | <% if user_signed_in? %> 20 |

21 | <%= current_user.name %> 22 | <%= link_to "Sign out", destroy_user_session_path, method: :delete %> 23 |

24 | <% end %> 25 | 26 |

<%= link_to "React Rooms", root_path %>

27 | 28 | <%= yield %> 29 | 30 |
31 | <%= link_to "A project by Learnetto", "https://learnetto.com" %> 32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /client/app/bundles/Chatroom/components/MessageForm.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | export default class MessageForm extends React.Component { 4 | constructor(props) { 5 | super(props) 6 | this.state = { 7 | body: '' 8 | } 9 | } 10 | 11 | handleChange = (e) => { this.setState({body: this.body.value})} 12 | 13 | handleSubmit = (e) => { 14 | e.preventDefault() 15 | $.post( 16 | `/chatrooms/${this.props.chatroomId}/messages`, 17 | { message: { body: this.state.body }}) 18 | .done(response => { 19 | this.setState({body: ''}) 20 | this.body.focus() 21 | }) 22 | } 23 | 24 | render() { 25 | return ( 26 |
27 |
29 | this.body = input } 34 | /> 35 | 36 |
37 |
38 | ) 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Version of your assets, change this if you want to expire all your assets. 4 | Rails.application.config.assets.version = '1.0' 5 | 6 | # Add additional assets to the asset load path. 7 | # Rails.application.config.assets.paths << Emoji.images_path 8 | # Add Yarn node_modules folder to the asset load path. 9 | Rails.application.config.assets.paths << Rails.root.join('node_modules') 10 | 11 | # Precompile additional assets. 12 | # application.js, application.css, and all non-JS/CSS in the app/assets 13 | # folder are already added. 14 | # Rails.application.config.assets.precompile += %w( admin.js admin.css ) 15 | # Add client/assets/ folders to asset pipeline's search path. 16 | # If you do not want to move existing images and fonts from your Rails app 17 | # you could also consider creating symlinks there that point to the original 18 | # rails directories. In that case, you would not add these paths here. 19 | # If you have a different server bundle file than your client bundle, you'll 20 | # need to add it here, like this: 21 | # Rails.application.config.assets.precompile += %w( server-bundle.js ) 22 | 23 | # Add folder with webpack generated assets to assets.paths 24 | Rails.application.config.assets.paths << Rails.root.join("public", "webpack", Rails.env) 25 | -------------------------------------------------------------------------------- /client/app/bundles/Chatroom/components/Chatroom.jsx: -------------------------------------------------------------------------------- 1 | import PropTypes from 'prop-types' 2 | import React from 'react' 3 | import MessagesList from './MessagesList' 4 | import MessageForm from './MessageForm' 5 | import update from 'immutability-helper' 6 | 7 | export default class Chatroom extends React.Component { 8 | constructor(props, _railsContext) { 9 | super(props) 10 | let chatroom = JSON.parse(this.props.chatroom) 11 | this.state = { 12 | messages: chatroom.messages, 13 | chatroomId: chatroom.id 14 | } 15 | } 16 | 17 | updateMessages(message) { 18 | const messages = update(this.state.messages, 19 | {$push: [message]}) 20 | this.setState({messages: messages}) 21 | } 22 | 23 | componentDidMount() { 24 | App.chatroom = App.cable.subscriptions.create({ 25 | channel: "ChatroomChannel", 26 | id: this.state.chatroomId 27 | }, 28 | { 29 | received: function(data) { 30 | this.updateMessages(JSON.parse(data.message)) 31 | }.bind(this) 32 | }); 33 | } 34 | 35 | componentDidUpdate() { 36 | document.getElementById('messagesBottom').scrollIntoView() 37 | } 38 | 39 | render() { 40 | return ( 41 |
42 | 43 | 44 |
45 | ) 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /db/migrate/20170903134439_devise_create_users.rb: -------------------------------------------------------------------------------- 1 | class DeviseCreateUsers < ActiveRecord::Migration[5.1] 2 | def change 3 | create_table :users do |t| 4 | ## Database authenticatable 5 | t.string :email, null: false, default: "" 6 | t.string :encrypted_password, null: false, default: "" 7 | 8 | ## Recoverable 9 | t.string :reset_password_token 10 | t.datetime :reset_password_sent_at 11 | 12 | ## Rememberable 13 | t.datetime :remember_created_at 14 | 15 | ## Trackable 16 | t.integer :sign_in_count, default: 0, null: false 17 | t.datetime :current_sign_in_at 18 | t.datetime :last_sign_in_at 19 | t.inet :current_sign_in_ip 20 | t.inet :last_sign_in_ip 21 | 22 | ## Oauth info 23 | t.string :name 24 | t.string :image 25 | t.string :uid 26 | t.string :provider 27 | 28 | ## Confirmable 29 | # t.string :confirmation_token 30 | # t.datetime :confirmed_at 31 | # t.datetime :confirmation_sent_at 32 | # t.string :unconfirmed_email # Only if using reconfirmable 33 | 34 | ## Lockable 35 | # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts 36 | # t.string :unlock_token # Only if unlock strategy is :email or :both 37 | # t.datetime :locked_at 38 | 39 | 40 | t.timestamps null: false 41 | end 42 | 43 | add_index :users, :email, unique: true 44 | add_index :users, :reset_password_token, unique: true 45 | # add_index :users, :confirmation_token, unique: true 46 | # add_index :users, :unlock_token, unique: true 47 | end 48 | end 49 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Chat 2 | 3 | A chat app built with React.js and ActionCable in Ruby on Rails 5.1, built as part of a 2-part tutorial on [Learnetto](https://learnetto.com): 4 | 5 | [How to build a chat app with Rails 5.1 ActionCable and React.js Part 1](https://learnetto.com/tutorials/how-to-build-a-chat-app-with-rails-5-1-actioncable-and-react-js-part-1) 6 | 7 | [How to build a chat app with Rails 5.1 ActionCable and React.js Part 2](https://learnetto.com/tutorials/how-to-build-a-chat-app-with-rails-5-1-actioncable-and-react-js-part-2) 8 | 9 | [See a live demo here](https://reactrooms.herokuapp.com) 10 | 11 | Run the following commands on the commandline to get it working: 12 | 13 | ``` 14 | git clone https://github.com/learnetto/reactchat.git 15 | 16 | cd reactchat 17 | 18 | rails db:migrate 19 | 20 | bundle && yarn 21 | 22 | foreman start -f Procfile.dev 23 | ``` 24 | 25 | ## Github Authentication 26 | 27 | We use Github for authentication. So you will need to [register a new OAuth application on Github](https://github.com/settings/applications/new). 28 | 29 | Please make sure you set the authorization callback URL correctly. With the default devise and omniauth settings, add `/users/auth/github/callback` to your root URL. 30 | 31 | For example, in development, if your app is running on localhost port 3000, then the URL settings will be: 32 | 33 | Homepage URL: `http://localhost:3000` 34 | 35 | Authorization callback URL: `http://localhost:3000/users/auth/github/callback` 36 | 37 | Once you've set up your Github app, Github will provide you with a Client ID and secret. You need to add these to your app's environment as `GITHUB_APP_ID` and `GITHUB_APP_SECRET`. 38 | 39 | For development, the easiest way is to put them in your `~/.bash_profile`, start a new terminal window and restart your Rails server. 40 | -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

We're sorry, but something went wrong.

62 |
63 |

If you are the application owner check the logs for more information.

64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # The test environment is used exclusively to run your application's 5 | # test suite. You never need to work with it otherwise. Remember that 6 | # your test database is "scratch space" for the test suite and is wiped 7 | # and recreated between test runs. Don't rely on the data there! 8 | config.cache_classes = true 9 | 10 | # Do not eager load code on boot. This avoids loading your whole application 11 | # just for the purpose of running a single test. If you are using a tool that 12 | # preloads Rails for running tests, you may have to set it to true. 13 | config.eager_load = false 14 | 15 | # Configure public file server for tests with Cache-Control for performance. 16 | config.public_file_server.enabled = true 17 | config.public_file_server.headers = { 18 | 'Cache-Control' => "public, max-age=#{1.hour.seconds.to_i}" 19 | } 20 | 21 | # Show full error reports and disable caching. 22 | config.consider_all_requests_local = true 23 | config.action_controller.perform_caching = false 24 | 25 | # Raise exceptions instead of rendering exception templates. 26 | config.action_dispatch.show_exceptions = false 27 | 28 | # Disable request forgery protection in test environment. 29 | config.action_controller.allow_forgery_protection = false 30 | config.action_mailer.perform_caching = false 31 | 32 | # Tell Action Mailer not to deliver emails to the real world. 33 | # The :test delivery method accumulates sent emails in the 34 | # ActionMailer::Base.deliveries array. 35 | config.action_mailer.delivery_method = :test 36 | 37 | # Print deprecation notices to the stderr. 38 | config.active_support.deprecation = :stderr 39 | 40 | # Raises error for missing translations 41 | # config.action_view.raise_on_missing_translations = true 42 | end 43 | -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The change you wanted was rejected.

62 |

Maybe you tried to change something you didn't have access to.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The page you were looking for doesn't exist.

62 |

You may have mistyped the address or the page may have moved.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # In the development environment your application's code is reloaded on 5 | # every request. This slows down response time but is perfect for development 6 | # since you don't have to restart the web server when you make code changes. 7 | config.cache_classes = false 8 | 9 | # Do not eager load code on boot. 10 | config.eager_load = false 11 | 12 | # Show full error reports. 13 | config.consider_all_requests_local = true 14 | 15 | # Enable/disable caching. By default caching is disabled. 16 | if Rails.root.join('tmp/caching-dev.txt').exist? 17 | config.action_controller.perform_caching = true 18 | 19 | config.cache_store = :memory_store 20 | config.public_file_server.headers = { 21 | 'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}" 22 | } 23 | else 24 | config.action_controller.perform_caching = false 25 | 26 | config.cache_store = :null_store 27 | end 28 | 29 | # Don't care if the mailer can't send. 30 | config.action_mailer.raise_delivery_errors = false 31 | 32 | config.action_mailer.perform_caching = false 33 | 34 | # Print deprecation notices to the Rails logger. 35 | config.active_support.deprecation = :log 36 | 37 | # Raise an error on page load if there are pending migrations. 38 | config.active_record.migration_error = :page_load 39 | 40 | # Debug mode disables concatenation and preprocessing of assets. 41 | # This option may cause significant delays in view rendering with a large 42 | # number of complex assets. 43 | config.assets.debug = true 44 | 45 | # Suppress logger output for asset requests. 46 | config.assets.quiet = true 47 | 48 | # Raises error for missing translations 49 | # config.action_view.raise_on_missing_translations = true 50 | 51 | # Use an evented file watcher to asynchronously detect changes in source code, 52 | # routes, locales, etc. This feature depends on the listen gem. 53 | config.file_watcher = ActiveSupport::EventedFileUpdateChecker 54 | 55 | config.action_mailer.default_url_options = { host: 'localhost', port: 3000 } 56 | end 57 | -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- 1 | // For inspiration on your webpack configuration, see: 2 | // https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client 3 | // https://github.com/shakacode/react-webpack-rails-tutorial/tree/master/client 4 | 5 | const webpack = require('webpack'); 6 | const { resolve } = require('path'); 7 | 8 | const ManifestPlugin = require('webpack-manifest-plugin'); 9 | const webpackConfigLoader = require('react-on-rails/webpackConfigLoader'); 10 | 11 | const configPath = resolve('..', 'config'); 12 | const { devBuild, manifest, webpackOutputPath, webpackPublicOutputDir } = 13 | webpackConfigLoader(configPath); 14 | 15 | const config = { 16 | 17 | context: resolve(__dirname), 18 | 19 | entry: { 20 | 'webpack-bundle': [ 21 | 'es5-shim/es5-shim', 22 | 'es5-shim/es5-sham', 23 | 'babel-polyfill', 24 | './app/bundles/Chatroom/startup/registration', 25 | ], 26 | }, 27 | 28 | output: { 29 | // Name comes from the entry section. 30 | filename: '[name]-[hash].js', 31 | 32 | // Leading slash is necessary 33 | publicPath: `/${webpackPublicOutputDir}`, 34 | path: webpackOutputPath, 35 | }, 36 | 37 | resolve: { 38 | extensions: ['.js', '.jsx'], 39 | }, 40 | 41 | plugins: [ 42 | new webpack.EnvironmentPlugin({ 43 | NODE_ENV: 'development', // use 'development' unless process.env.NODE_ENV is defined 44 | DEBUG: false, 45 | }), 46 | new ManifestPlugin({ fileName: manifest, writeToFileEmit: true }), 47 | ], 48 | 49 | module: { 50 | rules: [ 51 | { 52 | test: require.resolve('react'), 53 | use: { 54 | loader: 'imports-loader', 55 | options: { 56 | shim: 'es5-shim/es5-shim', 57 | sham: 'es5-shim/es5-sham', 58 | }, 59 | }, 60 | }, 61 | { 62 | test: /\.jsx?$/, 63 | use: 'babel-loader', 64 | exclude: /node_modules/, 65 | }, 66 | ], 67 | }, 68 | }; 69 | 70 | module.exports = config; 71 | 72 | if (devBuild) { 73 | console.log('Webpack dev build for Rails'); // eslint-disable-line no-console 74 | module.exports.devtool = 'eval-source-map'; 75 | } else { 76 | console.log('Webpack production build for Rails'); // eslint-disable-line no-console 77 | } 78 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | git_source(:github) do |repo_name| 4 | repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") 5 | "https://github.com/#{repo_name}.git" 6 | end 7 | 8 | ruby '2.4.1' 9 | 10 | gem 'devise' 11 | gem 'omniauth' 12 | gem 'omniauth-github' 13 | 14 | gem 'jquery-rails' 15 | 16 | gem 'react_on_rails', '8.0.0' 17 | 18 | # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 19 | gem 'rails', '~> 5.1.3' 20 | # Use postgresql as the database for Active Record 21 | gem 'pg', '~> 0.18' 22 | # Use Puma as the app server 23 | gem 'puma', '~> 3.7' 24 | # Use SCSS for stylesheets 25 | gem 'sass-rails', '~> 5.0' 26 | # Use Uglifier as compressor for JavaScript assets 27 | gem 'uglifier', '>= 1.3.0' 28 | # See https://github.com/rails/execjs#readme for more supported runtimes 29 | # gem 'therubyracer', platforms: :ruby 30 | 31 | # Use CoffeeScript for .coffee assets and views 32 | gem 'coffee-rails', '~> 4.2' 33 | # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 34 | gem 'turbolinks', '~> 5' 35 | # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 36 | gem 'jbuilder', '~> 2.5' 37 | # Use Redis adapter to run Action Cable in production 38 | # gem 'redis', '~> 3.0' 39 | # Use ActiveModel has_secure_password 40 | # gem 'bcrypt', '~> 3.1.7' 41 | 42 | # Use Capistrano for deployment 43 | # gem 'capistrano-rails', group: :development 44 | 45 | group :development, :test do 46 | # Call 'byebug' anywhere in the code to stop execution and get a debugger console 47 | gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 48 | # Adds support for Capybara system testing and selenium driver 49 | gem 'capybara', '~> 2.13' 50 | gem 'selenium-webdriver' 51 | end 52 | 53 | group :development do 54 | # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. 55 | gem 'web-console', '>= 3.3.0' 56 | gem 'listen', '>= 3.0.5', '< 3.2' 57 | # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 58 | gem 'spring' 59 | gem 'spring-watcher-listen', '~> 2.0.0' 60 | end 61 | 62 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 63 | gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 64 | 65 | gem 'mini_racer', platforms: :ruby 66 | gem 'webpacker_lite' 67 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- 1 | # This file is auto-generated from the current state of the database. Instead 2 | # of editing this file, please use the migrations feature of Active Record to 3 | # incrementally modify your database, and then regenerate this schema definition. 4 | # 5 | # Note that this schema.rb definition is the authoritative source for your 6 | # database schema. If you need to create the application database on another 7 | # system, you should be using db:schema:load, not running all the migrations 8 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations 9 | # you'll amass, the slower it'll run and the greater likelihood for issues). 10 | # 11 | # It's strongly recommended that you check this file into your version control system. 12 | 13 | ActiveRecord::Schema.define(version: 20170903141504) do 14 | 15 | # These are extensions that must be enabled in order to support this database 16 | enable_extension "plpgsql" 17 | 18 | create_table "chatrooms", force: :cascade do |t| 19 | t.string "name" 20 | t.datetime "created_at", null: false 21 | t.datetime "updated_at", null: false 22 | end 23 | 24 | create_table "messages", force: :cascade do |t| 25 | t.text "body" 26 | t.bigint "chatroom_id" 27 | t.bigint "user_id" 28 | t.datetime "created_at", null: false 29 | t.datetime "updated_at", null: false 30 | t.index ["chatroom_id"], name: "index_messages_on_chatroom_id" 31 | t.index ["user_id"], name: "index_messages_on_user_id" 32 | end 33 | 34 | create_table "users", force: :cascade do |t| 35 | t.string "email", default: "", null: false 36 | t.string "encrypted_password", default: "", null: false 37 | t.string "reset_password_token" 38 | t.datetime "reset_password_sent_at" 39 | t.datetime "remember_created_at" 40 | t.integer "sign_in_count", default: 0, null: false 41 | t.datetime "current_sign_in_at" 42 | t.datetime "last_sign_in_at" 43 | t.inet "current_sign_in_ip" 44 | t.inet "last_sign_in_ip" 45 | t.string "name" 46 | t.string "image" 47 | t.string "uid" 48 | t.string "provider" 49 | t.datetime "created_at", null: false 50 | t.datetime "updated_at", null: false 51 | t.index ["email"], name: "index_users_on_email", unique: true 52 | t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true 53 | end 54 | 55 | add_foreign_key "messages", "chatrooms" 56 | add_foreign_key "messages", "users" 57 | end 58 | -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- 1 | # Puma can serve each request in a thread from an internal thread pool. 2 | # The `threads` method setting takes two numbers: a minimum and maximum. 3 | # Any libraries that use thread pools should be configured to match 4 | # the maximum value specified for Puma. Default is set to 5 threads for minimum 5 | # and maximum; this matches the default thread size of Active Record. 6 | # 7 | threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } 8 | threads threads_count, threads_count 9 | 10 | # Specifies the `port` that Puma will listen on to receive requests; default is 3000. 11 | # 12 | port ENV.fetch("PORT") { 3000 } 13 | 14 | # Specifies the `environment` that Puma will run in. 15 | # 16 | environment ENV.fetch("RAILS_ENV") { "development" } 17 | 18 | # Specifies the number of `workers` to boot in clustered mode. 19 | # Workers are forked webserver processes. If using threads and workers together 20 | # the concurrency of the application would be max `threads` * `workers`. 21 | # Workers do not work on JRuby or Windows (both of which do not support 22 | # processes). 23 | # 24 | # workers ENV.fetch("WEB_CONCURRENCY") { 2 } 25 | 26 | # Use the `preload_app!` method when specifying a `workers` number. 27 | # This directive tells Puma to first boot the application and load code 28 | # before forking the application. This takes advantage of Copy On Write 29 | # process behavior so workers use less memory. If you use this option 30 | # you need to make sure to reconnect any threads in the `on_worker_boot` 31 | # block. 32 | # 33 | # preload_app! 34 | 35 | # If you are preloading your application and using Active Record, it's 36 | # recommended that you close any connections to the database before workers 37 | # are forked to prevent connection leakage. 38 | # 39 | # before_fork do 40 | # ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord) 41 | # end 42 | 43 | # The code in the `on_worker_boot` will be called if you are using 44 | # clustered mode by specifying a number of `workers`. After each worker 45 | # process is booted, this block will be run. If you are using the `preload_app!` 46 | # option, you will want to use this block to reconnect to any threads 47 | # or connections that may have been created at application boot, as Ruby 48 | # cannot share connections between processes. 49 | # 50 | # on_worker_boot do 51 | # ActiveRecord::Base.establish_connection if defined?(ActiveRecord) 52 | # end 53 | # 54 | 55 | # Allow puma to be restarted by `rails restart` command. 56 | plugin :tmp_restart 57 | -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | # PostgreSQL. Versions 9.1 and up are supported. 2 | # 3 | # Install the pg driver: 4 | # gem install pg 5 | # On OS X with Homebrew: 6 | # gem install pg -- --with-pg-config=/usr/local/bin/pg_config 7 | # On OS X with MacPorts: 8 | # gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config 9 | # On Windows: 10 | # gem install pg 11 | # Choose the win32 build. 12 | # Install PostgreSQL and put its /bin directory on your path. 13 | # 14 | # Configure Using Gemfile 15 | # gem 'pg' 16 | # 17 | default: &default 18 | adapter: postgresql 19 | encoding: unicode 20 | # For details on connection pooling, see Rails configuration guide 21 | # http://guides.rubyonrails.org/configuring.html#database-pooling 22 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 23 | 24 | development: 25 | <<: *default 26 | database: reactchat_development 27 | 28 | # The specified database role being used to connect to postgres. 29 | # To create additional roles in postgres see `$ createuser --help`. 30 | # When left blank, postgres will use the default role. This is 31 | # the same name as the operating system user that initialized the database. 32 | #username: reactchat 33 | 34 | # The password associated with the postgres role (username). 35 | #password: 36 | 37 | # Connect on a TCP socket. Omitted by default since the client uses a 38 | # domain socket that doesn't need configuration. Windows does not have 39 | # domain sockets, so uncomment these lines. 40 | #host: localhost 41 | 42 | # The TCP port the server listens on. Defaults to 5432. 43 | # If your server runs on a different port number, change accordingly. 44 | #port: 5432 45 | 46 | # Schema search path. The server defaults to $user,public 47 | #schema_search_path: myapp,sharedapp,public 48 | 49 | # Minimum log levels, in increasing order: 50 | # debug5, debug4, debug3, debug2, debug1, 51 | # log, notice, warning, error, fatal, and panic 52 | # Defaults to warning. 53 | #min_messages: notice 54 | 55 | # Warning: The database defined as "test" will be erased and 56 | # re-generated from your development database when you run "rake". 57 | # Do not set this db to the same as development or production. 58 | test: 59 | <<: *default 60 | database: reactchat_test 61 | 62 | # As with config/secrets.yml, you never want to store sensitive information, 63 | # like your database password, in your source code. If your source code is 64 | # ever seen by anyone, they now have access to your database. 65 | # 66 | # Instead, provide the password as a unix environment variable when you boot 67 | # the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database 68 | # for a full rundown on how to provide these environment variables in a 69 | # production deployment. 70 | # 71 | # On Heroku and other platform providers, you may have a full connection URL 72 | # available as an environment variable. For example: 73 | # 74 | # DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" 75 | # 76 | # You can use this database configuration with: 77 | # 78 | # production: 79 | # url: <%= ENV['DATABASE_URL'] %> 80 | # 81 | production: 82 | <<: *default 83 | database: reactchat_production 84 | username: reactchat 85 | password: <%= ENV['REACTCHAT_DATABASE_PASSWORD'] %> 86 | -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- 1 | Rails.application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # Code is not reloaded between requests. 5 | config.cache_classes = true 6 | 7 | # Eager load code on boot. This eager loads most of Rails and 8 | # your application in memory, allowing both threaded web servers 9 | # and those relying on copy on write to perform better. 10 | # Rake tasks automatically ignore this option for performance. 11 | config.eager_load = true 12 | 13 | # Full error reports are disabled and caching is turned on. 14 | config.consider_all_requests_local = false 15 | config.action_controller.perform_caching = true 16 | 17 | # Attempt to read encrypted secrets from `config/secrets.yml.enc`. 18 | # Requires an encryption key in `ENV["RAILS_MASTER_KEY"]` or 19 | # `config/secrets.yml.key`. 20 | config.read_encrypted_secrets = true 21 | 22 | # Disable serving static files from the `/public` folder by default since 23 | # Apache or NGINX already handles this. 24 | config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? 25 | 26 | # Compress JavaScripts and CSS. 27 | config.assets.js_compressor = :uglifier 28 | # config.assets.css_compressor = :sass 29 | 30 | # Do not fallback to assets pipeline if a precompiled asset is missed. 31 | config.assets.compile = false 32 | 33 | # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb 34 | 35 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 36 | # config.action_controller.asset_host = 'http://assets.example.com' 37 | 38 | # Specifies the header that your server uses for sending files. 39 | # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache 40 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX 41 | 42 | # Mount Action Cable outside main process or domain 43 | # config.action_cable.mount_path = nil 44 | # config.action_cable.url = 'wss://example.com/cable' 45 | # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] 46 | 47 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 48 | # config.force_ssl = true 49 | 50 | # Use the lowest log level to ensure availability of diagnostic information 51 | # when problems arise. 52 | config.log_level = :debug 53 | 54 | # Prepend all log lines with the following tags. 55 | config.log_tags = [ :request_id ] 56 | 57 | # Use a different cache store in production. 58 | # config.cache_store = :mem_cache_store 59 | 60 | # Use a real queuing backend for Active Job (and separate queues per environment) 61 | # config.active_job.queue_adapter = :resque 62 | # config.active_job.queue_name_prefix = "reactchat_#{Rails.env}" 63 | config.action_mailer.perform_caching = false 64 | 65 | # Ignore bad email addresses and do not raise email delivery errors. 66 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 67 | # config.action_mailer.raise_delivery_errors = false 68 | 69 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 70 | # the I18n.default_locale when a translation cannot be found). 71 | config.i18n.fallbacks = true 72 | 73 | # Send deprecation notices to registered listeners. 74 | config.active_support.deprecation = :notify 75 | 76 | # Use default logging formatter so that PID and timestamp are not suppressed. 77 | config.log_formatter = ::Logger::Formatter.new 78 | 79 | # Use a different logger for distributed setups. 80 | # require 'syslog/logger' 81 | # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') 82 | 83 | if ENV["RAILS_LOG_TO_STDOUT"].present? 84 | logger = ActiveSupport::Logger.new(STDOUT) 85 | logger.formatter = config.log_formatter 86 | config.logger = ActiveSupport::TaggedLogging.new(logger) 87 | end 88 | 89 | # Do not dump schema after migrations. 90 | config.active_record.dump_schema_after_migration = false 91 | end 92 | -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- 1 | # Additional translations at https://github.com/plataformatec/devise/wiki/I18n 2 | 3 | en: 4 | devise: 5 | confirmations: 6 | confirmed: "Your email address has been successfully confirmed." 7 | send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes." 8 | send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes." 9 | failure: 10 | already_authenticated: "You are already signed in." 11 | inactive: "Your account is not activated yet." 12 | invalid: "Invalid %{authentication_keys} or password." 13 | locked: "Your account is locked." 14 | last_attempt: "You have one more attempt before your account is locked." 15 | not_found_in_database: "Invalid %{authentication_keys} or password." 16 | timeout: "Your session expired. Please sign in again to continue." 17 | unauthenticated: "You need to sign in or sign up before continuing." 18 | unconfirmed: "You have to confirm your email address before continuing." 19 | mailer: 20 | confirmation_instructions: 21 | subject: "Confirmation instructions" 22 | reset_password_instructions: 23 | subject: "Reset password instructions" 24 | unlock_instructions: 25 | subject: "Unlock instructions" 26 | email_changed: 27 | subject: "Email Changed" 28 | password_change: 29 | subject: "Password Changed" 30 | omniauth_callbacks: 31 | failure: "Could not authenticate you from %{kind} because \"%{reason}\"." 32 | success: "Successfully authenticated from %{kind} account." 33 | passwords: 34 | no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." 35 | send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." 36 | send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." 37 | updated: "Your password has been changed successfully. You are now signed in." 38 | updated_not_active: "Your password has been changed successfully." 39 | registrations: 40 | destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon." 41 | signed_up: "Welcome! You have signed up successfully." 42 | signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." 43 | signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." 44 | signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account." 45 | update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address." 46 | updated: "Your account has been updated successfully." 47 | sessions: 48 | signed_in: "Signed in successfully." 49 | signed_out: "Signed out successfully." 50 | already_signed_out: "Signed out successfully." 51 | unlocks: 52 | send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes." 53 | send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes." 54 | unlocked: "Your account has been unlocked successfully. Please sign in to continue." 55 | errors: 56 | messages: 57 | already_confirmed: "was already confirmed, please try signing in" 58 | confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" 59 | expired: "has expired, please request a new one" 60 | not_found: "not found" 61 | not_locked: "was not locked" 62 | not_saved: 63 | one: "1 error prohibited this %{resource} from being saved:" 64 | other: "%{count} errors prohibited this %{resource} from being saved:" 65 | -------------------------------------------------------------------------------- /config/initializers/react_on_rails.rb: -------------------------------------------------------------------------------- 1 | # Shown below are the defaults for configuration 2 | ReactOnRails.configure do |config| 3 | # Client bundles are configured in application.js 4 | 5 | # Directory where your generated assets go. All generated assets must go to the same directory. 6 | # Configure this in your webpack config files. This relative to your Rails root directory. 7 | config.generated_assets_dir = File.join(%w[public webpack], Rails.env) 8 | 9 | # Define the files we need to check for webpack compilation when running tests. 10 | config.webpack_generated_files = %w( webpack-bundle.js ) 11 | 12 | # This is the file used for server rendering of React when using `(prerender: true)` 13 | # If you are never using server rendering, you may set this to "". 14 | # If you are using the same file for client and server rendering, having this set probably does 15 | # not affect performance. 16 | config.server_bundle_js_file = "webpack-bundle.js" 17 | 18 | # If you are using the ReactOnRails::TestHelper.configure_rspec_to_compile_assets(config) 19 | # with rspec then this controls what yarn command is run 20 | # to automatically refresh your webpack assets on every test run. 21 | config.npm_build_test_command = "yarn run build:test" 22 | 23 | # This configures the script to run to build the production assets by webpack. Set this to nil 24 | # if you don't want react_on_rails building this file for you. 25 | config.npm_build_production_command = "yarn run build:production" 26 | 27 | ################################################################################ 28 | # CLIENT RENDERING OPTIONS 29 | # Below options can be overriden by passing options to the react_on_rails 30 | # `render_component` view helper method. 31 | ################################################################################ 32 | # default is false 33 | config.prerender = false 34 | 35 | # default is true for development, off otherwise 36 | config.trace = Rails.env.development? 37 | 38 | ################################################################################ 39 | # SERVER RENDERING OPTIONS 40 | ################################################################################ 41 | # If set to true, this forces Rails to reload the server bundle if it is modified 42 | config.development_mode = Rails.env.development? 43 | 44 | # For server rendering. This can be set to false so that server side messages are discarded. 45 | # Default is true. Be cautious about turning this off. 46 | config.replay_console = true 47 | 48 | # Default is true. Logs server rendering messages to Rails.logger.info 49 | config.logging_on_server = true 50 | 51 | config.raise_on_prerender_error = false # change to true to raise exception on server if the JS code throws 52 | 53 | # Server rendering only (not for render_component helper) 54 | # You can configure your pool of JS virtual machines and specify where it should load code: 55 | # On MRI, use `mini_racer` for the best performance 56 | # (see [discussion](https://github.com/reactjs/react-rails/pull/290)) 57 | # On MRI, you'll get a deadlock with `pool_size` > 1 58 | # If you're using JRuby, you can increase `pool_size` to have real multi-threaded rendering. 59 | config.server_renderer_pool_size = 1 # increase if you're on JRuby 60 | config.server_renderer_timeout = 20 # seconds 61 | 62 | ################################################################################ 63 | # I18N OPTIONS 64 | ################################################################################ 65 | # Replace the following line to the location where you keep translation.js & default.js for use 66 | # by the npm packages react-intl. Be sure this directory exists! 67 | # config.i18n_dir = Rails.root.join("client", "app", "libs", "i18n") 68 | # 69 | # Replace the following line to the location where you keep your client i18n yml files 70 | # that will source for automatic generation on translations.js & default.js 71 | # By default(without this option) all yaml files from Rails.root.join("config", "locales") and installed gems are loaded 72 | # config.i18n_yml_dir = Rails.root.join("config", "locales", "client") 73 | 74 | ################################################################################ 75 | # MISCELLANEOUS OPTIONS 76 | ################################################################################ 77 | 78 | # The server render method - either ExecJS or NodeJS 79 | config.server_render_method = "ExecJS" 80 | 81 | # If you want to use webpack for CSS and images, and still use the asset pipeline, 82 | # see https://github.com/shakacode/react_on_rails/blob/master/docs/additional-reading/rails-assets.md 83 | # And you will use a setting like this. 84 | # config.symlink_non_digested_assets_regex = /\.(png|jpg|jpeg|gif|tiff|woff|ttf|eot|svg|map)/ 85 | end 86 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actioncable (5.1.3) 5 | actionpack (= 5.1.3) 6 | nio4r (~> 2.0) 7 | websocket-driver (~> 0.6.1) 8 | actionmailer (5.1.3) 9 | actionpack (= 5.1.3) 10 | actionview (= 5.1.3) 11 | activejob (= 5.1.3) 12 | mail (~> 2.5, >= 2.5.4) 13 | rails-dom-testing (~> 2.0) 14 | actionpack (5.1.3) 15 | actionview (= 5.1.3) 16 | activesupport (= 5.1.3) 17 | rack (~> 2.0) 18 | rack-test (~> 0.6.3) 19 | rails-dom-testing (~> 2.0) 20 | rails-html-sanitizer (~> 1.0, >= 1.0.2) 21 | actionview (5.1.3) 22 | activesupport (= 5.1.3) 23 | builder (~> 3.1) 24 | erubi (~> 1.4) 25 | rails-dom-testing (~> 2.0) 26 | rails-html-sanitizer (~> 1.0, >= 1.0.3) 27 | activejob (5.1.3) 28 | activesupport (= 5.1.3) 29 | globalid (>= 0.3.6) 30 | activemodel (5.1.3) 31 | activesupport (= 5.1.3) 32 | activerecord (5.1.3) 33 | activemodel (= 5.1.3) 34 | activesupport (= 5.1.3) 35 | arel (~> 8.0) 36 | activesupport (5.1.3) 37 | concurrent-ruby (~> 1.0, >= 1.0.2) 38 | i18n (~> 0.7) 39 | minitest (~> 5.1) 40 | tzinfo (~> 1.1) 41 | addressable (2.5.2) 42 | public_suffix (>= 2.0.2, < 4.0) 43 | arel (8.0.0) 44 | bcrypt (3.1.11) 45 | bindex (0.5.0) 46 | builder (3.2.3) 47 | byebug (9.1.0) 48 | capybara (2.15.1) 49 | addressable 50 | mini_mime (>= 0.1.3) 51 | nokogiri (>= 1.3.3) 52 | rack (>= 1.0.0) 53 | rack-test (>= 0.5.4) 54 | xpath (~> 2.0) 55 | childprocess (0.7.1) 56 | ffi (~> 1.0, >= 1.0.11) 57 | coffee-rails (4.2.2) 58 | coffee-script (>= 2.2.0) 59 | railties (>= 4.0.0) 60 | coffee-script (2.4.1) 61 | coffee-script-source 62 | execjs 63 | coffee-script-source (1.12.2) 64 | concurrent-ruby (1.0.5) 65 | connection_pool (2.2.1) 66 | devise (4.3.0) 67 | bcrypt (~> 3.0) 68 | orm_adapter (~> 0.1) 69 | railties (>= 4.1.0, < 5.2) 70 | responders 71 | warden (~> 1.2.3) 72 | erubi (1.6.1) 73 | execjs (2.7.0) 74 | faraday (0.12.2) 75 | multipart-post (>= 1.2, < 3) 76 | ffi (1.9.18) 77 | globalid (0.4.0) 78 | activesupport (>= 4.2.0) 79 | hashie (3.5.6) 80 | i18n (0.8.6) 81 | jbuilder (2.7.0) 82 | activesupport (>= 4.2.0) 83 | multi_json (>= 1.2) 84 | jquery-rails (4.1.1) 85 | rails-dom-testing (>= 1, < 3) 86 | railties (>= 4.2.0) 87 | thor (>= 0.14, < 2.0) 88 | jwt (1.5.6) 89 | libv8 (5.9.211.38.1-x86_64-darwin-16) 90 | listen (3.1.5) 91 | rb-fsevent (~> 0.9, >= 0.9.4) 92 | rb-inotify (~> 0.9, >= 0.9.7) 93 | ruby_dep (~> 1.2) 94 | loofah (2.0.3) 95 | nokogiri (>= 1.5.9) 96 | mail (2.6.6) 97 | mime-types (>= 1.16, < 4) 98 | method_source (0.8.2) 99 | mime-types (3.1) 100 | mime-types-data (~> 3.2015) 101 | mime-types-data (3.2016.0521) 102 | mini_mime (0.1.4) 103 | mini_portile2 (2.2.0) 104 | mini_racer (0.1.12) 105 | libv8 (~> 5.9) 106 | minitest (5.10.3) 107 | multi_json (1.12.1) 108 | multi_xml (0.6.0) 109 | multipart-post (2.0.0) 110 | nio4r (2.1.0) 111 | nokogiri (1.8.0) 112 | mini_portile2 (~> 2.2.0) 113 | oauth2 (1.4.0) 114 | faraday (>= 0.8, < 0.13) 115 | jwt (~> 1.0) 116 | multi_json (~> 1.3) 117 | multi_xml (~> 0.5) 118 | rack (>= 1.2, < 3) 119 | omniauth (1.6.1) 120 | hashie (>= 3.4.6, < 3.6.0) 121 | rack (>= 1.6.2, < 3) 122 | omniauth-github (1.3.0) 123 | omniauth (~> 1.5) 124 | omniauth-oauth2 (>= 1.4.0, < 2.0) 125 | omniauth-oauth2 (1.4.0) 126 | oauth2 (~> 1.0) 127 | omniauth (~> 1.2) 128 | orm_adapter (0.5.0) 129 | pg (0.21.0) 130 | public_suffix (3.0.0) 131 | puma (3.10.0) 132 | rack (2.0.3) 133 | rack-test (0.6.3) 134 | rack (>= 1.0) 135 | rails (5.1.3) 136 | actioncable (= 5.1.3) 137 | actionmailer (= 5.1.3) 138 | actionpack (= 5.1.3) 139 | actionview (= 5.1.3) 140 | activejob (= 5.1.3) 141 | activemodel (= 5.1.3) 142 | activerecord (= 5.1.3) 143 | activesupport (= 5.1.3) 144 | bundler (>= 1.3.0) 145 | railties (= 5.1.3) 146 | sprockets-rails (>= 2.0.0) 147 | rails-dom-testing (2.0.3) 148 | activesupport (>= 4.2.0) 149 | nokogiri (>= 1.6) 150 | rails-html-sanitizer (1.0.3) 151 | loofah (~> 2.0) 152 | railties (5.1.3) 153 | actionpack (= 5.1.3) 154 | activesupport (= 5.1.3) 155 | method_source 156 | rake (>= 0.8.7) 157 | thor (>= 0.18.1, < 2.0) 158 | rainbow (2.2.2) 159 | rake 160 | rake (12.0.0) 161 | rb-fsevent (0.10.2) 162 | rb-inotify (0.9.10) 163 | ffi (>= 0.5.0, < 2) 164 | react_on_rails (8.0.0) 165 | addressable 166 | connection_pool 167 | execjs (~> 2.5) 168 | rails (>= 3.2) 169 | rainbow (~> 2.1) 170 | responders (2.4.0) 171 | actionpack (>= 4.2.0, < 5.3) 172 | railties (>= 4.2.0, < 5.3) 173 | ruby_dep (1.5.0) 174 | rubyzip (1.2.1) 175 | sass (3.5.1) 176 | sass-listen (~> 4.0.0) 177 | sass-listen (4.0.0) 178 | rb-fsevent (~> 0.9, >= 0.9.4) 179 | rb-inotify (~> 0.9, >= 0.9.7) 180 | sass-rails (5.0.6) 181 | railties (>= 4.0.0, < 6) 182 | sass (~> 3.1) 183 | sprockets (>= 2.8, < 4.0) 184 | sprockets-rails (>= 2.0, < 4.0) 185 | tilt (>= 1.1, < 3) 186 | selenium-webdriver (3.5.1) 187 | childprocess (~> 0.5) 188 | rubyzip (~> 1.0) 189 | spring (2.0.2) 190 | activesupport (>= 4.2) 191 | spring-watcher-listen (2.0.1) 192 | listen (>= 2.7, < 4.0) 193 | spring (>= 1.2, < 3.0) 194 | sprockets (3.7.1) 195 | concurrent-ruby (~> 1.0) 196 | rack (> 1, < 3) 197 | sprockets-rails (3.2.1) 198 | actionpack (>= 4.0) 199 | activesupport (>= 4.0) 200 | sprockets (>= 3.0.0) 201 | thor (0.20.0) 202 | thread_safe (0.3.6) 203 | tilt (2.0.8) 204 | turbolinks (5.0.1) 205 | turbolinks-source (~> 5) 206 | turbolinks-source (5.0.3) 207 | tzinfo (1.2.3) 208 | thread_safe (~> 0.1) 209 | uglifier (3.2.0) 210 | execjs (>= 0.3.0, < 3) 211 | warden (1.2.7) 212 | rack (>= 1.0) 213 | web-console (3.5.1) 214 | actionview (>= 5.0) 215 | activemodel (>= 5.0) 216 | bindex (>= 0.4.0) 217 | railties (>= 5.0) 218 | webpacker_lite (2.1.0) 219 | activesupport (>= 4.2) 220 | multi_json (~> 1.2) 221 | railties (>= 4.2) 222 | websocket-driver (0.6.5) 223 | websocket-extensions (>= 0.1.0) 224 | websocket-extensions (0.1.2) 225 | xpath (2.1.0) 226 | nokogiri (~> 1.3) 227 | 228 | PLATFORMS 229 | ruby 230 | 231 | DEPENDENCIES 232 | byebug 233 | capybara (~> 2.13) 234 | coffee-rails (~> 4.2) 235 | devise 236 | jbuilder (~> 2.5) 237 | jquery-rails 238 | listen (>= 3.0.5, < 3.2) 239 | mini_racer 240 | omniauth 241 | omniauth-github 242 | pg (~> 0.18) 243 | puma (~> 3.7) 244 | rails (~> 5.1.3) 245 | react_on_rails (= 8.0.0) 246 | sass-rails (~> 5.0) 247 | selenium-webdriver 248 | spring 249 | spring-watcher-listen (~> 2.0.0) 250 | turbolinks (~> 5) 251 | tzinfo-data 252 | uglifier (>= 1.3.0) 253 | web-console (>= 3.3.0) 254 | webpacker_lite 255 | 256 | RUBY VERSION 257 | ruby 2.4.1p111 258 | 259 | BUNDLED WITH 260 | 1.15.4 261 | -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- 1 | # Use this hook to configure devise mailer, warden hooks and so forth. 2 | # Many of these configuration options can be set straight in your model. 3 | Devise.setup do |config| 4 | # The secret key used by Devise. Devise uses this key to generate 5 | # random tokens. Changing this key will render invalid all existing 6 | # confirmation, reset password and unlock tokens in the database. 7 | # Devise will use the `secret_key_base` as its `secret_key` 8 | # by default. You can change it below and use your own secret key. 9 | # config.secret_key = '2d47f572bcd35b27dad63e28429b242b31b497fc74b5077885b245a511552ec7131f800cc8559584b96506d9dc1f875f25ef8a3b48e2b0456d2b357afc5db1ff' 10 | 11 | # ==> Mailer Configuration 12 | # Configure the e-mail address which will be shown in Devise::Mailer, 13 | # note that it will be overwritten if you use your own mailer class 14 | # with default "from" parameter. 15 | config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' 16 | 17 | # Configure the class responsible to send e-mails. 18 | # config.mailer = 'Devise::Mailer' 19 | 20 | # Configure the parent class responsible to send e-mails. 21 | # config.parent_mailer = 'ActionMailer::Base' 22 | 23 | # ==> ORM configuration 24 | # Load and configure the ORM. Supports :active_record (default) and 25 | # :mongoid (bson_ext recommended) by default. Other ORMs may be 26 | # available as additional gems. 27 | require 'devise/orm/active_record' 28 | 29 | # ==> Configuration for any authentication mechanism 30 | # Configure which keys are used when authenticating a user. The default is 31 | # just :email. You can configure it to use [:username, :subdomain], so for 32 | # authenticating a user, both parameters are required. Remember that those 33 | # parameters are used only when authenticating and not when retrieving from 34 | # session. If you need permissions, you should implement that in a before filter. 35 | # You can also supply a hash where the value is a boolean determining whether 36 | # or not authentication should be aborted when the value is not present. 37 | # config.authentication_keys = [:email] 38 | 39 | # Configure parameters from the request object used for authentication. Each entry 40 | # given should be a request method and it will automatically be passed to the 41 | # find_for_authentication method and considered in your model lookup. For instance, 42 | # if you set :request_keys to [:subdomain], :subdomain will be used on authentication. 43 | # The same considerations mentioned for authentication_keys also apply to request_keys. 44 | # config.request_keys = [] 45 | 46 | # Configure which authentication keys should be case-insensitive. 47 | # These keys will be downcased upon creating or modifying a user and when used 48 | # to authenticate or find a user. Default is :email. 49 | config.case_insensitive_keys = [:email] 50 | 51 | # Configure which authentication keys should have whitespace stripped. 52 | # These keys will have whitespace before and after removed upon creating or 53 | # modifying a user and when used to authenticate or find a user. Default is :email. 54 | config.strip_whitespace_keys = [:email] 55 | 56 | # Tell if authentication through request.params is enabled. True by default. 57 | # It can be set to an array that will enable params authentication only for the 58 | # given strategies, for example, `config.params_authenticatable = [:database]` will 59 | # enable it only for database (email + password) authentication. 60 | # config.params_authenticatable = true 61 | 62 | # Tell if authentication through HTTP Auth is enabled. False by default. 63 | # It can be set to an array that will enable http authentication only for the 64 | # given strategies, for example, `config.http_authenticatable = [:database]` will 65 | # enable it only for database authentication. The supported strategies are: 66 | # :database = Support basic authentication with authentication key + password 67 | # config.http_authenticatable = false 68 | 69 | # If 401 status code should be returned for AJAX requests. True by default. 70 | # config.http_authenticatable_on_xhr = true 71 | 72 | # The realm used in Http Basic Authentication. 'Application' by default. 73 | # config.http_authentication_realm = 'Application' 74 | 75 | # It will change confirmation, password recovery and other workflows 76 | # to behave the same regardless if the e-mail provided was right or wrong. 77 | # Does not affect registerable. 78 | # config.paranoid = true 79 | 80 | # By default Devise will store the user in session. You can skip storage for 81 | # particular strategies by setting this option. 82 | # Notice that if you are skipping storage for all authentication paths, you 83 | # may want to disable generating routes to Devise's sessions controller by 84 | # passing skip: :sessions to `devise_for` in your config/routes.rb 85 | config.skip_session_storage = [:http_auth] 86 | 87 | # By default, Devise cleans up the CSRF token on authentication to 88 | # avoid CSRF token fixation attacks. This means that, when using AJAX 89 | # requests for sign in and sign up, you need to get a new CSRF token 90 | # from the server. You can disable this option at your own risk. 91 | # config.clean_up_csrf_token_on_authentication = true 92 | 93 | # When false, Devise will not attempt to reload routes on eager load. 94 | # This can reduce the time taken to boot the app but if your application 95 | # requires the Devise mappings to be loaded during boot time the application 96 | # won't boot properly. 97 | # config.reload_routes = true 98 | 99 | # ==> Configuration for :database_authenticatable 100 | # For bcrypt, this is the cost for hashing the password and defaults to 11. If 101 | # using other algorithms, it sets how many times you want the password to be hashed. 102 | # 103 | # Limiting the stretches to just one in testing will increase the performance of 104 | # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use 105 | # a value less than 10 in other environments. Note that, for bcrypt (the default 106 | # algorithm), the cost increases exponentially with the number of stretches (e.g. 107 | # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation). 108 | config.stretches = Rails.env.test? ? 1 : 11 109 | 110 | # Set up a pepper to generate the hashed password. 111 | # config.pepper = '672d15542df78d837d9a0975f0dcf40707cc88742dc4b73bdf8aaa897be652b5c8e9f7337f4969e9d6bfd2ef166b01961ca9d556fa1e4e187673340a1549358b' 112 | 113 | # Send a notification to the original email when the user's email is changed. 114 | # config.send_email_changed_notification = false 115 | 116 | # Send a notification email when the user's password is changed. 117 | # config.send_password_change_notification = false 118 | 119 | # ==> Configuration for :confirmable 120 | # A period that the user is allowed to access the website even without 121 | # confirming their account. For instance, if set to 2.days, the user will be 122 | # able to access the website for two days without confirming their account, 123 | # access will be blocked just in the third day. Default is 0.days, meaning 124 | # the user cannot access the website without confirming their account. 125 | # config.allow_unconfirmed_access_for = 2.days 126 | 127 | # A period that the user is allowed to confirm their account before their 128 | # token becomes invalid. For example, if set to 3.days, the user can confirm 129 | # their account within 3 days after the mail was sent, but on the fourth day 130 | # their account can't be confirmed with the token any more. 131 | # Default is nil, meaning there is no restriction on how long a user can take 132 | # before confirming their account. 133 | # config.confirm_within = 3.days 134 | 135 | # If true, requires any email changes to be confirmed (exactly the same way as 136 | # initial account confirmation) to be applied. Requires additional unconfirmed_email 137 | # db field (see migrations). Until confirmed, new email is stored in 138 | # unconfirmed_email column, and copied to email column on successful confirmation. 139 | config.reconfirmable = true 140 | 141 | # Defines which key will be used when confirming an account 142 | # config.confirmation_keys = [:email] 143 | 144 | # ==> Configuration for :rememberable 145 | # The time the user will be remembered without asking for credentials again. 146 | # config.remember_for = 2.weeks 147 | 148 | # Invalidates all the remember me tokens when the user signs out. 149 | config.expire_all_remember_me_on_sign_out = true 150 | 151 | # If true, extends the user's remember period when remembered via cookie. 152 | # config.extend_remember_period = false 153 | 154 | # Options to be passed to the created cookie. For instance, you can set 155 | # secure: true in order to force SSL only cookies. 156 | # config.rememberable_options = {} 157 | 158 | # ==> Configuration for :validatable 159 | # Range for password length. 160 | config.password_length = 6..128 161 | 162 | # Email regex used to validate email formats. It simply asserts that 163 | # one (and only one) @ exists in the given string. This is mainly 164 | # to give user feedback and not to assert the e-mail validity. 165 | config.email_regexp = /\A[^@\s]+@[^@\s]+\z/ 166 | 167 | # ==> Configuration for :timeoutable 168 | # The time you want to timeout the user session without activity. After this 169 | # time the user will be asked for credentials again. Default is 30 minutes. 170 | # config.timeout_in = 30.minutes 171 | 172 | # ==> Configuration for :lockable 173 | # Defines which strategy will be used to lock an account. 174 | # :failed_attempts = Locks an account after a number of failed attempts to sign in. 175 | # :none = No lock strategy. You should handle locking by yourself. 176 | # config.lock_strategy = :failed_attempts 177 | 178 | # Defines which key will be used when locking and unlocking an account 179 | # config.unlock_keys = [:email] 180 | 181 | # Defines which strategy will be used to unlock an account. 182 | # :email = Sends an unlock link to the user email 183 | # :time = Re-enables login after a certain amount of time (see :unlock_in below) 184 | # :both = Enables both strategies 185 | # :none = No unlock strategy. You should handle unlocking by yourself. 186 | # config.unlock_strategy = :both 187 | 188 | # Number of authentication tries before locking an account if lock_strategy 189 | # is failed attempts. 190 | # config.maximum_attempts = 20 191 | 192 | # Time interval to unlock the account if :time is enabled as unlock_strategy. 193 | # config.unlock_in = 1.hour 194 | 195 | # Warn on the last attempt before the account is locked. 196 | # config.last_attempt_warning = true 197 | 198 | # ==> Configuration for :recoverable 199 | # 200 | # Defines which key will be used when recovering the password for an account 201 | # config.reset_password_keys = [:email] 202 | 203 | # Time interval you can reset your password with a reset password key. 204 | # Don't put a too small interval or your users won't have the time to 205 | # change their passwords. 206 | config.reset_password_within = 6.hours 207 | 208 | # When set to false, does not sign a user in automatically after their password is 209 | # reset. Defaults to true, so a user is signed in automatically after a reset. 210 | # config.sign_in_after_reset_password = true 211 | 212 | # ==> Configuration for :encryptable 213 | # Allow you to use another hashing or encryption algorithm besides bcrypt (default). 214 | # You can use :sha1, :sha512 or algorithms from others authentication tools as 215 | # :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20 216 | # for default behavior) and :restful_authentication_sha1 (then you should set 217 | # stretches to 10, and copy REST_AUTH_SITE_KEY to pepper). 218 | # 219 | # Require the `devise-encryptable` gem when using anything other than bcrypt 220 | # config.encryptor = :sha512 221 | 222 | # ==> Scopes configuration 223 | # Turn scoped views on. Before rendering "sessions/new", it will first check for 224 | # "users/sessions/new". It's turned off by default because it's slower if you 225 | # are using only default views. 226 | # config.scoped_views = false 227 | 228 | # Configure the default scope given to Warden. By default it's the first 229 | # devise role declared in your routes (usually :user). 230 | # config.default_scope = :user 231 | 232 | # Set this configuration to false if you want /users/sign_out to sign out 233 | # only the current scope. By default, Devise signs out all scopes. 234 | # config.sign_out_all_scopes = true 235 | 236 | # ==> Navigation configuration 237 | # Lists the formats that should be treated as navigational. Formats like 238 | # :html, should redirect to the sign in page when the user does not have 239 | # access, but formats like :xml or :json, should return 401. 240 | # 241 | # If you have any extra navigational formats, like :iphone or :mobile, you 242 | # should add them to the navigational formats lists. 243 | # 244 | # The "*/*" below is required to match Internet Explorer requests. 245 | # config.navigational_formats = ['*/*', :html] 246 | 247 | # The default HTTP method used to sign out a resource. Default is :delete. 248 | config.sign_out_via = :delete 249 | 250 | # ==> OmniAuth 251 | # Add a new OmniAuth provider. Check the wiki for more information on setting 252 | # up on your models and hooks. 253 | config.omniauth :github, Rails.application.secrets.github_app_id, 254 | Rails.application.secrets.github_app_secret, 255 | scope: "user:email" 256 | 257 | # ==> Warden configuration 258 | # If you want to use other strategies, that are not supported by Devise, or 259 | # change the failure app, you can configure them inside the config.warden block. 260 | # 261 | # config.warden do |manager| 262 | # manager.intercept_401 = false 263 | # manager.default_strategies(scope: :user).unshift :some_external_strategy 264 | # end 265 | 266 | # ==> Mountable engine configurations 267 | # When using Devise inside an engine, let's call it `MyEngine`, and this engine 268 | # is mountable, there are some extra configurations to be taken into account. 269 | # The following options are available, assuming the engine is mounted as: 270 | # 271 | # mount MyEngine, at: '/my_engine' 272 | # 273 | # The router that invoked `devise_for`, in the example above, would be: 274 | # config.router_name = :my_engine 275 | # 276 | # When using OmniAuth, Devise cannot automatically set OmniAuth path, 277 | # so you need to do it manually. For the users scope, it would be: 278 | # config.omniauth_path_prefix = '/my_engine/users/auth' 279 | end 280 | -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | abbrev@1: 6 | version "1.1.0" 7 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" 8 | 9 | acorn-dynamic-import@^2.0.0: 10 | version "2.0.2" 11 | resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" 12 | dependencies: 13 | acorn "^4.0.3" 14 | 15 | acorn@^4.0.3: 16 | version "4.0.13" 17 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" 18 | 19 | acorn@^5.0.0: 20 | version "5.1.1" 21 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" 22 | 23 | ajv-keywords@^1.1.1: 24 | version "1.5.1" 25 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" 26 | 27 | ajv@^4.7.0, ajv@^4.9.1: 28 | version "4.11.8" 29 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 30 | dependencies: 31 | co "^4.6.0" 32 | json-stable-stringify "^1.0.1" 33 | 34 | align-text@^0.1.1, align-text@^0.1.3: 35 | version "0.1.4" 36 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 37 | dependencies: 38 | kind-of "^3.0.2" 39 | longest "^1.0.1" 40 | repeat-string "^1.5.2" 41 | 42 | ansi-regex@^2.0.0: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 45 | 46 | ansi-styles@^2.2.1: 47 | version "2.2.1" 48 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 49 | 50 | anymatch@^1.3.0: 51 | version "1.3.2" 52 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" 53 | dependencies: 54 | micromatch "^2.1.5" 55 | normalize-path "^2.0.0" 56 | 57 | aproba@^1.0.3: 58 | version "1.1.2" 59 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" 60 | 61 | are-we-there-yet@~1.1.2: 62 | version "1.1.4" 63 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 64 | dependencies: 65 | delegates "^1.0.0" 66 | readable-stream "^2.0.6" 67 | 68 | argparse@^1.0.7: 69 | version "1.0.9" 70 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 71 | dependencies: 72 | sprintf-js "~1.0.2" 73 | 74 | arr-diff@^2.0.0: 75 | version "2.0.0" 76 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 77 | dependencies: 78 | arr-flatten "^1.0.1" 79 | 80 | arr-flatten@^1.0.1: 81 | version "1.1.0" 82 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 83 | 84 | array-unique@^0.2.1: 85 | version "0.2.1" 86 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 87 | 88 | asap@~2.0.3: 89 | version "2.0.6" 90 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 91 | 92 | asn1.js@^4.0.0: 93 | version "4.9.1" 94 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" 95 | dependencies: 96 | bn.js "^4.0.0" 97 | inherits "^2.0.1" 98 | minimalistic-assert "^1.0.0" 99 | 100 | asn1@~0.2.3: 101 | version "0.2.3" 102 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 103 | 104 | assert-plus@1.0.0, assert-plus@^1.0.0: 105 | version "1.0.0" 106 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 107 | 108 | assert-plus@^0.2.0: 109 | version "0.2.0" 110 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" 111 | 112 | assert@^1.1.1: 113 | version "1.4.1" 114 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" 115 | dependencies: 116 | util "0.10.3" 117 | 118 | async-each@^1.0.0: 119 | version "1.0.1" 120 | resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" 121 | 122 | async@^2.1.2: 123 | version "2.5.0" 124 | resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" 125 | dependencies: 126 | lodash "^4.14.0" 127 | 128 | asynckit@^0.4.0: 129 | version "0.4.0" 130 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 131 | 132 | aws-sign2@~0.6.0: 133 | version "0.6.0" 134 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" 135 | 136 | aws4@^1.2.1: 137 | version "1.6.0" 138 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 139 | 140 | babel-cli@^6.24.1: 141 | version "6.26.0" 142 | resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" 143 | dependencies: 144 | babel-core "^6.26.0" 145 | babel-polyfill "^6.26.0" 146 | babel-register "^6.26.0" 147 | babel-runtime "^6.26.0" 148 | commander "^2.11.0" 149 | convert-source-map "^1.5.0" 150 | fs-readdir-recursive "^1.0.0" 151 | glob "^7.1.2" 152 | lodash "^4.17.4" 153 | output-file-sync "^1.1.2" 154 | path-is-absolute "^1.0.1" 155 | slash "^1.0.0" 156 | source-map "^0.5.6" 157 | v8flags "^2.1.1" 158 | optionalDependencies: 159 | chokidar "^1.6.1" 160 | 161 | babel-code-frame@^6.26.0: 162 | version "6.26.0" 163 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 164 | dependencies: 165 | chalk "^1.1.3" 166 | esutils "^2.0.2" 167 | js-tokens "^3.0.2" 168 | 169 | babel-core@^6.24.1, babel-core@^6.26.0: 170 | version "6.26.0" 171 | resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8" 172 | dependencies: 173 | babel-code-frame "^6.26.0" 174 | babel-generator "^6.26.0" 175 | babel-helpers "^6.24.1" 176 | babel-messages "^6.23.0" 177 | babel-register "^6.26.0" 178 | babel-runtime "^6.26.0" 179 | babel-template "^6.26.0" 180 | babel-traverse "^6.26.0" 181 | babel-types "^6.26.0" 182 | babylon "^6.18.0" 183 | convert-source-map "^1.5.0" 184 | debug "^2.6.8" 185 | json5 "^0.5.1" 186 | lodash "^4.17.4" 187 | minimatch "^3.0.4" 188 | path-is-absolute "^1.0.1" 189 | private "^0.1.7" 190 | slash "^1.0.0" 191 | source-map "^0.5.6" 192 | 193 | babel-generator@^6.26.0: 194 | version "6.26.0" 195 | resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5" 196 | dependencies: 197 | babel-messages "^6.23.0" 198 | babel-runtime "^6.26.0" 199 | babel-types "^6.26.0" 200 | detect-indent "^4.0.0" 201 | jsesc "^1.3.0" 202 | lodash "^4.17.4" 203 | source-map "^0.5.6" 204 | trim-right "^1.0.1" 205 | 206 | babel-helper-bindify-decorators@^6.24.1: 207 | version "6.24.1" 208 | resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330" 209 | dependencies: 210 | babel-runtime "^6.22.0" 211 | babel-traverse "^6.24.1" 212 | babel-types "^6.24.1" 213 | 214 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: 215 | version "6.24.1" 216 | resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" 217 | dependencies: 218 | babel-helper-explode-assignable-expression "^6.24.1" 219 | babel-runtime "^6.22.0" 220 | babel-types "^6.24.1" 221 | 222 | babel-helper-builder-react-jsx@^6.24.1: 223 | version "6.26.0" 224 | resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0" 225 | dependencies: 226 | babel-runtime "^6.26.0" 227 | babel-types "^6.26.0" 228 | esutils "^2.0.2" 229 | 230 | babel-helper-call-delegate@^6.24.1: 231 | version "6.24.1" 232 | resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" 233 | dependencies: 234 | babel-helper-hoist-variables "^6.24.1" 235 | babel-runtime "^6.22.0" 236 | babel-traverse "^6.24.1" 237 | babel-types "^6.24.1" 238 | 239 | babel-helper-define-map@^6.24.1: 240 | version "6.26.0" 241 | resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" 242 | dependencies: 243 | babel-helper-function-name "^6.24.1" 244 | babel-runtime "^6.26.0" 245 | babel-types "^6.26.0" 246 | lodash "^4.17.4" 247 | 248 | babel-helper-explode-assignable-expression@^6.24.1: 249 | version "6.24.1" 250 | resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" 251 | dependencies: 252 | babel-runtime "^6.22.0" 253 | babel-traverse "^6.24.1" 254 | babel-types "^6.24.1" 255 | 256 | babel-helper-explode-class@^6.24.1: 257 | version "6.24.1" 258 | resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb" 259 | dependencies: 260 | babel-helper-bindify-decorators "^6.24.1" 261 | babel-runtime "^6.22.0" 262 | babel-traverse "^6.24.1" 263 | babel-types "^6.24.1" 264 | 265 | babel-helper-function-name@^6.24.1: 266 | version "6.24.1" 267 | resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" 268 | dependencies: 269 | babel-helper-get-function-arity "^6.24.1" 270 | babel-runtime "^6.22.0" 271 | babel-template "^6.24.1" 272 | babel-traverse "^6.24.1" 273 | babel-types "^6.24.1" 274 | 275 | babel-helper-get-function-arity@^6.24.1: 276 | version "6.24.1" 277 | resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" 278 | dependencies: 279 | babel-runtime "^6.22.0" 280 | babel-types "^6.24.1" 281 | 282 | babel-helper-hoist-variables@^6.24.1: 283 | version "6.24.1" 284 | resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" 285 | dependencies: 286 | babel-runtime "^6.22.0" 287 | babel-types "^6.24.1" 288 | 289 | babel-helper-optimise-call-expression@^6.24.1: 290 | version "6.24.1" 291 | resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" 292 | dependencies: 293 | babel-runtime "^6.22.0" 294 | babel-types "^6.24.1" 295 | 296 | babel-helper-regex@^6.24.1: 297 | version "6.26.0" 298 | resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" 299 | dependencies: 300 | babel-runtime "^6.26.0" 301 | babel-types "^6.26.0" 302 | lodash "^4.17.4" 303 | 304 | babel-helper-remap-async-to-generator@^6.24.1: 305 | version "6.24.1" 306 | resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" 307 | dependencies: 308 | babel-helper-function-name "^6.24.1" 309 | babel-runtime "^6.22.0" 310 | babel-template "^6.24.1" 311 | babel-traverse "^6.24.1" 312 | babel-types "^6.24.1" 313 | 314 | babel-helper-replace-supers@^6.24.1: 315 | version "6.24.1" 316 | resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" 317 | dependencies: 318 | babel-helper-optimise-call-expression "^6.24.1" 319 | babel-messages "^6.23.0" 320 | babel-runtime "^6.22.0" 321 | babel-template "^6.24.1" 322 | babel-traverse "^6.24.1" 323 | babel-types "^6.24.1" 324 | 325 | babel-helpers@^6.24.1: 326 | version "6.24.1" 327 | resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" 328 | dependencies: 329 | babel-runtime "^6.22.0" 330 | babel-template "^6.24.1" 331 | 332 | babel-loader@^6.3.2: 333 | version "6.4.1" 334 | resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca" 335 | dependencies: 336 | find-cache-dir "^0.1.1" 337 | loader-utils "^0.2.16" 338 | mkdirp "^0.5.1" 339 | object-assign "^4.0.1" 340 | 341 | babel-messages@^6.23.0: 342 | version "6.23.0" 343 | resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" 344 | dependencies: 345 | babel-runtime "^6.22.0" 346 | 347 | babel-plugin-check-es2015-constants@^6.22.0: 348 | version "6.22.0" 349 | resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" 350 | dependencies: 351 | babel-runtime "^6.22.0" 352 | 353 | babel-plugin-syntax-async-functions@^6.8.0: 354 | version "6.13.0" 355 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" 356 | 357 | babel-plugin-syntax-async-generators@^6.5.0: 358 | version "6.13.0" 359 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a" 360 | 361 | babel-plugin-syntax-class-properties@^6.8.0: 362 | version "6.13.0" 363 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" 364 | 365 | babel-plugin-syntax-decorators@^6.13.0: 366 | version "6.13.0" 367 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b" 368 | 369 | babel-plugin-syntax-dynamic-import@^6.18.0: 370 | version "6.18.0" 371 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da" 372 | 373 | babel-plugin-syntax-exponentiation-operator@^6.8.0: 374 | version "6.13.0" 375 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" 376 | 377 | babel-plugin-syntax-flow@^6.18.0: 378 | version "6.18.0" 379 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" 380 | 381 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: 382 | version "6.18.0" 383 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" 384 | 385 | babel-plugin-syntax-object-rest-spread@^6.8.0: 386 | version "6.13.0" 387 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" 388 | 389 | babel-plugin-syntax-trailing-function-commas@^6.22.0: 390 | version "6.22.0" 391 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" 392 | 393 | babel-plugin-transform-async-generator-functions@^6.24.1: 394 | version "6.24.1" 395 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db" 396 | dependencies: 397 | babel-helper-remap-async-to-generator "^6.24.1" 398 | babel-plugin-syntax-async-generators "^6.5.0" 399 | babel-runtime "^6.22.0" 400 | 401 | babel-plugin-transform-async-to-generator@^6.24.1: 402 | version "6.24.1" 403 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" 404 | dependencies: 405 | babel-helper-remap-async-to-generator "^6.24.1" 406 | babel-plugin-syntax-async-functions "^6.8.0" 407 | babel-runtime "^6.22.0" 408 | 409 | babel-plugin-transform-class-properties@^6.24.1: 410 | version "6.24.1" 411 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" 412 | dependencies: 413 | babel-helper-function-name "^6.24.1" 414 | babel-plugin-syntax-class-properties "^6.8.0" 415 | babel-runtime "^6.22.0" 416 | babel-template "^6.24.1" 417 | 418 | babel-plugin-transform-decorators@^6.24.1: 419 | version "6.24.1" 420 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d" 421 | dependencies: 422 | babel-helper-explode-class "^6.24.1" 423 | babel-plugin-syntax-decorators "^6.13.0" 424 | babel-runtime "^6.22.0" 425 | babel-template "^6.24.1" 426 | babel-types "^6.24.1" 427 | 428 | babel-plugin-transform-es2015-arrow-functions@^6.22.0: 429 | version "6.22.0" 430 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" 431 | dependencies: 432 | babel-runtime "^6.22.0" 433 | 434 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: 435 | version "6.22.0" 436 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" 437 | dependencies: 438 | babel-runtime "^6.22.0" 439 | 440 | babel-plugin-transform-es2015-block-scoping@^6.24.1: 441 | version "6.26.0" 442 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" 443 | dependencies: 444 | babel-runtime "^6.26.0" 445 | babel-template "^6.26.0" 446 | babel-traverse "^6.26.0" 447 | babel-types "^6.26.0" 448 | lodash "^4.17.4" 449 | 450 | babel-plugin-transform-es2015-classes@^6.24.1: 451 | version "6.24.1" 452 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" 453 | dependencies: 454 | babel-helper-define-map "^6.24.1" 455 | babel-helper-function-name "^6.24.1" 456 | babel-helper-optimise-call-expression "^6.24.1" 457 | babel-helper-replace-supers "^6.24.1" 458 | babel-messages "^6.23.0" 459 | babel-runtime "^6.22.0" 460 | babel-template "^6.24.1" 461 | babel-traverse "^6.24.1" 462 | babel-types "^6.24.1" 463 | 464 | babel-plugin-transform-es2015-computed-properties@^6.24.1: 465 | version "6.24.1" 466 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" 467 | dependencies: 468 | babel-runtime "^6.22.0" 469 | babel-template "^6.24.1" 470 | 471 | babel-plugin-transform-es2015-destructuring@^6.22.0: 472 | version "6.23.0" 473 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" 474 | dependencies: 475 | babel-runtime "^6.22.0" 476 | 477 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1: 478 | version "6.24.1" 479 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" 480 | dependencies: 481 | babel-runtime "^6.22.0" 482 | babel-types "^6.24.1" 483 | 484 | babel-plugin-transform-es2015-for-of@^6.22.0: 485 | version "6.23.0" 486 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" 487 | dependencies: 488 | babel-runtime "^6.22.0" 489 | 490 | babel-plugin-transform-es2015-function-name@^6.24.1: 491 | version "6.24.1" 492 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" 493 | dependencies: 494 | babel-helper-function-name "^6.24.1" 495 | babel-runtime "^6.22.0" 496 | babel-types "^6.24.1" 497 | 498 | babel-plugin-transform-es2015-literals@^6.22.0: 499 | version "6.22.0" 500 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" 501 | dependencies: 502 | babel-runtime "^6.22.0" 503 | 504 | babel-plugin-transform-es2015-modules-amd@^6.24.1: 505 | version "6.24.1" 506 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" 507 | dependencies: 508 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 509 | babel-runtime "^6.22.0" 510 | babel-template "^6.24.1" 511 | 512 | babel-plugin-transform-es2015-modules-commonjs@^6.24.1: 513 | version "6.26.0" 514 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a" 515 | dependencies: 516 | babel-plugin-transform-strict-mode "^6.24.1" 517 | babel-runtime "^6.26.0" 518 | babel-template "^6.26.0" 519 | babel-types "^6.26.0" 520 | 521 | babel-plugin-transform-es2015-modules-systemjs@^6.24.1: 522 | version "6.24.1" 523 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" 524 | dependencies: 525 | babel-helper-hoist-variables "^6.24.1" 526 | babel-runtime "^6.22.0" 527 | babel-template "^6.24.1" 528 | 529 | babel-plugin-transform-es2015-modules-umd@^6.24.1: 530 | version "6.24.1" 531 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" 532 | dependencies: 533 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 534 | babel-runtime "^6.22.0" 535 | babel-template "^6.24.1" 536 | 537 | babel-plugin-transform-es2015-object-super@^6.24.1: 538 | version "6.24.1" 539 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" 540 | dependencies: 541 | babel-helper-replace-supers "^6.24.1" 542 | babel-runtime "^6.22.0" 543 | 544 | babel-plugin-transform-es2015-parameters@^6.24.1: 545 | version "6.24.1" 546 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" 547 | dependencies: 548 | babel-helper-call-delegate "^6.24.1" 549 | babel-helper-get-function-arity "^6.24.1" 550 | babel-runtime "^6.22.0" 551 | babel-template "^6.24.1" 552 | babel-traverse "^6.24.1" 553 | babel-types "^6.24.1" 554 | 555 | babel-plugin-transform-es2015-shorthand-properties@^6.24.1: 556 | version "6.24.1" 557 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" 558 | dependencies: 559 | babel-runtime "^6.22.0" 560 | babel-types "^6.24.1" 561 | 562 | babel-plugin-transform-es2015-spread@^6.22.0: 563 | version "6.22.0" 564 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" 565 | dependencies: 566 | babel-runtime "^6.22.0" 567 | 568 | babel-plugin-transform-es2015-sticky-regex@^6.24.1: 569 | version "6.24.1" 570 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" 571 | dependencies: 572 | babel-helper-regex "^6.24.1" 573 | babel-runtime "^6.22.0" 574 | babel-types "^6.24.1" 575 | 576 | babel-plugin-transform-es2015-template-literals@^6.22.0: 577 | version "6.22.0" 578 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" 579 | dependencies: 580 | babel-runtime "^6.22.0" 581 | 582 | babel-plugin-transform-es2015-typeof-symbol@^6.22.0: 583 | version "6.23.0" 584 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" 585 | dependencies: 586 | babel-runtime "^6.22.0" 587 | 588 | babel-plugin-transform-es2015-unicode-regex@^6.24.1: 589 | version "6.24.1" 590 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" 591 | dependencies: 592 | babel-helper-regex "^6.24.1" 593 | babel-runtime "^6.22.0" 594 | regexpu-core "^2.0.0" 595 | 596 | babel-plugin-transform-exponentiation-operator@^6.24.1: 597 | version "6.24.1" 598 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" 599 | dependencies: 600 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" 601 | babel-plugin-syntax-exponentiation-operator "^6.8.0" 602 | babel-runtime "^6.22.0" 603 | 604 | babel-plugin-transform-flow-strip-types@^6.22.0: 605 | version "6.22.0" 606 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" 607 | dependencies: 608 | babel-plugin-syntax-flow "^6.18.0" 609 | babel-runtime "^6.22.0" 610 | 611 | babel-plugin-transform-object-rest-spread@^6.22.0: 612 | version "6.26.0" 613 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" 614 | dependencies: 615 | babel-plugin-syntax-object-rest-spread "^6.8.0" 616 | babel-runtime "^6.26.0" 617 | 618 | babel-plugin-transform-react-display-name@^6.23.0: 619 | version "6.25.0" 620 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" 621 | dependencies: 622 | babel-runtime "^6.22.0" 623 | 624 | babel-plugin-transform-react-jsx-self@^6.22.0: 625 | version "6.22.0" 626 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" 627 | dependencies: 628 | babel-plugin-syntax-jsx "^6.8.0" 629 | babel-runtime "^6.22.0" 630 | 631 | babel-plugin-transform-react-jsx-source@^6.22.0: 632 | version "6.22.0" 633 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" 634 | dependencies: 635 | babel-plugin-syntax-jsx "^6.8.0" 636 | babel-runtime "^6.22.0" 637 | 638 | babel-plugin-transform-react-jsx@^6.24.1: 639 | version "6.24.1" 640 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" 641 | dependencies: 642 | babel-helper-builder-react-jsx "^6.24.1" 643 | babel-plugin-syntax-jsx "^6.8.0" 644 | babel-runtime "^6.22.0" 645 | 646 | babel-plugin-transform-regenerator@^6.24.1: 647 | version "6.26.0" 648 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" 649 | dependencies: 650 | regenerator-transform "^0.10.0" 651 | 652 | babel-plugin-transform-strict-mode@^6.24.1: 653 | version "6.24.1" 654 | resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" 655 | dependencies: 656 | babel-runtime "^6.22.0" 657 | babel-types "^6.24.1" 658 | 659 | babel-polyfill@^6.23.0, babel-polyfill@^6.26.0: 660 | version "6.26.0" 661 | resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" 662 | dependencies: 663 | babel-runtime "^6.26.0" 664 | core-js "^2.5.0" 665 | regenerator-runtime "^0.10.5" 666 | 667 | babel-preset-es2015@^6.24.1: 668 | version "6.24.1" 669 | resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" 670 | dependencies: 671 | babel-plugin-check-es2015-constants "^6.22.0" 672 | babel-plugin-transform-es2015-arrow-functions "^6.22.0" 673 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" 674 | babel-plugin-transform-es2015-block-scoping "^6.24.1" 675 | babel-plugin-transform-es2015-classes "^6.24.1" 676 | babel-plugin-transform-es2015-computed-properties "^6.24.1" 677 | babel-plugin-transform-es2015-destructuring "^6.22.0" 678 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1" 679 | babel-plugin-transform-es2015-for-of "^6.22.0" 680 | babel-plugin-transform-es2015-function-name "^6.24.1" 681 | babel-plugin-transform-es2015-literals "^6.22.0" 682 | babel-plugin-transform-es2015-modules-amd "^6.24.1" 683 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1" 684 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1" 685 | babel-plugin-transform-es2015-modules-umd "^6.24.1" 686 | babel-plugin-transform-es2015-object-super "^6.24.1" 687 | babel-plugin-transform-es2015-parameters "^6.24.1" 688 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1" 689 | babel-plugin-transform-es2015-spread "^6.22.0" 690 | babel-plugin-transform-es2015-sticky-regex "^6.24.1" 691 | babel-plugin-transform-es2015-template-literals "^6.22.0" 692 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0" 693 | babel-plugin-transform-es2015-unicode-regex "^6.24.1" 694 | babel-plugin-transform-regenerator "^6.24.1" 695 | 696 | babel-preset-flow@^6.23.0: 697 | version "6.23.0" 698 | resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" 699 | dependencies: 700 | babel-plugin-transform-flow-strip-types "^6.22.0" 701 | 702 | babel-preset-react@^6.24.1: 703 | version "6.24.1" 704 | resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" 705 | dependencies: 706 | babel-plugin-syntax-jsx "^6.3.13" 707 | babel-plugin-transform-react-display-name "^6.23.0" 708 | babel-plugin-transform-react-jsx "^6.24.1" 709 | babel-plugin-transform-react-jsx-self "^6.22.0" 710 | babel-plugin-transform-react-jsx-source "^6.22.0" 711 | babel-preset-flow "^6.23.0" 712 | 713 | babel-preset-stage-2@^6.24.1: 714 | version "6.24.1" 715 | resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1" 716 | dependencies: 717 | babel-plugin-syntax-dynamic-import "^6.18.0" 718 | babel-plugin-transform-class-properties "^6.24.1" 719 | babel-plugin-transform-decorators "^6.24.1" 720 | babel-preset-stage-3 "^6.24.1" 721 | 722 | babel-preset-stage-3@^6.24.1: 723 | version "6.24.1" 724 | resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395" 725 | dependencies: 726 | babel-plugin-syntax-trailing-function-commas "^6.22.0" 727 | babel-plugin-transform-async-generator-functions "^6.24.1" 728 | babel-plugin-transform-async-to-generator "^6.24.1" 729 | babel-plugin-transform-exponentiation-operator "^6.24.1" 730 | babel-plugin-transform-object-rest-spread "^6.22.0" 731 | 732 | babel-register@^6.26.0: 733 | version "6.26.0" 734 | resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" 735 | dependencies: 736 | babel-core "^6.26.0" 737 | babel-runtime "^6.26.0" 738 | core-js "^2.5.0" 739 | home-or-tmp "^2.0.0" 740 | lodash "^4.17.4" 741 | mkdirp "^0.5.1" 742 | source-map-support "^0.4.15" 743 | 744 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0: 745 | version "6.26.0" 746 | resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" 747 | dependencies: 748 | core-js "^2.4.0" 749 | regenerator-runtime "^0.11.0" 750 | 751 | babel-template@^6.24.1, babel-template@^6.26.0: 752 | version "6.26.0" 753 | resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" 754 | dependencies: 755 | babel-runtime "^6.26.0" 756 | babel-traverse "^6.26.0" 757 | babel-types "^6.26.0" 758 | babylon "^6.18.0" 759 | lodash "^4.17.4" 760 | 761 | babel-traverse@^6.24.1, babel-traverse@^6.26.0: 762 | version "6.26.0" 763 | resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" 764 | dependencies: 765 | babel-code-frame "^6.26.0" 766 | babel-messages "^6.23.0" 767 | babel-runtime "^6.26.0" 768 | babel-types "^6.26.0" 769 | babylon "^6.18.0" 770 | debug "^2.6.8" 771 | globals "^9.18.0" 772 | invariant "^2.2.2" 773 | lodash "^4.17.4" 774 | 775 | babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: 776 | version "6.26.0" 777 | resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" 778 | dependencies: 779 | babel-runtime "^6.26.0" 780 | esutils "^2.0.2" 781 | lodash "^4.17.4" 782 | to-fast-properties "^1.0.3" 783 | 784 | babylon@^6.18.0: 785 | version "6.18.0" 786 | resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" 787 | 788 | balanced-match@^1.0.0: 789 | version "1.0.0" 790 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 791 | 792 | base64-js@^1.0.2: 793 | version "1.2.1" 794 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" 795 | 796 | bcrypt-pbkdf@^1.0.0: 797 | version "1.0.1" 798 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 799 | dependencies: 800 | tweetnacl "^0.14.3" 801 | 802 | big.js@^3.1.3: 803 | version "3.1.3" 804 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" 805 | 806 | binary-extensions@^1.0.0: 807 | version "1.10.0" 808 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0" 809 | 810 | block-stream@*: 811 | version "0.0.9" 812 | resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 813 | dependencies: 814 | inherits "~2.0.0" 815 | 816 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: 817 | version "4.11.8" 818 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" 819 | 820 | boom@2.x.x: 821 | version "2.10.1" 822 | resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" 823 | dependencies: 824 | hoek "2.x.x" 825 | 826 | brace-expansion@^1.1.7: 827 | version "1.1.8" 828 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 829 | dependencies: 830 | balanced-match "^1.0.0" 831 | concat-map "0.0.1" 832 | 833 | braces@^1.8.2: 834 | version "1.8.5" 835 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 836 | dependencies: 837 | expand-range "^1.8.1" 838 | preserve "^0.2.0" 839 | repeat-element "^1.1.2" 840 | 841 | brorand@^1.0.1: 842 | version "1.1.0" 843 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 844 | 845 | browserify-aes@^1.0.0, browserify-aes@^1.0.4: 846 | version "1.0.6" 847 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" 848 | dependencies: 849 | buffer-xor "^1.0.2" 850 | cipher-base "^1.0.0" 851 | create-hash "^1.1.0" 852 | evp_bytestokey "^1.0.0" 853 | inherits "^2.0.1" 854 | 855 | browserify-cipher@^1.0.0: 856 | version "1.0.0" 857 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" 858 | dependencies: 859 | browserify-aes "^1.0.4" 860 | browserify-des "^1.0.0" 861 | evp_bytestokey "^1.0.0" 862 | 863 | browserify-des@^1.0.0: 864 | version "1.0.0" 865 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" 866 | dependencies: 867 | cipher-base "^1.0.1" 868 | des.js "^1.0.0" 869 | inherits "^2.0.1" 870 | 871 | browserify-rsa@^4.0.0: 872 | version "4.0.1" 873 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" 874 | dependencies: 875 | bn.js "^4.1.0" 876 | randombytes "^2.0.1" 877 | 878 | browserify-sign@^4.0.0: 879 | version "4.0.4" 880 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" 881 | dependencies: 882 | bn.js "^4.1.1" 883 | browserify-rsa "^4.0.0" 884 | create-hash "^1.1.0" 885 | create-hmac "^1.1.2" 886 | elliptic "^6.0.0" 887 | inherits "^2.0.1" 888 | parse-asn1 "^5.0.0" 889 | 890 | browserify-zlib@^0.1.4: 891 | version "0.1.4" 892 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" 893 | dependencies: 894 | pako "~0.2.0" 895 | 896 | buffer-xor@^1.0.2: 897 | version "1.0.3" 898 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" 899 | 900 | buffer@^4.3.0: 901 | version "4.9.1" 902 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" 903 | dependencies: 904 | base64-js "^1.0.2" 905 | ieee754 "^1.1.4" 906 | isarray "^1.0.0" 907 | 908 | builtin-modules@^1.0.0: 909 | version "1.1.1" 910 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 911 | 912 | builtin-status-codes@^3.0.0: 913 | version "3.0.0" 914 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 915 | 916 | camelcase@^1.0.2: 917 | version "1.2.1" 918 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 919 | 920 | camelcase@^3.0.0: 921 | version "3.0.0" 922 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" 923 | 924 | caseless@~0.12.0: 925 | version "0.12.0" 926 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 927 | 928 | center-align@^0.1.1: 929 | version "0.1.3" 930 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 931 | dependencies: 932 | align-text "^0.1.3" 933 | lazy-cache "^1.0.3" 934 | 935 | chalk@^1.1.3: 936 | version "1.1.3" 937 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 938 | dependencies: 939 | ansi-styles "^2.2.1" 940 | escape-string-regexp "^1.0.2" 941 | has-ansi "^2.0.0" 942 | strip-ansi "^3.0.0" 943 | supports-color "^2.0.0" 944 | 945 | chokidar@^1.6.1, chokidar@^1.7.0: 946 | version "1.7.0" 947 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" 948 | dependencies: 949 | anymatch "^1.3.0" 950 | async-each "^1.0.0" 951 | glob-parent "^2.0.0" 952 | inherits "^2.0.1" 953 | is-binary-path "^1.0.0" 954 | is-glob "^2.0.0" 955 | path-is-absolute "^1.0.0" 956 | readdirp "^2.0.0" 957 | optionalDependencies: 958 | fsevents "^1.0.0" 959 | 960 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 961 | version "1.0.4" 962 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" 963 | dependencies: 964 | inherits "^2.0.1" 965 | safe-buffer "^5.0.1" 966 | 967 | cliui@^2.1.0: 968 | version "2.1.0" 969 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 970 | dependencies: 971 | center-align "^0.1.1" 972 | right-align "^0.1.1" 973 | wordwrap "0.0.2" 974 | 975 | cliui@^3.2.0: 976 | version "3.2.0" 977 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 978 | dependencies: 979 | string-width "^1.0.1" 980 | strip-ansi "^3.0.1" 981 | wrap-ansi "^2.0.0" 982 | 983 | co@^4.6.0: 984 | version "4.6.0" 985 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 986 | 987 | code-point-at@^1.0.0: 988 | version "1.1.0" 989 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 990 | 991 | combined-stream@^1.0.5, combined-stream@~1.0.5: 992 | version "1.0.5" 993 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 994 | dependencies: 995 | delayed-stream "~1.0.0" 996 | 997 | commander@^2.11.0: 998 | version "2.11.0" 999 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 1000 | 1001 | commondir@^1.0.1: 1002 | version "1.0.1" 1003 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" 1004 | 1005 | concat-map@0.0.1: 1006 | version "0.0.1" 1007 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1008 | 1009 | console-browserify@^1.1.0: 1010 | version "1.1.0" 1011 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" 1012 | dependencies: 1013 | date-now "^0.1.4" 1014 | 1015 | console-control-strings@^1.0.0, console-control-strings@~1.1.0: 1016 | version "1.1.0" 1017 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 1018 | 1019 | constants-browserify@^1.0.0: 1020 | version "1.0.0" 1021 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" 1022 | 1023 | convert-source-map@^1.5.0: 1024 | version "1.5.0" 1025 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" 1026 | 1027 | core-js@^1.0.0: 1028 | version "1.2.7" 1029 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" 1030 | 1031 | core-js@^2.4.0, core-js@^2.5.0: 1032 | version "2.5.1" 1033 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b" 1034 | 1035 | core-util-is@1.0.2, core-util-is@~1.0.0: 1036 | version "1.0.2" 1037 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 1038 | 1039 | create-ecdh@^4.0.0: 1040 | version "4.0.0" 1041 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" 1042 | dependencies: 1043 | bn.js "^4.1.0" 1044 | elliptic "^6.0.0" 1045 | 1046 | create-hash@^1.1.0, create-hash@^1.1.2: 1047 | version "1.1.3" 1048 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" 1049 | dependencies: 1050 | cipher-base "^1.0.1" 1051 | inherits "^2.0.1" 1052 | ripemd160 "^2.0.0" 1053 | sha.js "^2.4.0" 1054 | 1055 | create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: 1056 | version "1.1.6" 1057 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" 1058 | dependencies: 1059 | cipher-base "^1.0.3" 1060 | create-hash "^1.1.0" 1061 | inherits "^2.0.1" 1062 | ripemd160 "^2.0.0" 1063 | safe-buffer "^5.0.1" 1064 | sha.js "^2.4.8" 1065 | 1066 | create-react-class@^15.6.0: 1067 | version "15.6.0" 1068 | resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.0.tgz#ab448497c26566e1e29413e883207d57cfe7bed4" 1069 | dependencies: 1070 | fbjs "^0.8.9" 1071 | loose-envify "^1.3.1" 1072 | object-assign "^4.1.1" 1073 | 1074 | cryptiles@2.x.x: 1075 | version "2.0.5" 1076 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" 1077 | dependencies: 1078 | boom "2.x.x" 1079 | 1080 | crypto-browserify@^3.11.0: 1081 | version "3.11.1" 1082 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" 1083 | dependencies: 1084 | browserify-cipher "^1.0.0" 1085 | browserify-sign "^4.0.0" 1086 | create-ecdh "^4.0.0" 1087 | create-hash "^1.1.0" 1088 | create-hmac "^1.1.0" 1089 | diffie-hellman "^5.0.0" 1090 | inherits "^2.0.1" 1091 | pbkdf2 "^3.0.3" 1092 | public-encrypt "^4.0.0" 1093 | randombytes "^2.0.0" 1094 | 1095 | dashdash@^1.12.0: 1096 | version "1.14.1" 1097 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 1098 | dependencies: 1099 | assert-plus "^1.0.0" 1100 | 1101 | date-now@^0.1.4: 1102 | version "0.1.4" 1103 | resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" 1104 | 1105 | debug@^2.2.0, debug@^2.6.8: 1106 | version "2.6.8" 1107 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" 1108 | dependencies: 1109 | ms "2.0.0" 1110 | 1111 | decamelize@^1.0.0, decamelize@^1.1.1: 1112 | version "1.2.0" 1113 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1114 | 1115 | deep-extend@~0.4.0: 1116 | version "0.4.2" 1117 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" 1118 | 1119 | delayed-stream@~1.0.0: 1120 | version "1.0.0" 1121 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1122 | 1123 | delegates@^1.0.0: 1124 | version "1.0.0" 1125 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 1126 | 1127 | des.js@^1.0.0: 1128 | version "1.0.0" 1129 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" 1130 | dependencies: 1131 | inherits "^2.0.1" 1132 | minimalistic-assert "^1.0.0" 1133 | 1134 | detect-indent@^4.0.0: 1135 | version "4.0.0" 1136 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 1137 | dependencies: 1138 | repeating "^2.0.0" 1139 | 1140 | diffie-hellman@^5.0.0: 1141 | version "5.0.2" 1142 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" 1143 | dependencies: 1144 | bn.js "^4.1.0" 1145 | miller-rabin "^4.0.0" 1146 | randombytes "^2.0.0" 1147 | 1148 | domain-browser@^1.1.1: 1149 | version "1.1.7" 1150 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" 1151 | 1152 | ecc-jsbn@~0.1.1: 1153 | version "0.1.1" 1154 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 1155 | dependencies: 1156 | jsbn "~0.1.0" 1157 | 1158 | elliptic@^6.0.0: 1159 | version "6.4.0" 1160 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" 1161 | dependencies: 1162 | bn.js "^4.4.0" 1163 | brorand "^1.0.1" 1164 | hash.js "^1.0.0" 1165 | hmac-drbg "^1.0.0" 1166 | inherits "^2.0.1" 1167 | minimalistic-assert "^1.0.0" 1168 | minimalistic-crypto-utils "^1.0.0" 1169 | 1170 | emojis-list@^2.0.0: 1171 | version "2.1.0" 1172 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" 1173 | 1174 | encoding@^0.1.11: 1175 | version "0.1.12" 1176 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" 1177 | dependencies: 1178 | iconv-lite "~0.4.13" 1179 | 1180 | enhanced-resolve@^3.3.0: 1181 | version "3.4.1" 1182 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" 1183 | dependencies: 1184 | graceful-fs "^4.1.2" 1185 | memory-fs "^0.4.0" 1186 | object-assign "^4.0.1" 1187 | tapable "^0.2.7" 1188 | 1189 | errno@^0.1.3: 1190 | version "0.1.4" 1191 | resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" 1192 | dependencies: 1193 | prr "~0.0.0" 1194 | 1195 | error-ex@^1.2.0: 1196 | version "1.3.1" 1197 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 1198 | dependencies: 1199 | is-arrayish "^0.2.1" 1200 | 1201 | es5-shim@^4.5.9: 1202 | version "4.5.9" 1203 | resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.9.tgz#2a1e2b9e583ff5fed0c20a3ee2cbf3f75230a5c0" 1204 | 1205 | escape-string-regexp@^1.0.2: 1206 | version "1.0.5" 1207 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1208 | 1209 | esprima@^4.0.0: 1210 | version "4.0.0" 1211 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 1212 | 1213 | esutils@^2.0.2: 1214 | version "2.0.2" 1215 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 1216 | 1217 | events@^1.0.0: 1218 | version "1.1.1" 1219 | resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 1220 | 1221 | evp_bytestokey@^1.0.0: 1222 | version "1.0.2" 1223 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.2.tgz#f66bb88ecd57f71a766821e20283ea38c68bf80a" 1224 | dependencies: 1225 | md5.js "^1.3.4" 1226 | safe-buffer "^5.1.1" 1227 | 1228 | expand-brackets@^0.1.4: 1229 | version "0.1.5" 1230 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 1231 | dependencies: 1232 | is-posix-bracket "^0.1.0" 1233 | 1234 | expand-range@^1.8.1: 1235 | version "1.8.2" 1236 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 1237 | dependencies: 1238 | fill-range "^2.1.0" 1239 | 1240 | expose-loader@^0.7.3: 1241 | version "0.7.3" 1242 | resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.3.tgz#35fbd3659789e4faa81f59de8b7e9fc39e466d51" 1243 | 1244 | extend@~3.0.0: 1245 | version "3.0.1" 1246 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 1247 | 1248 | extglob@^0.3.1: 1249 | version "0.3.2" 1250 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 1251 | dependencies: 1252 | is-extglob "^1.0.0" 1253 | 1254 | extsprintf@1.3.0, extsprintf@^1.2.0: 1255 | version "1.3.0" 1256 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 1257 | 1258 | fbjs@^0.8.9: 1259 | version "0.8.14" 1260 | resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c" 1261 | dependencies: 1262 | core-js "^1.0.0" 1263 | isomorphic-fetch "^2.1.1" 1264 | loose-envify "^1.0.0" 1265 | object-assign "^4.1.0" 1266 | promise "^7.1.1" 1267 | setimmediate "^1.0.5" 1268 | ua-parser-js "^0.7.9" 1269 | 1270 | filename-regex@^2.0.0: 1271 | version "2.0.1" 1272 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 1273 | 1274 | fill-range@^2.1.0: 1275 | version "2.2.3" 1276 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 1277 | dependencies: 1278 | is-number "^2.1.0" 1279 | isobject "^2.0.0" 1280 | randomatic "^1.1.3" 1281 | repeat-element "^1.1.2" 1282 | repeat-string "^1.5.2" 1283 | 1284 | find-cache-dir@^0.1.1: 1285 | version "0.1.1" 1286 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" 1287 | dependencies: 1288 | commondir "^1.0.1" 1289 | mkdirp "^0.5.1" 1290 | pkg-dir "^1.0.0" 1291 | 1292 | find-up@^1.0.0: 1293 | version "1.1.2" 1294 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 1295 | dependencies: 1296 | path-exists "^2.0.0" 1297 | pinkie-promise "^2.0.0" 1298 | 1299 | for-in@^1.0.1: 1300 | version "1.0.2" 1301 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 1302 | 1303 | for-own@^0.1.4: 1304 | version "0.1.5" 1305 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 1306 | dependencies: 1307 | for-in "^1.0.1" 1308 | 1309 | forever-agent@~0.6.1: 1310 | version "0.6.1" 1311 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 1312 | 1313 | form-data@~2.1.1: 1314 | version "2.1.4" 1315 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" 1316 | dependencies: 1317 | asynckit "^0.4.0" 1318 | combined-stream "^1.0.5" 1319 | mime-types "^2.1.12" 1320 | 1321 | fs-extra@^0.30.0: 1322 | version "0.30.0" 1323 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" 1324 | dependencies: 1325 | graceful-fs "^4.1.2" 1326 | jsonfile "^2.1.0" 1327 | klaw "^1.0.0" 1328 | path-is-absolute "^1.0.0" 1329 | rimraf "^2.2.8" 1330 | 1331 | fs-readdir-recursive@^1.0.0: 1332 | version "1.0.0" 1333 | resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" 1334 | 1335 | fs.realpath@^1.0.0: 1336 | version "1.0.0" 1337 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1338 | 1339 | fsevents@^1.0.0: 1340 | version "1.1.2" 1341 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" 1342 | dependencies: 1343 | nan "^2.3.0" 1344 | node-pre-gyp "^0.6.36" 1345 | 1346 | fstream-ignore@^1.0.5: 1347 | version "1.0.5" 1348 | resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" 1349 | dependencies: 1350 | fstream "^1.0.0" 1351 | inherits "2" 1352 | minimatch "^3.0.0" 1353 | 1354 | fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: 1355 | version "1.0.11" 1356 | resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" 1357 | dependencies: 1358 | graceful-fs "^4.1.2" 1359 | inherits "~2.0.0" 1360 | mkdirp ">=0.5 0" 1361 | rimraf "2" 1362 | 1363 | gauge@~2.7.3: 1364 | version "2.7.4" 1365 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" 1366 | dependencies: 1367 | aproba "^1.0.3" 1368 | console-control-strings "^1.0.0" 1369 | has-unicode "^2.0.0" 1370 | object-assign "^4.1.0" 1371 | signal-exit "^3.0.0" 1372 | string-width "^1.0.1" 1373 | strip-ansi "^3.0.1" 1374 | wide-align "^1.1.0" 1375 | 1376 | get-caller-file@^1.0.1: 1377 | version "1.0.2" 1378 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 1379 | 1380 | getpass@^0.1.1: 1381 | version "0.1.7" 1382 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 1383 | dependencies: 1384 | assert-plus "^1.0.0" 1385 | 1386 | glob-base@^0.3.0: 1387 | version "0.3.0" 1388 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 1389 | dependencies: 1390 | glob-parent "^2.0.0" 1391 | is-glob "^2.0.0" 1392 | 1393 | glob-parent@^2.0.0: 1394 | version "2.0.0" 1395 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 1396 | dependencies: 1397 | is-glob "^2.0.0" 1398 | 1399 | glob@^7.0.5, glob@^7.1.2: 1400 | version "7.1.2" 1401 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 1402 | dependencies: 1403 | fs.realpath "^1.0.0" 1404 | inflight "^1.0.4" 1405 | inherits "2" 1406 | minimatch "^3.0.4" 1407 | once "^1.3.0" 1408 | path-is-absolute "^1.0.0" 1409 | 1410 | globals@^9.18.0: 1411 | version "9.18.0" 1412 | resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" 1413 | 1414 | graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1415 | version "4.1.11" 1416 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1417 | 1418 | har-schema@^1.0.5: 1419 | version "1.0.5" 1420 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" 1421 | 1422 | har-validator@~4.2.1: 1423 | version "4.2.1" 1424 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" 1425 | dependencies: 1426 | ajv "^4.9.1" 1427 | har-schema "^1.0.5" 1428 | 1429 | has-ansi@^2.0.0: 1430 | version "2.0.0" 1431 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1432 | dependencies: 1433 | ansi-regex "^2.0.0" 1434 | 1435 | has-flag@^1.0.0: 1436 | version "1.0.0" 1437 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" 1438 | 1439 | has-unicode@^2.0.0: 1440 | version "2.0.1" 1441 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1442 | 1443 | hash-base@^2.0.0: 1444 | version "2.0.2" 1445 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" 1446 | dependencies: 1447 | inherits "^2.0.1" 1448 | 1449 | hash-base@^3.0.0: 1450 | version "3.0.4" 1451 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" 1452 | dependencies: 1453 | inherits "^2.0.1" 1454 | safe-buffer "^5.0.1" 1455 | 1456 | hash.js@^1.0.0, hash.js@^1.0.3: 1457 | version "1.1.3" 1458 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" 1459 | dependencies: 1460 | inherits "^2.0.3" 1461 | minimalistic-assert "^1.0.0" 1462 | 1463 | hawk@~3.1.3: 1464 | version "3.1.3" 1465 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" 1466 | dependencies: 1467 | boom "2.x.x" 1468 | cryptiles "2.x.x" 1469 | hoek "2.x.x" 1470 | sntp "1.x.x" 1471 | 1472 | hmac-drbg@^1.0.0: 1473 | version "1.0.1" 1474 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 1475 | dependencies: 1476 | hash.js "^1.0.3" 1477 | minimalistic-assert "^1.0.0" 1478 | minimalistic-crypto-utils "^1.0.1" 1479 | 1480 | hoek@2.x.x: 1481 | version "2.16.3" 1482 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" 1483 | 1484 | home-or-tmp@^2.0.0: 1485 | version "2.0.0" 1486 | resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" 1487 | dependencies: 1488 | os-homedir "^1.0.0" 1489 | os-tmpdir "^1.0.1" 1490 | 1491 | hosted-git-info@^2.1.4: 1492 | version "2.5.0" 1493 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1494 | 1495 | http-signature@~1.1.0: 1496 | version "1.1.1" 1497 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" 1498 | dependencies: 1499 | assert-plus "^0.2.0" 1500 | jsprim "^1.2.2" 1501 | sshpk "^1.7.0" 1502 | 1503 | https-browserify@0.0.1: 1504 | version "0.0.1" 1505 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" 1506 | 1507 | iconv-lite@~0.4.13: 1508 | version "0.4.18" 1509 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" 1510 | 1511 | ieee754@^1.1.4: 1512 | version "1.1.8" 1513 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" 1514 | 1515 | immutability-helper@^2.3.1: 1516 | version "2.3.1" 1517 | resolved "https://registry.yarnpkg.com/immutability-helper/-/immutability-helper-2.3.1.tgz#8ccfce92157208c120b2afad7ed05c11114c086e" 1518 | dependencies: 1519 | invariant "^2.2.0" 1520 | 1521 | imports-loader@^0.7.1: 1522 | version "0.7.1" 1523 | resolved "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.7.1.tgz#f204b5f34702a32c1db7d48d89d5e867a0441253" 1524 | dependencies: 1525 | loader-utils "^1.0.2" 1526 | source-map "^0.5.6" 1527 | 1528 | indexof@0.0.1: 1529 | version "0.0.1" 1530 | resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" 1531 | 1532 | inflight@^1.0.4: 1533 | version "1.0.6" 1534 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1535 | dependencies: 1536 | once "^1.3.0" 1537 | wrappy "1" 1538 | 1539 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 1540 | version "2.0.3" 1541 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1542 | 1543 | inherits@2.0.1: 1544 | version "2.0.1" 1545 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" 1546 | 1547 | ini@~1.3.0: 1548 | version "1.3.4" 1549 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1550 | 1551 | interpret@^1.0.0: 1552 | version "1.0.3" 1553 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" 1554 | 1555 | invariant@^2.2.0, invariant@^2.2.2: 1556 | version "2.2.2" 1557 | resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" 1558 | dependencies: 1559 | loose-envify "^1.0.0" 1560 | 1561 | invert-kv@^1.0.0: 1562 | version "1.0.0" 1563 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1564 | 1565 | is-arrayish@^0.2.1: 1566 | version "0.2.1" 1567 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1568 | 1569 | is-binary-path@^1.0.0: 1570 | version "1.0.1" 1571 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" 1572 | dependencies: 1573 | binary-extensions "^1.0.0" 1574 | 1575 | is-buffer@^1.1.5: 1576 | version "1.1.5" 1577 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1578 | 1579 | is-builtin-module@^1.0.0: 1580 | version "1.0.0" 1581 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1582 | dependencies: 1583 | builtin-modules "^1.0.0" 1584 | 1585 | is-dotfile@^1.0.0: 1586 | version "1.0.3" 1587 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1588 | 1589 | is-equal-shallow@^0.1.3: 1590 | version "0.1.3" 1591 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1592 | dependencies: 1593 | is-primitive "^2.0.0" 1594 | 1595 | is-extendable@^0.1.1: 1596 | version "0.1.1" 1597 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1598 | 1599 | is-extglob@^1.0.0: 1600 | version "1.0.0" 1601 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1602 | 1603 | is-finite@^1.0.0: 1604 | version "1.0.2" 1605 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1606 | dependencies: 1607 | number-is-nan "^1.0.0" 1608 | 1609 | is-fullwidth-code-point@^1.0.0: 1610 | version "1.0.0" 1611 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1612 | dependencies: 1613 | number-is-nan "^1.0.0" 1614 | 1615 | is-glob@^2.0.0, is-glob@^2.0.1: 1616 | version "2.0.1" 1617 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1618 | dependencies: 1619 | is-extglob "^1.0.0" 1620 | 1621 | is-number@^2.1.0: 1622 | version "2.1.0" 1623 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1624 | dependencies: 1625 | kind-of "^3.0.2" 1626 | 1627 | is-number@^3.0.0: 1628 | version "3.0.0" 1629 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1630 | dependencies: 1631 | kind-of "^3.0.2" 1632 | 1633 | is-posix-bracket@^0.1.0: 1634 | version "0.1.1" 1635 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1636 | 1637 | is-primitive@^2.0.0: 1638 | version "2.0.0" 1639 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1640 | 1641 | is-stream@^1.0.1: 1642 | version "1.1.0" 1643 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1644 | 1645 | is-typedarray@~1.0.0: 1646 | version "1.0.0" 1647 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1648 | 1649 | is-utf8@^0.2.0: 1650 | version "0.2.1" 1651 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1652 | 1653 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: 1654 | version "1.0.0" 1655 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1656 | 1657 | isobject@^2.0.0: 1658 | version "2.1.0" 1659 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1660 | dependencies: 1661 | isarray "1.0.0" 1662 | 1663 | isomorphic-fetch@^2.1.1: 1664 | version "2.2.1" 1665 | resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" 1666 | dependencies: 1667 | node-fetch "^1.0.1" 1668 | whatwg-fetch ">=0.10.0" 1669 | 1670 | isstream@~0.1.2: 1671 | version "0.1.2" 1672 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1673 | 1674 | js-tokens@^3.0.0, js-tokens@^3.0.2: 1675 | version "3.0.2" 1676 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1677 | 1678 | js-yaml@^3.8.2: 1679 | version "3.9.1" 1680 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" 1681 | dependencies: 1682 | argparse "^1.0.7" 1683 | esprima "^4.0.0" 1684 | 1685 | jsbn@~0.1.0: 1686 | version "0.1.1" 1687 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 1688 | 1689 | jsesc@^1.3.0: 1690 | version "1.3.0" 1691 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" 1692 | 1693 | jsesc@~0.5.0: 1694 | version "0.5.0" 1695 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" 1696 | 1697 | json-loader@^0.5.4: 1698 | version "0.5.7" 1699 | resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" 1700 | 1701 | json-schema@0.2.3: 1702 | version "0.2.3" 1703 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 1704 | 1705 | json-stable-stringify@^1.0.1: 1706 | version "1.0.1" 1707 | resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" 1708 | dependencies: 1709 | jsonify "~0.0.0" 1710 | 1711 | json-stringify-safe@~5.0.1: 1712 | version "5.0.1" 1713 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1714 | 1715 | json5@^0.5.0, json5@^0.5.1: 1716 | version "0.5.1" 1717 | resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" 1718 | 1719 | jsonfile@^2.1.0: 1720 | version "2.4.0" 1721 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1722 | optionalDependencies: 1723 | graceful-fs "^4.1.6" 1724 | 1725 | jsonify@~0.0.0: 1726 | version "0.0.0" 1727 | resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" 1728 | 1729 | jsprim@^1.2.2: 1730 | version "1.4.1" 1731 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 1732 | dependencies: 1733 | assert-plus "1.0.0" 1734 | extsprintf "1.3.0" 1735 | json-schema "0.2.3" 1736 | verror "1.10.0" 1737 | 1738 | kind-of@^3.0.2: 1739 | version "3.2.2" 1740 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1741 | dependencies: 1742 | is-buffer "^1.1.5" 1743 | 1744 | kind-of@^4.0.0: 1745 | version "4.0.0" 1746 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1747 | dependencies: 1748 | is-buffer "^1.1.5" 1749 | 1750 | klaw@^1.0.0: 1751 | version "1.3.1" 1752 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1753 | optionalDependencies: 1754 | graceful-fs "^4.1.9" 1755 | 1756 | lazy-cache@^1.0.3: 1757 | version "1.0.4" 1758 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1759 | 1760 | lcid@^1.0.0: 1761 | version "1.0.0" 1762 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1763 | dependencies: 1764 | invert-kv "^1.0.0" 1765 | 1766 | load-json-file@^1.0.0: 1767 | version "1.1.0" 1768 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1769 | dependencies: 1770 | graceful-fs "^4.1.2" 1771 | parse-json "^2.2.0" 1772 | pify "^2.0.0" 1773 | pinkie-promise "^2.0.0" 1774 | strip-bom "^2.0.0" 1775 | 1776 | loader-runner@^2.3.0: 1777 | version "2.3.0" 1778 | resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" 1779 | 1780 | loader-utils@^0.2.16: 1781 | version "0.2.17" 1782 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" 1783 | dependencies: 1784 | big.js "^3.1.3" 1785 | emojis-list "^2.0.0" 1786 | json5 "^0.5.0" 1787 | object-assign "^4.0.1" 1788 | 1789 | loader-utils@^1.0.2: 1790 | version "1.1.0" 1791 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" 1792 | dependencies: 1793 | big.js "^3.1.3" 1794 | emojis-list "^2.0.0" 1795 | json5 "^0.5.0" 1796 | 1797 | "lodash@>=3.5 <5", lodash@^4.14.0, lodash@^4.17.4: 1798 | version "4.17.4" 1799 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1800 | 1801 | longest@^1.0.1: 1802 | version "1.0.1" 1803 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1804 | 1805 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1: 1806 | version "1.3.1" 1807 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" 1808 | dependencies: 1809 | js-tokens "^3.0.0" 1810 | 1811 | md5.js@^1.3.4: 1812 | version "1.3.4" 1813 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" 1814 | dependencies: 1815 | hash-base "^3.0.0" 1816 | inherits "^2.0.1" 1817 | 1818 | memory-fs@^0.4.0, memory-fs@~0.4.1: 1819 | version "0.4.1" 1820 | resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" 1821 | dependencies: 1822 | errno "^0.1.3" 1823 | readable-stream "^2.0.1" 1824 | 1825 | micromatch@^2.1.5: 1826 | version "2.3.11" 1827 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1828 | dependencies: 1829 | arr-diff "^2.0.0" 1830 | array-unique "^0.2.1" 1831 | braces "^1.8.2" 1832 | expand-brackets "^0.1.4" 1833 | extglob "^0.3.1" 1834 | filename-regex "^2.0.0" 1835 | is-extglob "^1.0.0" 1836 | is-glob "^2.0.1" 1837 | kind-of "^3.0.2" 1838 | normalize-path "^2.0.1" 1839 | object.omit "^2.0.0" 1840 | parse-glob "^3.0.4" 1841 | regex-cache "^0.4.2" 1842 | 1843 | miller-rabin@^4.0.0: 1844 | version "4.0.0" 1845 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" 1846 | dependencies: 1847 | bn.js "^4.0.0" 1848 | brorand "^1.0.1" 1849 | 1850 | mime-db@~1.30.0: 1851 | version "1.30.0" 1852 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 1853 | 1854 | mime-types@^2.1.12, mime-types@~2.1.7: 1855 | version "2.1.17" 1856 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 1857 | dependencies: 1858 | mime-db "~1.30.0" 1859 | 1860 | minimalistic-assert@^1.0.0: 1861 | version "1.0.0" 1862 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" 1863 | 1864 | minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 1865 | version "1.0.1" 1866 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 1867 | 1868 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1869 | version "3.0.4" 1870 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1871 | dependencies: 1872 | brace-expansion "^1.1.7" 1873 | 1874 | minimist@0.0.8: 1875 | version "0.0.8" 1876 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1877 | 1878 | minimist@^1.2.0: 1879 | version "1.2.0" 1880 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1881 | 1882 | "mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0: 1883 | version "0.5.1" 1884 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1885 | dependencies: 1886 | minimist "0.0.8" 1887 | 1888 | ms@2.0.0: 1889 | version "2.0.0" 1890 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1891 | 1892 | nan@^2.3.0: 1893 | version "2.7.0" 1894 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46" 1895 | 1896 | node-fetch@^1.0.1: 1897 | version "1.7.2" 1898 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.2.tgz#c54e9aac57e432875233525f3c891c4159ffefd7" 1899 | dependencies: 1900 | encoding "^0.1.11" 1901 | is-stream "^1.0.1" 1902 | 1903 | node-libs-browser@^2.0.0: 1904 | version "2.0.0" 1905 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" 1906 | dependencies: 1907 | assert "^1.1.1" 1908 | browserify-zlib "^0.1.4" 1909 | buffer "^4.3.0" 1910 | console-browserify "^1.1.0" 1911 | constants-browserify "^1.0.0" 1912 | crypto-browserify "^3.11.0" 1913 | domain-browser "^1.1.1" 1914 | events "^1.0.0" 1915 | https-browserify "0.0.1" 1916 | os-browserify "^0.2.0" 1917 | path-browserify "0.0.0" 1918 | process "^0.11.0" 1919 | punycode "^1.2.4" 1920 | querystring-es3 "^0.2.0" 1921 | readable-stream "^2.0.5" 1922 | stream-browserify "^2.0.1" 1923 | stream-http "^2.3.1" 1924 | string_decoder "^0.10.25" 1925 | timers-browserify "^2.0.2" 1926 | tty-browserify "0.0.0" 1927 | url "^0.11.0" 1928 | util "^0.10.3" 1929 | vm-browserify "0.0.4" 1930 | 1931 | node-pre-gyp@^0.6.36: 1932 | version "0.6.36" 1933 | resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" 1934 | dependencies: 1935 | mkdirp "^0.5.1" 1936 | nopt "^4.0.1" 1937 | npmlog "^4.0.2" 1938 | rc "^1.1.7" 1939 | request "^2.81.0" 1940 | rimraf "^2.6.1" 1941 | semver "^5.3.0" 1942 | tar "^2.2.1" 1943 | tar-pack "^3.4.0" 1944 | 1945 | nopt@^4.0.1: 1946 | version "4.0.1" 1947 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" 1948 | dependencies: 1949 | abbrev "1" 1950 | osenv "^0.1.4" 1951 | 1952 | normalize-package-data@^2.3.2: 1953 | version "2.4.0" 1954 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1955 | dependencies: 1956 | hosted-git-info "^2.1.4" 1957 | is-builtin-module "^1.0.0" 1958 | semver "2 || 3 || 4 || 5" 1959 | validate-npm-package-license "^3.0.1" 1960 | 1961 | normalize-path@^2.0.0, normalize-path@^2.0.1: 1962 | version "2.1.1" 1963 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1964 | dependencies: 1965 | remove-trailing-separator "^1.0.1" 1966 | 1967 | npmlog@^4.0.2: 1968 | version "4.1.2" 1969 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 1970 | dependencies: 1971 | are-we-there-yet "~1.1.2" 1972 | console-control-strings "~1.1.0" 1973 | gauge "~2.7.3" 1974 | set-blocking "~2.0.0" 1975 | 1976 | number-is-nan@^1.0.0: 1977 | version "1.0.1" 1978 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1979 | 1980 | oauth-sign@~0.8.1: 1981 | version "0.8.2" 1982 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 1983 | 1984 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 1985 | version "4.1.1" 1986 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1987 | 1988 | object.omit@^2.0.0: 1989 | version "2.0.1" 1990 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1991 | dependencies: 1992 | for-own "^0.1.4" 1993 | is-extendable "^0.1.1" 1994 | 1995 | once@^1.3.0, once@^1.3.3: 1996 | version "1.4.0" 1997 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1998 | dependencies: 1999 | wrappy "1" 2000 | 2001 | os-browserify@^0.2.0: 2002 | version "0.2.1" 2003 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" 2004 | 2005 | os-homedir@^1.0.0: 2006 | version "1.0.2" 2007 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 2008 | 2009 | os-locale@^1.4.0: 2010 | version "1.4.0" 2011 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" 2012 | dependencies: 2013 | lcid "^1.0.0" 2014 | 2015 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 2016 | version "1.0.2" 2017 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 2018 | 2019 | osenv@^0.1.4: 2020 | version "0.1.4" 2021 | resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" 2022 | dependencies: 2023 | os-homedir "^1.0.0" 2024 | os-tmpdir "^1.0.0" 2025 | 2026 | output-file-sync@^1.1.2: 2027 | version "1.1.2" 2028 | resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" 2029 | dependencies: 2030 | graceful-fs "^4.1.4" 2031 | mkdirp "^0.5.1" 2032 | object-assign "^4.1.0" 2033 | 2034 | pako@~0.2.0: 2035 | version "0.2.9" 2036 | resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" 2037 | 2038 | parse-asn1@^5.0.0: 2039 | version "5.1.0" 2040 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" 2041 | dependencies: 2042 | asn1.js "^4.0.0" 2043 | browserify-aes "^1.0.0" 2044 | create-hash "^1.1.0" 2045 | evp_bytestokey "^1.0.0" 2046 | pbkdf2 "^3.0.3" 2047 | 2048 | parse-glob@^3.0.4: 2049 | version "3.0.4" 2050 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 2051 | dependencies: 2052 | glob-base "^0.3.0" 2053 | is-dotfile "^1.0.0" 2054 | is-extglob "^1.0.0" 2055 | is-glob "^2.0.0" 2056 | 2057 | parse-json@^2.2.0: 2058 | version "2.2.0" 2059 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 2060 | dependencies: 2061 | error-ex "^1.2.0" 2062 | 2063 | path-browserify@0.0.0: 2064 | version "0.0.0" 2065 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" 2066 | 2067 | path-exists@^2.0.0: 2068 | version "2.1.0" 2069 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 2070 | dependencies: 2071 | pinkie-promise "^2.0.0" 2072 | 2073 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: 2074 | version "1.0.1" 2075 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2076 | 2077 | path-type@^1.0.0: 2078 | version "1.1.0" 2079 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 2080 | dependencies: 2081 | graceful-fs "^4.1.2" 2082 | pify "^2.0.0" 2083 | pinkie-promise "^2.0.0" 2084 | 2085 | pbkdf2@^3.0.3: 2086 | version "3.0.13" 2087 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.13.tgz#c37d295531e786b1da3e3eadc840426accb0ae25" 2088 | dependencies: 2089 | create-hash "^1.1.2" 2090 | create-hmac "^1.1.4" 2091 | ripemd160 "^2.0.1" 2092 | safe-buffer "^5.0.1" 2093 | sha.js "^2.4.8" 2094 | 2095 | performance-now@^0.2.0: 2096 | version "0.2.0" 2097 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" 2098 | 2099 | pify@^2.0.0: 2100 | version "2.3.0" 2101 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 2102 | 2103 | pinkie-promise@^2.0.0: 2104 | version "2.0.1" 2105 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 2106 | dependencies: 2107 | pinkie "^2.0.0" 2108 | 2109 | pinkie@^2.0.0: 2110 | version "2.0.4" 2111 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 2112 | 2113 | pkg-dir@^1.0.0: 2114 | version "1.0.0" 2115 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" 2116 | dependencies: 2117 | find-up "^1.0.0" 2118 | 2119 | preserve@^0.2.0: 2120 | version "0.2.0" 2121 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 2122 | 2123 | private@^0.1.6, private@^0.1.7: 2124 | version "0.1.7" 2125 | resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" 2126 | 2127 | process-nextick-args@~1.0.6: 2128 | version "1.0.7" 2129 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 2130 | 2131 | process@^0.11.0: 2132 | version "0.11.10" 2133 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" 2134 | 2135 | promise@^7.1.1: 2136 | version "7.3.1" 2137 | resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" 2138 | dependencies: 2139 | asap "~2.0.3" 2140 | 2141 | prop-types@^15.5.10: 2142 | version "15.5.10" 2143 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" 2144 | dependencies: 2145 | fbjs "^0.8.9" 2146 | loose-envify "^1.3.1" 2147 | 2148 | prr@~0.0.0: 2149 | version "0.0.0" 2150 | resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" 2151 | 2152 | public-encrypt@^4.0.0: 2153 | version "4.0.0" 2154 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" 2155 | dependencies: 2156 | bn.js "^4.1.0" 2157 | browserify-rsa "^4.0.0" 2158 | create-hash "^1.1.0" 2159 | parse-asn1 "^5.0.0" 2160 | randombytes "^2.0.1" 2161 | 2162 | punycode@1.3.2: 2163 | version "1.3.2" 2164 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" 2165 | 2166 | punycode@^1.2.4, punycode@^1.4.1: 2167 | version "1.4.1" 2168 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 2169 | 2170 | qs@~6.4.0: 2171 | version "6.4.0" 2172 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" 2173 | 2174 | querystring-es3@^0.2.0: 2175 | version "0.2.1" 2176 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" 2177 | 2178 | querystring@0.2.0: 2179 | version "0.2.0" 2180 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 2181 | 2182 | randomatic@^1.1.3: 2183 | version "1.1.7" 2184 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 2185 | dependencies: 2186 | is-number "^3.0.0" 2187 | kind-of "^4.0.0" 2188 | 2189 | randombytes@^2.0.0, randombytes@^2.0.1: 2190 | version "2.0.5" 2191 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" 2192 | dependencies: 2193 | safe-buffer "^5.1.0" 2194 | 2195 | rc@^1.1.7: 2196 | version "1.2.1" 2197 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" 2198 | dependencies: 2199 | deep-extend "~0.4.0" 2200 | ini "~1.3.0" 2201 | minimist "^1.2.0" 2202 | strip-json-comments "~2.0.1" 2203 | 2204 | react-dom@^15.5.4: 2205 | version "15.6.1" 2206 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.1.tgz#2cb0ed4191038e53c209eb3a79a23e2a4cf99470" 2207 | dependencies: 2208 | fbjs "^0.8.9" 2209 | loose-envify "^1.1.0" 2210 | object-assign "^4.1.0" 2211 | prop-types "^15.5.10" 2212 | 2213 | react-on-rails@8.0.0: 2214 | version "8.0.0" 2215 | resolved "https://registry.yarnpkg.com/react-on-rails/-/react-on-rails-8.0.0.tgz#97fda265cdc5e4cd4334ae7a7f2bacd85346161e" 2216 | 2217 | react@^15.5.4: 2218 | version "15.6.1" 2219 | resolved "https://registry.yarnpkg.com/react/-/react-15.6.1.tgz#baa8434ec6780bde997cdc380b79cd33b96393df" 2220 | dependencies: 2221 | create-react-class "^15.6.0" 2222 | fbjs "^0.8.9" 2223 | loose-envify "^1.1.0" 2224 | object-assign "^4.1.0" 2225 | prop-types "^15.5.10" 2226 | 2227 | read-pkg-up@^1.0.1: 2228 | version "1.0.1" 2229 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 2230 | dependencies: 2231 | find-up "^1.0.0" 2232 | read-pkg "^1.0.0" 2233 | 2234 | read-pkg@^1.0.0: 2235 | version "1.1.0" 2236 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 2237 | dependencies: 2238 | load-json-file "^1.0.0" 2239 | normalize-package-data "^2.3.2" 2240 | path-type "^1.0.0" 2241 | 2242 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.6: 2243 | version "2.3.3" 2244 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 2245 | dependencies: 2246 | core-util-is "~1.0.0" 2247 | inherits "~2.0.3" 2248 | isarray "~1.0.0" 2249 | process-nextick-args "~1.0.6" 2250 | safe-buffer "~5.1.1" 2251 | string_decoder "~1.0.3" 2252 | util-deprecate "~1.0.1" 2253 | 2254 | readdirp@^2.0.0: 2255 | version "2.1.0" 2256 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" 2257 | dependencies: 2258 | graceful-fs "^4.1.2" 2259 | minimatch "^3.0.2" 2260 | readable-stream "^2.0.2" 2261 | set-immediate-shim "^1.0.1" 2262 | 2263 | regenerate@^1.2.1: 2264 | version "1.3.2" 2265 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" 2266 | 2267 | regenerator-runtime@^0.10.5: 2268 | version "0.10.5" 2269 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" 2270 | 2271 | regenerator-runtime@^0.11.0: 2272 | version "0.11.0" 2273 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1" 2274 | 2275 | regenerator-transform@^0.10.0: 2276 | version "0.10.1" 2277 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" 2278 | dependencies: 2279 | babel-runtime "^6.18.0" 2280 | babel-types "^6.19.0" 2281 | private "^0.1.6" 2282 | 2283 | regex-cache@^0.4.2: 2284 | version "0.4.4" 2285 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 2286 | dependencies: 2287 | is-equal-shallow "^0.1.3" 2288 | 2289 | regexpu-core@^2.0.0: 2290 | version "2.0.0" 2291 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" 2292 | dependencies: 2293 | regenerate "^1.2.1" 2294 | regjsgen "^0.2.0" 2295 | regjsparser "^0.1.4" 2296 | 2297 | regjsgen@^0.2.0: 2298 | version "0.2.0" 2299 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" 2300 | 2301 | regjsparser@^0.1.4: 2302 | version "0.1.5" 2303 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" 2304 | dependencies: 2305 | jsesc "~0.5.0" 2306 | 2307 | remove-trailing-separator@^1.0.1: 2308 | version "1.1.0" 2309 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 2310 | 2311 | repeat-element@^1.1.2: 2312 | version "1.1.2" 2313 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 2314 | 2315 | repeat-string@^1.5.2: 2316 | version "1.6.1" 2317 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 2318 | 2319 | repeating@^2.0.0: 2320 | version "2.0.1" 2321 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 2322 | dependencies: 2323 | is-finite "^1.0.0" 2324 | 2325 | request@^2.81.0: 2326 | version "2.81.0" 2327 | resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" 2328 | dependencies: 2329 | aws-sign2 "~0.6.0" 2330 | aws4 "^1.2.1" 2331 | caseless "~0.12.0" 2332 | combined-stream "~1.0.5" 2333 | extend "~3.0.0" 2334 | forever-agent "~0.6.1" 2335 | form-data "~2.1.1" 2336 | har-validator "~4.2.1" 2337 | hawk "~3.1.3" 2338 | http-signature "~1.1.0" 2339 | is-typedarray "~1.0.0" 2340 | isstream "~0.1.2" 2341 | json-stringify-safe "~5.0.1" 2342 | mime-types "~2.1.7" 2343 | oauth-sign "~0.8.1" 2344 | performance-now "^0.2.0" 2345 | qs "~6.4.0" 2346 | safe-buffer "^5.0.1" 2347 | stringstream "~0.0.4" 2348 | tough-cookie "~2.3.0" 2349 | tunnel-agent "^0.6.0" 2350 | uuid "^3.0.0" 2351 | 2352 | require-directory@^2.1.1: 2353 | version "2.1.1" 2354 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2355 | 2356 | require-main-filename@^1.0.1: 2357 | version "1.0.1" 2358 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 2359 | 2360 | right-align@^0.1.1: 2361 | version "0.1.3" 2362 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2363 | dependencies: 2364 | align-text "^0.1.1" 2365 | 2366 | rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: 2367 | version "2.6.1" 2368 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" 2369 | dependencies: 2370 | glob "^7.0.5" 2371 | 2372 | ripemd160@^2.0.0, ripemd160@^2.0.1: 2373 | version "2.0.1" 2374 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" 2375 | dependencies: 2376 | hash-base "^2.0.0" 2377 | inherits "^2.0.1" 2378 | 2379 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2380 | version "5.1.1" 2381 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2382 | 2383 | "semver@2 || 3 || 4 || 5", semver@^5.3.0: 2384 | version "5.4.1" 2385 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2386 | 2387 | set-blocking@^2.0.0, set-blocking@~2.0.0: 2388 | version "2.0.0" 2389 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2390 | 2391 | set-immediate-shim@^1.0.1: 2392 | version "1.0.1" 2393 | resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" 2394 | 2395 | setimmediate@^1.0.4, setimmediate@^1.0.5: 2396 | version "1.0.5" 2397 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 2398 | 2399 | sha.js@^2.4.0, sha.js@^2.4.8: 2400 | version "2.4.8" 2401 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" 2402 | dependencies: 2403 | inherits "^2.0.1" 2404 | 2405 | signal-exit@^3.0.0: 2406 | version "3.0.2" 2407 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2408 | 2409 | slash@^1.0.0: 2410 | version "1.0.0" 2411 | resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" 2412 | 2413 | sntp@1.x.x: 2414 | version "1.0.9" 2415 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" 2416 | dependencies: 2417 | hoek "2.x.x" 2418 | 2419 | source-list-map@^2.0.0: 2420 | version "2.0.0" 2421 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" 2422 | 2423 | source-map-support@^0.4.15: 2424 | version "0.4.17" 2425 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.17.tgz#6f2150553e6375375d0ccb3180502b78c18ba430" 2426 | dependencies: 2427 | source-map "^0.5.6" 2428 | 2429 | source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: 2430 | version "0.5.7" 2431 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2432 | 2433 | spdx-correct@~1.0.0: 2434 | version "1.0.2" 2435 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2436 | dependencies: 2437 | spdx-license-ids "^1.0.2" 2438 | 2439 | spdx-expression-parse@~1.0.0: 2440 | version "1.0.4" 2441 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2442 | 2443 | spdx-license-ids@^1.0.2: 2444 | version "1.2.2" 2445 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2446 | 2447 | sprintf-js@~1.0.2: 2448 | version "1.0.3" 2449 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2450 | 2451 | sshpk@^1.7.0: 2452 | version "1.13.1" 2453 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 2454 | dependencies: 2455 | asn1 "~0.2.3" 2456 | assert-plus "^1.0.0" 2457 | dashdash "^1.12.0" 2458 | getpass "^0.1.1" 2459 | optionalDependencies: 2460 | bcrypt-pbkdf "^1.0.0" 2461 | ecc-jsbn "~0.1.1" 2462 | jsbn "~0.1.0" 2463 | tweetnacl "~0.14.0" 2464 | 2465 | stream-browserify@^2.0.1: 2466 | version "2.0.1" 2467 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" 2468 | dependencies: 2469 | inherits "~2.0.1" 2470 | readable-stream "^2.0.2" 2471 | 2472 | stream-http@^2.3.1: 2473 | version "2.7.2" 2474 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" 2475 | dependencies: 2476 | builtin-status-codes "^3.0.0" 2477 | inherits "^2.0.1" 2478 | readable-stream "^2.2.6" 2479 | to-arraybuffer "^1.0.0" 2480 | xtend "^4.0.0" 2481 | 2482 | string-width@^1.0.1, string-width@^1.0.2: 2483 | version "1.0.2" 2484 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2485 | dependencies: 2486 | code-point-at "^1.0.0" 2487 | is-fullwidth-code-point "^1.0.0" 2488 | strip-ansi "^3.0.0" 2489 | 2490 | string_decoder@^0.10.25: 2491 | version "0.10.31" 2492 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" 2493 | 2494 | string_decoder@~1.0.3: 2495 | version "1.0.3" 2496 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2497 | dependencies: 2498 | safe-buffer "~5.1.0" 2499 | 2500 | stringstream@~0.0.4: 2501 | version "0.0.5" 2502 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 2503 | 2504 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2505 | version "3.0.1" 2506 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2507 | dependencies: 2508 | ansi-regex "^2.0.0" 2509 | 2510 | strip-bom@^2.0.0: 2511 | version "2.0.0" 2512 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2513 | dependencies: 2514 | is-utf8 "^0.2.0" 2515 | 2516 | strip-json-comments@~2.0.1: 2517 | version "2.0.1" 2518 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2519 | 2520 | supports-color@^2.0.0: 2521 | version "2.0.0" 2522 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2523 | 2524 | supports-color@^3.1.0: 2525 | version "3.2.3" 2526 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" 2527 | dependencies: 2528 | has-flag "^1.0.0" 2529 | 2530 | tapable@^0.2.7, tapable@~0.2.5: 2531 | version "0.2.8" 2532 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" 2533 | 2534 | tar-pack@^3.4.0: 2535 | version "3.4.0" 2536 | resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" 2537 | dependencies: 2538 | debug "^2.2.0" 2539 | fstream "^1.0.10" 2540 | fstream-ignore "^1.0.5" 2541 | once "^1.3.3" 2542 | readable-stream "^2.1.4" 2543 | rimraf "^2.5.1" 2544 | tar "^2.2.1" 2545 | uid-number "^0.0.6" 2546 | 2547 | tar@^2.2.1: 2548 | version "2.2.1" 2549 | resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" 2550 | dependencies: 2551 | block-stream "*" 2552 | fstream "^1.0.2" 2553 | inherits "2" 2554 | 2555 | timers-browserify@^2.0.2: 2556 | version "2.0.4" 2557 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.4.tgz#96ca53f4b794a5e7c0e1bd7cc88a372298fa01e6" 2558 | dependencies: 2559 | setimmediate "^1.0.4" 2560 | 2561 | to-arraybuffer@^1.0.0: 2562 | version "1.0.1" 2563 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" 2564 | 2565 | to-fast-properties@^1.0.3: 2566 | version "1.0.3" 2567 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" 2568 | 2569 | tough-cookie@~2.3.0: 2570 | version "2.3.2" 2571 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" 2572 | dependencies: 2573 | punycode "^1.4.1" 2574 | 2575 | trim-right@^1.0.1: 2576 | version "1.0.1" 2577 | resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 2578 | 2579 | tty-browserify@0.0.0: 2580 | version "0.0.0" 2581 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" 2582 | 2583 | tunnel-agent@^0.6.0: 2584 | version "0.6.0" 2585 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2586 | dependencies: 2587 | safe-buffer "^5.0.1" 2588 | 2589 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 2590 | version "0.14.5" 2591 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 2592 | 2593 | ua-parser-js@^0.7.9: 2594 | version "0.7.14" 2595 | resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" 2596 | 2597 | uglify-js@^2.8.27: 2598 | version "2.8.29" 2599 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2600 | dependencies: 2601 | source-map "~0.5.1" 2602 | yargs "~3.10.0" 2603 | optionalDependencies: 2604 | uglify-to-browserify "~1.0.0" 2605 | 2606 | uglify-to-browserify@~1.0.0: 2607 | version "1.0.2" 2608 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2609 | 2610 | uid-number@^0.0.6: 2611 | version "0.0.6" 2612 | resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" 2613 | 2614 | url@^0.11.0: 2615 | version "0.11.0" 2616 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" 2617 | dependencies: 2618 | punycode "1.3.2" 2619 | querystring "0.2.0" 2620 | 2621 | user-home@^1.1.1: 2622 | version "1.1.1" 2623 | resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" 2624 | 2625 | util-deprecate@~1.0.1: 2626 | version "1.0.2" 2627 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2628 | 2629 | util@0.10.3, util@^0.10.3: 2630 | version "0.10.3" 2631 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" 2632 | dependencies: 2633 | inherits "2.0.1" 2634 | 2635 | uuid@^3.0.0: 2636 | version "3.1.0" 2637 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 2638 | 2639 | v8flags@^2.1.1: 2640 | version "2.1.1" 2641 | resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" 2642 | dependencies: 2643 | user-home "^1.1.1" 2644 | 2645 | validate-npm-package-license@^3.0.1: 2646 | version "3.0.1" 2647 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2648 | dependencies: 2649 | spdx-correct "~1.0.0" 2650 | spdx-expression-parse "~1.0.0" 2651 | 2652 | verror@1.10.0: 2653 | version "1.10.0" 2654 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 2655 | dependencies: 2656 | assert-plus "^1.0.0" 2657 | core-util-is "1.0.2" 2658 | extsprintf "^1.2.0" 2659 | 2660 | vm-browserify@0.0.4: 2661 | version "0.0.4" 2662 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" 2663 | dependencies: 2664 | indexof "0.0.1" 2665 | 2666 | watchpack@^1.3.1: 2667 | version "1.4.0" 2668 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" 2669 | dependencies: 2670 | async "^2.1.2" 2671 | chokidar "^1.7.0" 2672 | graceful-fs "^4.1.2" 2673 | 2674 | webpack-manifest-plugin@^1.1.0: 2675 | version "1.3.1" 2676 | resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.3.1.tgz#dc071dd00cc602a014f107436f53a189c0e55a2c" 2677 | dependencies: 2678 | fs-extra "^0.30.0" 2679 | lodash ">=3.5 <5" 2680 | 2681 | webpack-sources@^1.0.1: 2682 | version "1.0.1" 2683 | resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" 2684 | dependencies: 2685 | source-list-map "^2.0.0" 2686 | source-map "~0.5.3" 2687 | 2688 | webpack@^2.3.3: 2689 | version "2.7.0" 2690 | resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.7.0.tgz#b2a1226804373ffd3d03ea9c6bd525067034f6b1" 2691 | dependencies: 2692 | acorn "^5.0.0" 2693 | acorn-dynamic-import "^2.0.0" 2694 | ajv "^4.7.0" 2695 | ajv-keywords "^1.1.1" 2696 | async "^2.1.2" 2697 | enhanced-resolve "^3.3.0" 2698 | interpret "^1.0.0" 2699 | json-loader "^0.5.4" 2700 | json5 "^0.5.1" 2701 | loader-runner "^2.3.0" 2702 | loader-utils "^0.2.16" 2703 | memory-fs "~0.4.1" 2704 | mkdirp "~0.5.0" 2705 | node-libs-browser "^2.0.0" 2706 | source-map "^0.5.3" 2707 | supports-color "^3.1.0" 2708 | tapable "~0.2.5" 2709 | uglify-js "^2.8.27" 2710 | watchpack "^1.3.1" 2711 | webpack-sources "^1.0.1" 2712 | yargs "^6.0.0" 2713 | 2714 | whatwg-fetch@>=0.10.0: 2715 | version "2.0.3" 2716 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" 2717 | 2718 | which-module@^1.0.0: 2719 | version "1.0.0" 2720 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" 2721 | 2722 | wide-align@^1.1.0: 2723 | version "1.1.2" 2724 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" 2725 | dependencies: 2726 | string-width "^1.0.2" 2727 | 2728 | window-size@0.1.0: 2729 | version "0.1.0" 2730 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2731 | 2732 | wordwrap@0.0.2: 2733 | version "0.0.2" 2734 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2735 | 2736 | wrap-ansi@^2.0.0: 2737 | version "2.1.0" 2738 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2739 | dependencies: 2740 | string-width "^1.0.1" 2741 | strip-ansi "^3.0.1" 2742 | 2743 | wrappy@1: 2744 | version "1.0.2" 2745 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2746 | 2747 | xtend@^4.0.0: 2748 | version "4.0.1" 2749 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2750 | 2751 | y18n@^3.2.1: 2752 | version "3.2.1" 2753 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2754 | 2755 | yargs-parser@^4.2.0: 2756 | version "4.2.1" 2757 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" 2758 | dependencies: 2759 | camelcase "^3.0.0" 2760 | 2761 | yargs@^6.0.0: 2762 | version "6.6.0" 2763 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" 2764 | dependencies: 2765 | camelcase "^3.0.0" 2766 | cliui "^3.2.0" 2767 | decamelize "^1.1.1" 2768 | get-caller-file "^1.0.1" 2769 | os-locale "^1.4.0" 2770 | read-pkg-up "^1.0.1" 2771 | require-directory "^2.1.1" 2772 | require-main-filename "^1.0.1" 2773 | set-blocking "^2.0.0" 2774 | string-width "^1.0.2" 2775 | which-module "^1.0.0" 2776 | y18n "^3.2.1" 2777 | yargs-parser "^4.2.0" 2778 | 2779 | yargs@~3.10.0: 2780 | version "3.10.0" 2781 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2782 | dependencies: 2783 | camelcase "^1.0.2" 2784 | cliui "^2.1.0" 2785 | decamelize "^1.0.0" 2786 | window-size "0.1.0" 2787 | --------------------------------------------------------------------------------