Inherit scripts from parent to childtheme

Thats because parent theme using get_stylesheet_directory_uri() to call script. By this function it is searching for file in your child theme folder (bcause child theme’s style.css is using by active theme) where no such files present. This function search those theme folder whose style.css file is using in active theme. Right now your child theme is active (in appearance > theme).

If you want to call that script then use script in your child theme’s functions.php like this

function my_scripts() {
    wp_deregister_script('jquery');
    wp_enqueue_script( 'modernizr', get_template_directory_uri().'/assets/js/dist/modernizr.min.js', array(), '1.0', false );
    wp_enqueue_script( 'jquery', get_template_directory_uri().'/assets/js/dist/jquery.min.js', array(), '1.0', false );
    wp_register_script( 'scripts', get_template_directory_uri().'/assets/js/dist/scripts.min.js', array(), '1.0', true );
    wp_enqueue_style( 'fonts', 'https://fonts.googleapis.com/css?family=Lora:400,400italic', array(), '1', 'screen,projection' );
    wp_enqueue_style( 'style', get_template_directory_uri().'/style.css', array(), '1', 'screen,projection' );

}
add_action( 'wp_enqueue_scripts', 'my_scripts' );

In above code I just replace get_stylesheet_directory_uri() with get_template_directory_uri().

get_template_directory_uri() function will search for file in parent theme.