Update for latest canary + prettier
This commit is contained in:
parent
b7d1dbf4e1
commit
b23a664df6
20 changed files with 436 additions and 314 deletions
|
|
@ -1,35 +0,0 @@
|
||||||
import React from 'react'
|
|
||||||
import { rhythm } from 'utils/typography'
|
|
||||||
import { prefixLink } from 'gatsby-helpers'
|
|
||||||
import profilePic from './profile-pic.jpg'
|
|
||||||
|
|
||||||
// Import typefaces
|
|
||||||
import 'typeface-montserrat'
|
|
||||||
import 'typeface-merriweather'
|
|
||||||
|
|
||||||
class Bio extends React.Component {
|
|
||||||
render () {
|
|
||||||
return (
|
|
||||||
<p
|
|
||||||
style={{
|
|
||||||
marginBottom: rhythm(2.5),
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<img
|
|
||||||
src={prefixLink(profilePic)}
|
|
||||||
alt={`Kyle Mathews`}
|
|
||||||
style={{
|
|
||||||
float: 'left',
|
|
||||||
marginRight: rhythm(1/4),
|
|
||||||
marginBottom: 0,
|
|
||||||
width: rhythm(2),
|
|
||||||
height: rhythm(2),
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
Written by <strong>Kyle Mathews</strong> who lives and works in San Francisco building useful things. <a href="https://twitter.com/kylemathews">You should follow him on Twitter</a>
|
|
||||||
</p>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Bio
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
siteMetadata: {
|
siteMetadata: {
|
||||||
title: 'Gatsby Starter Blog',
|
title: "Gatsby Starter Blog",
|
||||||
author: 'Kyle Mathews',
|
author: "Kyle Mathews",
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
{
|
{
|
||||||
resolve: `gatsby-source-filesystem`,
|
resolve: `gatsby-source-filesystem`,
|
||||||
options: {
|
options: {
|
||||||
path: `${__dirname}/pages`,
|
path: `${__dirname}/src/pages`,
|
||||||
name: 'pages',
|
name: "pages",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
`gatsby-parser-remark`,
|
`gatsby-transformer-remark`,
|
||||||
`gatsby-parser-sharp`,
|
`gatsby-transformer-sharp`,
|
||||||
{
|
{
|
||||||
resolve: `gatsby-typegen-remark`,
|
resolve: `gatsby-typegen-remark`,
|
||||||
options: {
|
options: {
|
||||||
|
|
@ -29,9 +29,9 @@ module.exports = {
|
||||||
wrapperStyle: `margin-bottom: 1.0725rem`,
|
wrapperStyle: `margin-bottom: 1.0725rem`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'gatsby-typegen-remark-prismjs',
|
"gatsby-typegen-remark-prismjs",
|
||||||
'gatsby-typegen-remark-copy-linked-files',
|
"gatsby-typegen-remark-copy-linked-files",
|
||||||
'gatsby-typegen-remark-smartypants',
|
"gatsby-typegen-remark-smartypants",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
const _ = require("lodash");
|
const _ = require("lodash")
|
||||||
const Promise = require("bluebird");
|
const Promise = require("bluebird")
|
||||||
const path = require("path");
|
const path = require("path")
|
||||||
const select = require(`unist-util-select`);
|
const select = require(`unist-util-select`)
|
||||||
const fs = require(`fs-extra`);
|
const fs = require(`fs-extra`)
|
||||||
|
|
||||||
exports.createPages = ({ graphql, actionCreators }) => {
|
exports.createPages = ({ graphql, boundActionCreators }) => {
|
||||||
const { upsertPage } = actionCreators;
|
const { upsertPage } = boundActionCreators
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const pages = [];
|
const pages = []
|
||||||
const blogPost = path.resolve("templates/template-blog-post.js");
|
const blogPost = path.resolve("./src/templates/template-blog-post.js")
|
||||||
graphql(
|
graphql(
|
||||||
`
|
`
|
||||||
{
|
{
|
||||||
|
|
@ -24,8 +24,8 @@ exports.createPages = ({ graphql, actionCreators }) => {
|
||||||
`
|
`
|
||||||
).then(result => {
|
).then(result => {
|
||||||
if (result.errors) {
|
if (result.errors) {
|
||||||
console.log(result.errors);
|
console.log(result.errors)
|
||||||
reject(result.errors);
|
reject(result.errors)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create blog posts pages.
|
// Create blog posts pages.
|
||||||
|
|
@ -36,27 +36,28 @@ exports.createPages = ({ graphql, actionCreators }) => {
|
||||||
context: {
|
context: {
|
||||||
slug: edge.node.slug,
|
slug: edge.node.slug,
|
||||||
},
|
},
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
|
|
||||||
resolve();
|
resolve()
|
||||||
});
|
})
|
||||||
});
|
})
|
||||||
};
|
}
|
||||||
|
|
||||||
// Add custom url pathname for blog posts.
|
// Add custom url pathname for blog posts.
|
||||||
exports.onNodeCreate = ({ node, actionCreators, getNode }) => {
|
exports.onNodeCreate = ({ node, boundActionCreators, getNode }) => {
|
||||||
const { updateNode } = actionCreators;
|
const { updateNode } = boundActionCreators
|
||||||
if (node.type === `File` && typeof node.slug === "undefined") {
|
if (node.type === `File` && typeof node.slug === "undefined") {
|
||||||
const parsedFilePath = path.parse(node.relativePath);
|
const parsedFilePath = path.parse(node.relativePath)
|
||||||
const slug = `/${parsedFilePath.dir}/`;
|
const slug = `/${parsedFilePath.dir}/`
|
||||||
node.slug = slug;
|
node.slug = slug
|
||||||
updateNode(node);
|
updateNode(node)
|
||||||
} else if (
|
} else if (
|
||||||
node.type === `MarkdownRemark` && typeof node.slug === "undefined"
|
node.type === `MarkdownRemark` &&
|
||||||
|
typeof node.slug === "undefined"
|
||||||
) {
|
) {
|
||||||
const fileNode = getNode(node.parent);
|
const fileNode = getNode(node.parent)
|
||||||
node.slug = fileNode.slug;
|
node.slug = fileNode.slug
|
||||||
updateNode(node);
|
updateNode(node)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
|
||||||
|
|
|
||||||
36
package.json
36
package.json
|
|
@ -7,24 +7,24 @@
|
||||||
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
|
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"gatsby": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-link": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-link": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-parser-remark": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-transformer-remark": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-parser-sharp": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-transformer-sharp": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-plugin-google-analytics": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-plugin-google-analytics": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-plugin-manifest": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-plugin-manifest": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-plugin-offline": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-plugin-offline": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-plugin-preact": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-plugin-preact": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-plugin-sharp": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-plugin-sharp": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-source-filesystem": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-source-filesystem": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-filesystem": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-filesystem": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-remark": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-remark": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-remark-copy-linked-files": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-remark-copy-linked-files": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-remark-prismjs": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-remark-prismjs": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-remark-responsive-iframe": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-remark-responsive-iframe": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-remark-responsive-image": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-remark-responsive-image": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-remark-smartypants": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-remark-smartypants": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"gatsby-typegen-sharp": "1.0.0-alpha12-alpha.1fdb9004",
|
"gatsby-typegen-sharp": "1.0.0-alpha12-alpha.c0bba969",
|
||||||
"lodash": "^4.15.0",
|
"lodash": "^4.15.0",
|
||||||
"moment": "^2.14.1",
|
"moment": "^2.14.1",
|
||||||
"react-helmet": "^4.0.0",
|
"react-helmet": "^4.0.0",
|
||||||
|
|
|
||||||
|
|
@ -1,72 +0,0 @@
|
||||||
import React from 'react'
|
|
||||||
import { Link } from 'react-router'
|
|
||||||
import get from 'lodash/get'
|
|
||||||
import Helmet from 'react-helmet'
|
|
||||||
import { rhythm } from 'utils/typography'
|
|
||||||
import include from 'underscore.string/include'
|
|
||||||
import Bio from 'components/Bio'
|
|
||||||
|
|
||||||
class BlogIndex extends React.Component {
|
|
||||||
render () {
|
|
||||||
console.log(this.props)
|
|
||||||
const pageLinks = []
|
|
||||||
const siteTitle = get(this, 'props.data.site.siteMetadata.title')
|
|
||||||
const posts = get(this, 'props.data.allMarkdownRemark.edges')
|
|
||||||
posts.forEach((post) => {
|
|
||||||
if (post.node.path !== '/404/') {
|
|
||||||
const title = get(post, 'node.frontmatter.title') || post.node.path
|
|
||||||
pageLinks.push(
|
|
||||||
<li
|
|
||||||
key={post.node.path}
|
|
||||||
style={{
|
|
||||||
marginBottom: rhythm(1/4),
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Link
|
|
||||||
style={{boxShadow: 'none'}}
|
|
||||||
to={post.node.slug}
|
|
||||||
>
|
|
||||||
{post.node.frontmatter.title}
|
|
||||||
</Link>
|
|
||||||
</li>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<Helmet title={get(this, 'props.data.site.siteMetadata.title')} />
|
|
||||||
<Bio />
|
|
||||||
<ul>
|
|
||||||
{pageLinks}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
BlogIndex.propTypes = {
|
|
||||||
route: React.PropTypes.object,
|
|
||||||
}
|
|
||||||
|
|
||||||
export default BlogIndex
|
|
||||||
|
|
||||||
export const pageQuery = `
|
|
||||||
{
|
|
||||||
site {
|
|
||||||
siteMetadata {
|
|
||||||
title
|
|
||||||
}
|
|
||||||
}
|
|
||||||
allMarkdownRemark {
|
|
||||||
edges {
|
|
||||||
node {
|
|
||||||
slug
|
|
||||||
frontmatter {
|
|
||||||
title
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`
|
|
||||||
43
src/components/Bio.js
Normal file
43
src/components/Bio.js
Normal file
|
|
@ -0,0 +1,43 @@
|
||||||
|
import React from "react"
|
||||||
|
|
||||||
|
// Import typefaces
|
||||||
|
import "typeface-montserrat"
|
||||||
|
import "typeface-merriweather"
|
||||||
|
|
||||||
|
import profilePic from "./profile-pic.jpg"
|
||||||
|
import { rhythm } from "../utils/typography"
|
||||||
|
|
||||||
|
class Bio extends React.Component {
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<p
|
||||||
|
style={{
|
||||||
|
marginBottom: rhythm(2.5),
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src={profilePic}
|
||||||
|
alt={`Kyle Mathews`}
|
||||||
|
style={{
|
||||||
|
float: "left",
|
||||||
|
marginRight: rhythm(1 / 4),
|
||||||
|
marginBottom: 0,
|
||||||
|
width: rhythm(2),
|
||||||
|
height: rhythm(2),
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
Written by
|
||||||
|
{" "}
|
||||||
|
<strong>Kyle Mathews</strong>
|
||||||
|
{" "}
|
||||||
|
who lives and works in San Francisco building useful things.
|
||||||
|
{" "}
|
||||||
|
<a href="https://twitter.com/kylemathews">
|
||||||
|
You should follow him on Twitter
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Bio
|
||||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
|
|
@ -1,14 +1,14 @@
|
||||||
import React from 'react'
|
import React from "react"
|
||||||
import { Link } from 'react-router'
|
import Link from "gatsby-link"
|
||||||
import { Container } from 'react-responsive-grid'
|
import { Container } from "react-responsive-grid"
|
||||||
import { prefixLink } from 'gatsby-helpers'
|
|
||||||
import { rhythm, scale } from 'utils/typography'
|
import { rhythm, scale } from "../utils/typography"
|
||||||
|
|
||||||
class Template extends React.Component {
|
class Template extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
const { location, children } = this.props
|
const { location, children } = this.props
|
||||||
let header
|
let header
|
||||||
if (location.pathname === prefixLink('/')) {
|
if (location.pathname === "/") {
|
||||||
header = (
|
header = (
|
||||||
<h1
|
<h1
|
||||||
style={{
|
style={{
|
||||||
|
|
@ -19,11 +19,11 @@ class Template extends React.Component {
|
||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
style={{
|
style={{
|
||||||
boxShadow: 'none',
|
boxShadow: "none",
|
||||||
textDecoration: 'none',
|
textDecoration: "none",
|
||||||
color: 'inherit',
|
color: "inherit",
|
||||||
}}
|
}}
|
||||||
to={prefixLink('/')}
|
to={"/"}
|
||||||
>
|
>
|
||||||
Gatsby Starter Blog
|
Gatsby Starter Blog
|
||||||
</Link>
|
</Link>
|
||||||
|
|
@ -33,18 +33,18 @@ class Template extends React.Component {
|
||||||
header = (
|
header = (
|
||||||
<h3
|
<h3
|
||||||
style={{
|
style={{
|
||||||
fontFamily: 'Montserrat, sans-serif',
|
fontFamily: "Montserrat, sans-serif",
|
||||||
marginTop: 0,
|
marginTop: 0,
|
||||||
marginBottom: rhythm(-1),
|
marginBottom: rhythm(-1),
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
style={{
|
style={{
|
||||||
boxShadow: 'none',
|
boxShadow: "none",
|
||||||
textDecoration: 'none',
|
textDecoration: "none",
|
||||||
color: 'inherit',
|
color: "inherit",
|
||||||
}}
|
}}
|
||||||
to={prefixLink('/')}
|
to={"/"}
|
||||||
>
|
>
|
||||||
Gatsby Starter Blog
|
Gatsby Starter Blog
|
||||||
</Link>
|
</Link>
|
||||||
|
Before Width: | Height: | Size: 668 KiB After Width: | Height: | Size: 668 KiB |
|
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 198 B |
70
src/pages/index.js
Normal file
70
src/pages/index.js
Normal file
|
|
@ -0,0 +1,70 @@
|
||||||
|
import React from "react"
|
||||||
|
import Link from "gatsby-link"
|
||||||
|
import get from "lodash/get"
|
||||||
|
import Helmet from "react-helmet"
|
||||||
|
import include from "underscore.string/include"
|
||||||
|
|
||||||
|
import Bio from "../components/Bio"
|
||||||
|
import { rhythm } from "../utils/typography"
|
||||||
|
|
||||||
|
class BlogIndex extends React.Component {
|
||||||
|
render() {
|
||||||
|
console.log(this.props)
|
||||||
|
const pageLinks = []
|
||||||
|
const siteTitle = get(this, "props.data.site.siteMetadata.title")
|
||||||
|
const posts = get(this, "props.data.allMarkdownRemark.edges")
|
||||||
|
posts.forEach(post => {
|
||||||
|
if (post.node.path !== "/404/") {
|
||||||
|
const title = get(post, "node.frontmatter.title") || post.node.path
|
||||||
|
pageLinks.push(
|
||||||
|
<li
|
||||||
|
key={post.node.path}
|
||||||
|
style={{
|
||||||
|
marginBottom: rhythm(1 / 4),
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Link style={{ boxShadow: "none" }} to={post.node.slug}>
|
||||||
|
{post.node.frontmatter.title}
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Helmet title={get(this, "props.data.site.siteMetadata.title")} />
|
||||||
|
<Bio />
|
||||||
|
<ul>
|
||||||
|
{pageLinks}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
BlogIndex.propTypes = {
|
||||||
|
route: React.PropTypes.object,
|
||||||
|
}
|
||||||
|
|
||||||
|
export default BlogIndex
|
||||||
|
|
||||||
|
export const pageQuery = `
|
||||||
|
{
|
||||||
|
site {
|
||||||
|
siteMetadata {
|
||||||
|
title
|
||||||
|
}
|
||||||
|
}
|
||||||
|
allMarkdownRemark {
|
||||||
|
edges {
|
||||||
|
node {
|
||||||
|
slug
|
||||||
|
frontmatter {
|
||||||
|
title
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`
|
||||||
|
|
@ -1,14 +1,15 @@
|
||||||
import React from 'react'
|
import React from "react"
|
||||||
import Helmet from 'react-helmet'
|
import Helmet from "react-helmet"
|
||||||
import { Link } from 'react-router'
|
import Link from "gatsby-link"
|
||||||
import get from 'lodash/get'
|
import get from "lodash/get"
|
||||||
import { rhythm, scale } from 'utils/typography'
|
|
||||||
import Bio from 'components/Bio'
|
import Bio from "../components/Bio"
|
||||||
|
import { rhythm, scale } from "../utils/typography"
|
||||||
|
|
||||||
class BlogPostRoute extends React.Component {
|
class BlogPostRoute extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
const post = this.props.data.markdownRemark
|
const post = this.props.data.markdownRemark
|
||||||
const siteTitle = get(this.props, 'data.site.siteMetadata.title')
|
const siteTitle = get(this.props, "data.site.siteMetadata.title")
|
||||||
console.log(this.props)
|
console.log(this.props)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
@ -18,7 +19,7 @@ class BlogPostRoute extends React.Component {
|
||||||
<p
|
<p
|
||||||
style={{
|
style={{
|
||||||
...scale(-1 / 5),
|
...scale(-1 / 5),
|
||||||
display: 'block',
|
display: "block",
|
||||||
marginBottom: rhythm(1),
|
marginBottom: rhythm(1),
|
||||||
marginTop: rhythm(-1),
|
marginTop: rhythm(-1),
|
||||||
}}
|
}}
|
||||||
362
yarn.lock
362
yarn.lock
|
|
@ -57,6 +57,10 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
|
"@types/history@^2":
|
||||||
|
version "2.0.48"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/history/-/history-2.0.48.tgz#7e2868c3ad73d83c482f1d68f148c4fdc79c8a79"
|
||||||
|
|
||||||
"@types/http-assert@*":
|
"@types/http-assert@*":
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.2.0.tgz#0b82993036e86c6ff2944e033b73b57e85ccdcab"
|
resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.2.0.tgz#0b82993036e86c6ff2944e033b73b57e85ccdcab"
|
||||||
|
|
@ -110,6 +114,17 @@
|
||||||
version "6.0.68"
|
version "6.0.68"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.68.tgz#0c43b6b8b9445feb86a0fbd3457e3f4bc591e66d"
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.68.tgz#0c43b6b8b9445feb86a0fbd3457e3f4bc591e66d"
|
||||||
|
|
||||||
|
"@types/react-router@^2.0.49":
|
||||||
|
version "2.0.49"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-2.0.49.tgz#96f8ad51f07a5890ab35fd55f05170efd132552a"
|
||||||
|
dependencies:
|
||||||
|
"@types/history" "^2"
|
||||||
|
"@types/react" "*"
|
||||||
|
|
||||||
|
"@types/react@*":
|
||||||
|
version "15.0.22"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/react/-/react-15.0.22.tgz#50803cde8d89f60a9b034f2dd0d619bc5f0273b5"
|
||||||
|
|
||||||
"@types/serve-static@*", "@types/serve-static@^1.7.31":
|
"@types/serve-static@*", "@types/serve-static@^1.7.31":
|
||||||
version "1.7.31"
|
version "1.7.31"
|
||||||
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.7.31.tgz#15456de8d98d6b4cff31be6c6af7492ae63f521a"
|
resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.7.31.tgz#15456de8d98d6b4cff31be6c6af7492ae63f521a"
|
||||||
|
|
@ -125,6 +140,18 @@ abbrev@1:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
|
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f"
|
||||||
|
|
||||||
|
abstract-leveldown@~2.4.0:
|
||||||
|
version "2.4.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-2.4.1.tgz#b3bfedb884eb693a12775f0c55e9f0a420ccee64"
|
||||||
|
dependencies:
|
||||||
|
xtend "~4.0.0"
|
||||||
|
|
||||||
|
abstract-leveldown@~2.6.1:
|
||||||
|
version "2.6.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/abstract-leveldown/-/abstract-leveldown-2.6.1.tgz#f9014a5669b746418e145168dea49a044ae15900"
|
||||||
|
dependencies:
|
||||||
|
xtend "~4.0.0"
|
||||||
|
|
||||||
accept@1.x.x:
|
accept@1.x.x:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/accept/-/accept-1.1.0.tgz#c7b5567c99ade4ac7c937f2a9bc1c566160a30b5"
|
resolved "https://registry.yarnpkg.com/accept/-/accept-1.1.0.tgz#c7b5567c99ade4ac7c937f2a9bc1c566160a30b5"
|
||||||
|
|
@ -380,7 +407,7 @@ async@2.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
lodash "^4.8.0"
|
lodash "^4.8.0"
|
||||||
|
|
||||||
async@2.1.2, async@^2.1.2:
|
async@2.1.2:
|
||||||
version "2.1.2"
|
version "2.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/async/-/async-2.1.2.tgz#612a4ab45ef42a70cde806bad86ee6db047e8385"
|
resolved "https://registry.yarnpkg.com/async/-/async-2.1.2.tgz#612a4ab45ef42a70cde806bad86ee6db047e8385"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -394,7 +421,7 @@ async@^1.3.0, async@^1.5.0:
|
||||||
version "1.5.2"
|
version "1.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
||||||
|
|
||||||
async@^2.1.4:
|
async@^2.1.2, async@^2.1.4:
|
||||||
version "2.1.5"
|
version "2.1.5"
|
||||||
resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc"
|
resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -1287,6 +1314,10 @@ binary-extensions@^1.0.0:
|
||||||
version "1.8.0"
|
version "1.8.0"
|
||||||
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774"
|
||||||
|
|
||||||
|
bindings@~1.2.1:
|
||||||
|
version "1.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11"
|
||||||
|
|
||||||
bl@^1.0.0:
|
bl@^1.0.0:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.0.tgz#1397e7ec42c5f5dc387470c500e34a9f6be9ea98"
|
resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.0.tgz#1397e7ec42c5f5dc387470c500e34a9f6be9ea98"
|
||||||
|
|
@ -2368,6 +2399,12 @@ deep-is@~0.1.3:
|
||||||
version "0.1.3"
|
version "0.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
||||||
|
|
||||||
|
deferred-leveldown@~1.2.1:
|
||||||
|
version "1.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/deferred-leveldown/-/deferred-leveldown-1.2.1.tgz#5d25c3310f5fe909946f6240dc9f90dd109a71ef"
|
||||||
|
dependencies:
|
||||||
|
abstract-leveldown "~2.4.0"
|
||||||
|
|
||||||
define-properties@^1.1.2:
|
define-properties@^1.1.2:
|
||||||
version "1.1.2"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
|
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.2.tgz#83a73f2fea569898fb737193c8f873caf6d45c94"
|
||||||
|
|
@ -2644,7 +2681,7 @@ err-code@^1.0.0:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.1.tgz#739d71b6851f24d050ea18c79a5b722420771d59"
|
resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.1.tgz#739d71b6851f24d050ea18c79a5b722420771d59"
|
||||||
|
|
||||||
errno@^0.1.3:
|
errno@^0.1.3, errno@~0.1.1:
|
||||||
version "0.1.4"
|
version "0.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
|
resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -2877,7 +2914,11 @@ expand-range@^1.8.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
fill-range "^2.1.0"
|
fill-range "^2.1.0"
|
||||||
|
|
||||||
expand-tilde@^1.2.0, expand-tilde@^1.2.1, expand-tilde@^1.2.2:
|
expand-template@^1.0.2:
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-1.0.3.tgz#6c303323177a62b1b22c070279f7861287b69b1a"
|
||||||
|
|
||||||
|
expand-tilde@^1.2.0, expand-tilde@^1.2.2:
|
||||||
version "1.2.2"
|
version "1.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449"
|
resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -2972,6 +3013,10 @@ fancy-log@^1.1.0:
|
||||||
chalk "^1.1.1"
|
chalk "^1.1.1"
|
||||||
time-stamp "^1.0.0"
|
time-stamp "^1.0.0"
|
||||||
|
|
||||||
|
fast-future@~1.0.2:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/fast-future/-/fast-future-1.0.2.tgz#8435a9aaa02d79248d17d704e76259301d99280a"
|
||||||
|
|
||||||
fast-levenshtein@~2.0.4:
|
fast-levenshtein@~2.0.4:
|
||||||
version "2.0.6"
|
version "2.0.6"
|
||||||
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
||||||
|
|
@ -3115,18 +3160,6 @@ findup-sync@0.4.2, findup-sync@^0.4.2:
|
||||||
micromatch "^2.3.7"
|
micromatch "^2.3.7"
|
||||||
resolve-dir "^0.1.0"
|
resolve-dir "^0.1.0"
|
||||||
|
|
||||||
fined@^1.0.1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/fined/-/fined-1.0.2.tgz#5b28424b760d7598960b7ef8480dff8ad3660e97"
|
|
||||||
dependencies:
|
|
||||||
expand-tilde "^1.2.1"
|
|
||||||
lodash.assignwith "^4.0.7"
|
|
||||||
lodash.isempty "^4.2.1"
|
|
||||||
lodash.isplainobject "^4.0.4"
|
|
||||||
lodash.isstring "^4.0.1"
|
|
||||||
lodash.pick "^4.2.1"
|
|
||||||
parse-filepath "^1.0.1"
|
|
||||||
|
|
||||||
first-chunk-stream@^1.0.0:
|
first-chunk-stream@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
|
resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"
|
||||||
|
|
@ -3267,54 +3300,40 @@ function-bind@^1.0.2, function-bind@^1.1.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
|
||||||
|
|
||||||
gatsby-link@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-link@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-link/-/gatsby-link-1.0.0-alpha12-alpha.1fdb9004.tgz#b63ad1ed366e24d1fabbc6b07a4142fc2d15dad7"
|
resolved "https://registry.yarnpkg.com/gatsby-link/-/gatsby-link-1.0.0-alpha12-alpha.c0bba969.tgz#a36c9554085c8206b1129e087b26fd653533d22e"
|
||||||
|
|
||||||
gatsby-parser-remark@1.0.0-alpha12-alpha.1fdb9004:
|
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-parser-remark/-/gatsby-parser-remark-1.0.0-alpha12-alpha.1fdb9004.tgz#0ece297f3ea05ca2faca729a6f6fba2249bae40b"
|
|
||||||
dependencies:
|
dependencies:
|
||||||
bluebird "^3.4.6"
|
"@types/react-router" "^2.0.49"
|
||||||
gray-matter "^2.1.0"
|
|
||||||
lodash "^4.17.4"
|
|
||||||
unist-util-select "^1.5.0"
|
|
||||||
|
|
||||||
gatsby-parser-sharp@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-plugin-google-analytics@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-parser-sharp/-/gatsby-parser-sharp-1.0.0-alpha12-alpha.1fdb9004.tgz#bc072e471beff98f075fec68f96e3484d4aa5548"
|
resolved "https://registry.yarnpkg.com/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-1.0.0-alpha12-alpha.c0bba969.tgz#82c4f441d1df8c286d1aeb36fd4a113c8769208a"
|
||||||
dependencies:
|
|
||||||
bluebird "^3.4.6"
|
|
||||||
unist-util-select "^1.5.0"
|
|
||||||
|
|
||||||
gatsby-plugin-google-analytics@1.0.0-alpha12-alpha.1fdb9004:
|
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-1.0.0-alpha12-alpha.1fdb9004.tgz#e57c8f9dc95b21777d95e6faa3181f8dd14eaae1"
|
|
||||||
dependencies:
|
dependencies:
|
||||||
react-ga "^2.1.2"
|
react-ga "^2.1.2"
|
||||||
|
|
||||||
gatsby-plugin-manifest@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-plugin-manifest@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-plugin-manifest/-/gatsby-plugin-manifest-1.0.0-alpha12-alpha.1fdb9004.tgz#1f63ea4372aa27b93b778e3efca9fdb04721d383"
|
resolved "https://registry.yarnpkg.com/gatsby-plugin-manifest/-/gatsby-plugin-manifest-1.0.0-alpha12-alpha.c0bba969.tgz#a4c9b8a87e34070ffc2037352c4b6c0e2476da78"
|
||||||
dependencies:
|
dependencies:
|
||||||
bluebird "^3.4.7"
|
bluebird "^3.4.7"
|
||||||
|
|
||||||
gatsby-plugin-offline@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-plugin-offline@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-plugin-offline/-/gatsby-plugin-offline-1.0.0-alpha12-alpha.1fdb9004.tgz#935bacf697dda7dd09f701a8c88ebfae59260569"
|
resolved "https://registry.yarnpkg.com/gatsby-plugin-offline/-/gatsby-plugin-offline-1.0.0-alpha12-alpha.c0bba969.tgz#9a846d6c9b7c205d327d469f8f36a93bdfa5828f"
|
||||||
dependencies:
|
dependencies:
|
||||||
sw-precache "^5.0.0"
|
sw-precache "^5.0.0"
|
||||||
|
|
||||||
gatsby-plugin-preact@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-plugin-preact@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-plugin-preact/-/gatsby-plugin-preact-1.0.0-alpha12-alpha.1fdb9004.tgz#9bcd27a96fd22948eb52026ee14539f24d33050b"
|
resolved "https://registry.yarnpkg.com/gatsby-plugin-preact/-/gatsby-plugin-preact-1.0.0-alpha12-alpha.c0bba969.tgz#9e3812aa50d8d851ee453d8d7144432d0dbe8a48"
|
||||||
dependencies:
|
dependencies:
|
||||||
preact "^7.1.0"
|
preact "^7.1.0"
|
||||||
preact-compat "^3.11.0"
|
preact-compat "^3.11.0"
|
||||||
|
|
||||||
gatsby-plugin-sharp@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-plugin-sharp@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-plugin-sharp/-/gatsby-plugin-sharp-1.0.0-alpha12-alpha.1fdb9004.tgz#b1c739f27e22d2ad378536dd6a18e0a835e02e6d"
|
resolved "https://registry.yarnpkg.com/gatsby-plugin-sharp/-/gatsby-plugin-sharp-1.0.0-alpha12-alpha.c0bba969.tgz#54a4d47a4a872bc9c20a6a0e2f858c9d5b1ad44b"
|
||||||
dependencies:
|
dependencies:
|
||||||
async "^2.1.4"
|
async "^2.1.4"
|
||||||
bluebird "^3.4.7"
|
bluebird "^3.4.7"
|
||||||
|
|
@ -3327,9 +3346,9 @@ gatsby-plugin-sharp@1.0.0-alpha12-alpha.1fdb9004:
|
||||||
queue "^4.0.1"
|
queue "^4.0.1"
|
||||||
sharp "^0.17.3"
|
sharp "^0.17.3"
|
||||||
|
|
||||||
gatsby-source-filesystem@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-source-filesystem@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-source-filesystem/-/gatsby-source-filesystem-1.0.0-alpha12-alpha.1fdb9004.tgz#a54c5a84c75c9fa236bc892d796012c3cd640ea7"
|
resolved "https://registry.yarnpkg.com/gatsby-source-filesystem/-/gatsby-source-filesystem-1.0.0-alpha12-alpha.c0bba969.tgz#b940c9383f6647d90444ea4ceb623b1f903fc813"
|
||||||
dependencies:
|
dependencies:
|
||||||
async "^2.1.2"
|
async "^2.1.2"
|
||||||
babel-cli "^6.18.0"
|
babel-cli "^6.18.0"
|
||||||
|
|
@ -3349,57 +3368,73 @@ gatsby-source-filesystem@1.0.0-alpha12-alpha.1fdb9004:
|
||||||
slash "^1.0.0"
|
slash "^1.0.0"
|
||||||
unist-builder "^1.0.2"
|
unist-builder "^1.0.2"
|
||||||
|
|
||||||
gatsby-typegen-filesystem@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-transformer-remark@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-filesystem/-/gatsby-typegen-filesystem-1.0.0-alpha12-alpha.1fdb9004.tgz#6f450c704260cf045f6f1cc14859df6f6c3ff86e"
|
resolved "https://registry.yarnpkg.com/gatsby-transformer-remark/-/gatsby-transformer-remark-1.0.0-alpha12-alpha.c0bba969.tgz#d47da7ea55576bd2f7d83f47d74261c6ce8c884c"
|
||||||
|
dependencies:
|
||||||
|
bluebird "^3.4.6"
|
||||||
|
gray-matter "^2.1.0"
|
||||||
|
lodash "^4.17.4"
|
||||||
|
unist-util-select "^1.5.0"
|
||||||
|
|
||||||
|
gatsby-transformer-sharp@1.0.0-alpha12-alpha.c0bba969:
|
||||||
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
|
resolved "https://registry.yarnpkg.com/gatsby-transformer-sharp/-/gatsby-transformer-sharp-1.0.0-alpha12-alpha.c0bba969.tgz#96471d4ae25a7c411795b8ffed579ec9506d1350"
|
||||||
|
dependencies:
|
||||||
|
bluebird "^3.4.6"
|
||||||
|
unist-util-select "^1.5.0"
|
||||||
|
|
||||||
|
gatsby-typegen-filesystem@1.0.0-alpha12-alpha.c0bba969:
|
||||||
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-filesystem/-/gatsby-typegen-filesystem-1.0.0-alpha12-alpha.c0bba969.tgz#d6b7ef77175c85ed80010a668a545d60790012fe"
|
||||||
dependencies:
|
dependencies:
|
||||||
unist-util-select "^1.5.0"
|
unist-util-select "^1.5.0"
|
||||||
|
|
||||||
gatsby-typegen-remark-copy-linked-files@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-remark-copy-linked-files@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-copy-linked-files/-/gatsby-typegen-remark-copy-linked-files-1.0.0-alpha12-alpha.1fdb9004.tgz#431a7973e7e8f59a87d6eaaecc183998c8e87cbb"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-copy-linked-files/-/gatsby-typegen-remark-copy-linked-files-1.0.0-alpha12-alpha.c0bba969.tgz#5e436a571141117c4537ec1a27468fe37a4a6d25"
|
||||||
dependencies:
|
dependencies:
|
||||||
fs-extra "^1.0.0"
|
fs-extra "^1.0.0"
|
||||||
is-relative-url "^2.0.0"
|
is-relative-url "^2.0.0"
|
||||||
lodash "^4.17.3"
|
lodash "^4.17.3"
|
||||||
unist-util-visit "^1.1.1"
|
unist-util-visit "^1.1.1"
|
||||||
|
|
||||||
gatsby-typegen-remark-prismjs@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-remark-prismjs@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-prismjs/-/gatsby-typegen-remark-prismjs-1.0.0-alpha12-alpha.1fdb9004.tgz#f342f474f473ef1207438eba03b64825b239e2a3"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-prismjs/-/gatsby-typegen-remark-prismjs-1.0.0-alpha12-alpha.c0bba969.tgz#1a084af3c362356685bba8dd8d2c59c3e3c35189"
|
||||||
dependencies:
|
dependencies:
|
||||||
prismjs "^1.6.0"
|
prismjs "^1.6.0"
|
||||||
unist-util-visit "^1.1.1"
|
unist-util-visit "^1.1.1"
|
||||||
|
|
||||||
gatsby-typegen-remark-responsive-iframe@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-remark-responsive-iframe@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-responsive-iframe/-/gatsby-typegen-remark-responsive-iframe-1.0.0-alpha12-alpha.1fdb9004.tgz#707aca4ee6b4448ec754935bb3eedcaa92f683a7"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-responsive-iframe/-/gatsby-typegen-remark-responsive-iframe-1.0.0-alpha12-alpha.c0bba969.tgz#4a8a9de01a152c976cf24ad939bdaf2fd9ce4003"
|
||||||
dependencies:
|
dependencies:
|
||||||
bluebird "^3.4.7"
|
bluebird "^3.4.7"
|
||||||
cheerio "^0.22.0"
|
cheerio "^0.22.0"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
unist-util-visit "^1.1.1"
|
unist-util-visit "^1.1.1"
|
||||||
|
|
||||||
gatsby-typegen-remark-responsive-image@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-remark-responsive-image@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-responsive-image/-/gatsby-typegen-remark-responsive-image-1.0.0-alpha12-alpha.1fdb9004.tgz#e51b92f78b55c0be822b8672037affac327bd5a6"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-responsive-image/-/gatsby-typegen-remark-responsive-image-1.0.0-alpha12-alpha.c0bba969.tgz#0b7d4e8de57f2eb28f89bebe7787913cdb234a6e"
|
||||||
dependencies:
|
dependencies:
|
||||||
image-size "^0.5.1"
|
image-size "^0.5.1"
|
||||||
is-relative-url "^2.0.0"
|
is-relative-url "^2.0.0"
|
||||||
lodash "^4.17.3"
|
lodash "^4.17.3"
|
||||||
unist-util-select "^1.5.0"
|
unist-util-select "^1.5.0"
|
||||||
|
|
||||||
gatsby-typegen-remark-smartypants@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-remark-smartypants@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-smartypants/-/gatsby-typegen-remark-smartypants-1.0.0-alpha12-alpha.1fdb9004.tgz#574be0709aa305dc7301528d2e9cb8759656575d"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark-smartypants/-/gatsby-typegen-remark-smartypants-1.0.0-alpha12-alpha.c0bba969.tgz#fa566bbc3dfb4883fc44c2369d2a9499f00fabd4"
|
||||||
dependencies:
|
dependencies:
|
||||||
retext "^4.0.0"
|
retext "^4.0.0"
|
||||||
retext-smartypants "^2.0.0"
|
retext-smartypants "^2.0.0"
|
||||||
unist-util-visit "^1.1.1"
|
unist-util-visit "^1.1.1"
|
||||||
|
|
||||||
gatsby-typegen-remark@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-remark@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark/-/gatsby-typegen-remark-1.0.0-alpha12-alpha.1fdb9004.tgz#20890ec8645fae8993a5f805cd1f4eb2140a6fc2"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-remark/-/gatsby-typegen-remark-1.0.0-alpha12-alpha.c0bba969.tgz#80d4f055b1b05a9c45b77e3982449df2b4923569"
|
||||||
dependencies:
|
dependencies:
|
||||||
bluebird "^3.5.0"
|
bluebird "^3.5.0"
|
||||||
excerpt-html "^1.2.0"
|
excerpt-html "^1.2.0"
|
||||||
|
|
@ -3418,18 +3453,18 @@ gatsby-typegen-remark@1.0.0-alpha12-alpha.1fdb9004:
|
||||||
unist-util-select "^1.5.0"
|
unist-util-select "^1.5.0"
|
||||||
unist-util-visit "^1.1.1"
|
unist-util-visit "^1.1.1"
|
||||||
|
|
||||||
gatsby-typegen-sharp@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby-typegen-sharp@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby-typegen-sharp/-/gatsby-typegen-sharp-1.0.0-alpha12-alpha.1fdb9004.tgz#6795cdd76b645150bb78168db6913dced56306af"
|
resolved "https://registry.yarnpkg.com/gatsby-typegen-sharp/-/gatsby-typegen-sharp-1.0.0-alpha12-alpha.c0bba969.tgz#ee87fa714fcab59231df584c9049c6a5448fa7a7"
|
||||||
dependencies:
|
dependencies:
|
||||||
graphql "^0.8.2"
|
graphql "^0.8.2"
|
||||||
image-size "^0.5.1"
|
image-size "^0.5.1"
|
||||||
lodash "^4.17.2"
|
lodash "^4.17.2"
|
||||||
sharp "^0.17.0"
|
sharp "^0.17.0"
|
||||||
|
|
||||||
gatsby@1.0.0-alpha12-alpha.1fdb9004:
|
gatsby@1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.1fdb9004"
|
version "1.0.0-alpha12-alpha.c0bba969"
|
||||||
resolved "https://registry.yarnpkg.com/gatsby/-/gatsby-1.0.0-alpha12-alpha.1fdb9004.tgz#c65616934a4a95aa2f8d24dfcdec7aec09dd87fb"
|
resolved "https://registry.yarnpkg.com/gatsby/-/gatsby-1.0.0-alpha12-alpha.c0bba969.tgz#4c713062252febd72c04430875ef124e8fdb344a"
|
||||||
dependencies:
|
dependencies:
|
||||||
async "^2.1.2"
|
async "^2.1.2"
|
||||||
babel-core "^6.18.2"
|
babel-core "^6.18.2"
|
||||||
|
|
@ -3467,7 +3502,7 @@ gatsby@1.0.0-alpha12-alpha.1fdb9004:
|
||||||
glob "^7.1.0"
|
glob "^7.1.0"
|
||||||
graphql "^0.8.2"
|
graphql "^0.8.2"
|
||||||
graphql-relay "^0.4.3"
|
graphql-relay "^0.4.3"
|
||||||
graphql-skip-limit "^1.0.0-alpha12-alpha.1fdb9004"
|
graphql-skip-limit "^1.0.0-alpha12-alpha.c0bba969"
|
||||||
graphql-union-input-type "^0.2.1"
|
graphql-union-input-type "^0.2.1"
|
||||||
gray-matter "^2.1.0"
|
gray-matter "^2.1.0"
|
||||||
hapi "^8.5.1"
|
hapi "^8.5.1"
|
||||||
|
|
@ -3479,11 +3514,13 @@ gatsby@1.0.0-alpha12-alpha.1fdb9004:
|
||||||
joi "^9.1.1"
|
joi "^9.1.1"
|
||||||
json-loader "^0.5.2"
|
json-loader "^0.5.2"
|
||||||
json5 "^0.5.0"
|
json5 "^0.5.0"
|
||||||
|
level "^1.6.0"
|
||||||
loader-utils "^0.2.16"
|
loader-utils "^0.2.16"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
markdown-it "^7.0.1"
|
markdown-it "^7.0.1"
|
||||||
md5-file "^3.1.1"
|
md5-file "^3.1.1"
|
||||||
mime "^1.3.4"
|
mime "^1.3.4"
|
||||||
|
mime-types "^2.1.15"
|
||||||
mkdirp "^0.5.1"
|
mkdirp "^0.5.1"
|
||||||
moment "^2.16.0"
|
moment "^2.16.0"
|
||||||
negotiator "^0.6.1"
|
negotiator "^0.6.1"
|
||||||
|
|
@ -3612,6 +3649,10 @@ gh-pages@^0.12.0:
|
||||||
q-io "1.13.2"
|
q-io "1.13.2"
|
||||||
rimraf "^2.5.4"
|
rimraf "^2.5.4"
|
||||||
|
|
||||||
|
github-from-package@0.0.0:
|
||||||
|
version "0.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce"
|
||||||
|
|
||||||
glob-base@^0.3.0:
|
glob-base@^0.3.0:
|
||||||
version "0.3.0"
|
version "0.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
|
resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
|
||||||
|
|
@ -3772,11 +3813,11 @@ got@^6.7.1:
|
||||||
unzip-response "^2.0.1"
|
unzip-response "^2.0.1"
|
||||||
url-parse-lax "^1.0.0"
|
url-parse-lax "^1.0.0"
|
||||||
|
|
||||||
graceful-fs@4.1.10, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
|
graceful-fs@4.1.10, graceful-fs@^4.1.2:
|
||||||
version "4.1.10"
|
version "4.1.10"
|
||||||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131"
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131"
|
||||||
|
|
||||||
graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.4:
|
graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.3, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
|
||||||
version "4.1.11"
|
version "4.1.11"
|
||||||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
||||||
|
|
||||||
|
|
@ -3788,7 +3829,7 @@ graphql-relay@^0.4.3, graphql-relay@^0.4.4:
|
||||||
version "0.4.4"
|
version "0.4.4"
|
||||||
resolved "https://registry.yarnpkg.com/graphql-relay/-/graphql-relay-0.4.4.tgz#876a654445b6af4539f81cb9befd5cd7ead129dd"
|
resolved "https://registry.yarnpkg.com/graphql-relay/-/graphql-relay-0.4.4.tgz#876a654445b6af4539f81cb9befd5cd7ead129dd"
|
||||||
|
|
||||||
graphql-skip-limit@^1.0.0-alpha12-alpha.1fdb9004:
|
graphql-skip-limit@^1.0.0-alpha12-alpha.c0bba969:
|
||||||
version "1.0.0-alpha12-alpha.faff3fa9"
|
version "1.0.0-alpha12-alpha.faff3fa9"
|
||||||
resolved "https://registry.yarnpkg.com/graphql-skip-limit/-/graphql-skip-limit-1.0.0-alpha12-alpha.faff3fa9.tgz#bcc4436d70c1e61807496e4084367bcb2c5c84ea"
|
resolved "https://registry.yarnpkg.com/graphql-skip-limit/-/graphql-skip-limit-1.0.0-alpha12-alpha.faff3fa9.tgz#bcc4436d70c1e61807496e4084367bcb2c5c84ea"
|
||||||
|
|
||||||
|
|
@ -4921,6 +4962,60 @@ lcid@^1.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
invert-kv "^1.0.0"
|
invert-kv "^1.0.0"
|
||||||
|
|
||||||
|
level-codec@~6.1.0:
|
||||||
|
version "6.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/level-codec/-/level-codec-6.1.0.tgz#f5df0a99582f76dac43855151ab6f4e4d0d60045"
|
||||||
|
|
||||||
|
level-errors@^1.0.3, level-errors@~1.0.3:
|
||||||
|
version "1.0.4"
|
||||||
|
resolved "https://registry.yarnpkg.com/level-errors/-/level-errors-1.0.4.tgz#3585e623974c737a93755492a43c0267cda4425f"
|
||||||
|
dependencies:
|
||||||
|
errno "~0.1.1"
|
||||||
|
|
||||||
|
level-iterator-stream@~1.3.0:
|
||||||
|
version "1.3.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/level-iterator-stream/-/level-iterator-stream-1.3.1.tgz#e43b78b1a8143e6fa97a4f485eb8ea530352f2ed"
|
||||||
|
dependencies:
|
||||||
|
inherits "^2.0.1"
|
||||||
|
level-errors "^1.0.3"
|
||||||
|
readable-stream "^1.0.33"
|
||||||
|
xtend "^4.0.0"
|
||||||
|
|
||||||
|
level-packager@~1.2.0:
|
||||||
|
version "1.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/level-packager/-/level-packager-1.2.1.tgz#067fedfd072b7fe3c6bec6080c0cbd4a6b2e11f4"
|
||||||
|
dependencies:
|
||||||
|
levelup "~1.3.0"
|
||||||
|
|
||||||
|
level@^1.6.0:
|
||||||
|
version "1.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/level/-/level-1.6.0.tgz#3fcbae9163a091668b8ec7a9efd1d2feef1e6621"
|
||||||
|
dependencies:
|
||||||
|
level-packager "~1.2.0"
|
||||||
|
leveldown "~1.6.0"
|
||||||
|
|
||||||
|
leveldown@~1.6.0:
|
||||||
|
version "1.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/leveldown/-/leveldown-1.6.0.tgz#e6ec906d2995a8bffd02499f39e95988cd2b230f"
|
||||||
|
dependencies:
|
||||||
|
abstract-leveldown "~2.6.1"
|
||||||
|
bindings "~1.2.1"
|
||||||
|
fast-future "~1.0.2"
|
||||||
|
nan "~2.5.1"
|
||||||
|
prebuild-install "^2.1.0"
|
||||||
|
|
||||||
|
levelup@~1.3.0:
|
||||||
|
version "1.3.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/levelup/-/levelup-1.3.5.tgz#fa80a972b74011f2537c8b65678bd8b5188e4e66"
|
||||||
|
dependencies:
|
||||||
|
deferred-leveldown "~1.2.1"
|
||||||
|
level-codec "~6.1.0"
|
||||||
|
level-errors "~1.0.3"
|
||||||
|
level-iterator-stream "~1.3.0"
|
||||||
|
prr "~1.0.1"
|
||||||
|
semver "~5.1.0"
|
||||||
|
xtend "~4.0.0"
|
||||||
|
|
||||||
levn@~0.3.0:
|
levn@~0.3.0:
|
||||||
version "0.3.0"
|
version "0.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
||||||
|
|
@ -4928,21 +5023,7 @@ levn@~0.3.0:
|
||||||
prelude-ls "~1.1.2"
|
prelude-ls "~1.1.2"
|
||||||
type-check "~0.3.2"
|
type-check "~0.3.2"
|
||||||
|
|
||||||
liftoff@^2.2.0:
|
liftoff@^2.2.0, liftoff@~2.2.0:
|
||||||
version "2.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.3.0.tgz#a98f2ff67183d8ba7cfaca10548bd7ff0550b385"
|
|
||||||
dependencies:
|
|
||||||
extend "^3.0.0"
|
|
||||||
findup-sync "^0.4.2"
|
|
||||||
fined "^1.0.1"
|
|
||||||
flagged-respawn "^0.3.2"
|
|
||||||
lodash.isplainobject "^4.0.4"
|
|
||||||
lodash.isstring "^4.0.1"
|
|
||||||
lodash.mapvalues "^4.4.0"
|
|
||||||
rechoir "^0.6.2"
|
|
||||||
resolve "^1.1.7"
|
|
||||||
|
|
||||||
liftoff@~2.2.0:
|
|
||||||
version "2.2.5"
|
version "2.2.5"
|
||||||
resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.2.5.tgz#998c2876cff484b103e4423b93d356da44734c91"
|
resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.2.5.tgz#998c2876cff484b103e4423b93d356da44734c91"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -5044,10 +5125,6 @@ lodash.assignin@^4.0.9:
|
||||||
version "4.2.0"
|
version "4.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
|
resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
|
||||||
|
|
||||||
lodash.assignwith@^4.0.7:
|
|
||||||
version "4.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb"
|
|
||||||
|
|
||||||
lodash.bind@^4.1.4:
|
lodash.bind@^4.1.4:
|
||||||
version "4.2.1"
|
version "4.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35"
|
resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35"
|
||||||
|
|
@ -5090,10 +5167,6 @@ lodash.isarray@^3.0.0:
|
||||||
version "3.0.4"
|
version "3.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
|
resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
|
||||||
|
|
||||||
lodash.isempty@^4.2.1:
|
|
||||||
version "4.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e"
|
|
||||||
|
|
||||||
lodash.isequal@^4.0.0:
|
lodash.isequal@^4.0.0:
|
||||||
version "4.5.0"
|
version "4.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
|
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
|
||||||
|
|
@ -5102,14 +5175,6 @@ lodash.isnumber@^3.0.0:
|
||||||
version "3.0.3"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
|
resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
|
||||||
|
|
||||||
lodash.isplainobject@^4.0.4:
|
|
||||||
version "4.0.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
|
|
||||||
|
|
||||||
lodash.isstring@^4.0.1:
|
|
||||||
version "4.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
|
|
||||||
|
|
||||||
lodash.iteratee@^4.5.0:
|
lodash.iteratee@^4.5.0:
|
||||||
version "4.7.0"
|
version "4.7.0"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz#be4177db289a8ccc3c0990f1db26b5b22fc1554c"
|
resolved "https://registry.yarnpkg.com/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz#be4177db289a8ccc3c0990f1db26b5b22fc1554c"
|
||||||
|
|
@ -5126,10 +5191,6 @@ lodash.map@^4.4.0:
|
||||||
version "4.6.0"
|
version "4.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
|
resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
|
||||||
|
|
||||||
lodash.mapvalues@^4.4.0:
|
|
||||||
version "4.6.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c"
|
|
||||||
|
|
||||||
lodash.memoize@^4.1.0:
|
lodash.memoize@^4.1.0:
|
||||||
version "4.1.2"
|
version "4.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
|
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
|
||||||
|
|
@ -5469,12 +5530,22 @@ mime-db@1.x.x, "mime-db@>= 1.24.0 < 2", mime-db@~1.26.0:
|
||||||
version "1.26.0"
|
version "1.26.0"
|
||||||
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff"
|
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff"
|
||||||
|
|
||||||
|
mime-db@~1.27.0:
|
||||||
|
version "1.27.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1"
|
||||||
|
|
||||||
mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7:
|
mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.13, mime-types@~2.1.7:
|
||||||
version "2.1.14"
|
version "2.1.14"
|
||||||
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee"
|
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee"
|
||||||
dependencies:
|
dependencies:
|
||||||
mime-db "~1.26.0"
|
mime-db "~1.26.0"
|
||||||
|
|
||||||
|
mime-types@^2.1.15:
|
||||||
|
version "2.1.15"
|
||||||
|
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed"
|
||||||
|
dependencies:
|
||||||
|
mime-db "~1.27.0"
|
||||||
|
|
||||||
mime@1.3.4, mime@1.3.x, mime@^1.2.11, mime@^1.3.4:
|
mime@1.3.4, mime@1.3.x, mime@^1.2.11, mime@^1.3.4:
|
||||||
version "1.3.4"
|
version "1.3.4"
|
||||||
resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53"
|
resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53"
|
||||||
|
|
@ -5576,7 +5647,7 @@ mute-stream@0.0.6:
|
||||||
version "0.0.6"
|
version "0.0.6"
|
||||||
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db"
|
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db"
|
||||||
|
|
||||||
nan@^2.3.0, nan@^2.5.1:
|
nan@^2.3.0, nan@^2.5.1, nan@~2.5.1:
|
||||||
version "2.5.1"
|
version "2.5.1"
|
||||||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2"
|
resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2"
|
||||||
|
|
||||||
|
|
@ -5614,6 +5685,10 @@ nlcst-to-string@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/nlcst-to-string/-/nlcst-to-string-2.0.0.tgz#fc9606b8c32d17caa827074f6ea44f83e3c7bd71"
|
resolved "https://registry.yarnpkg.com/nlcst-to-string/-/nlcst-to-string-2.0.0.tgz#fc9606b8c32d17caa827074f6ea44f83e3c7bd71"
|
||||||
|
|
||||||
|
node-abi@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.0.0.tgz#443bfd151b599231028ae425e592e76cd31cb537"
|
||||||
|
|
||||||
node-cjsx@^2.0.0:
|
node-cjsx@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/node-cjsx/-/node-cjsx-2.0.0.tgz#19c951b3e3d66e667e9993b457acea0a365098a4"
|
resolved "https://registry.yarnpkg.com/node-cjsx/-/node-cjsx-2.0.0.tgz#19c951b3e3d66e667e9993b457acea0a365098a4"
|
||||||
|
|
@ -5714,6 +5789,10 @@ node-uuid@^1.4.0, node-uuid@~1.4.0:
|
||||||
version "1.4.8"
|
version "1.4.8"
|
||||||
resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907"
|
resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907"
|
||||||
|
|
||||||
|
noop-logger@^0.1.1:
|
||||||
|
version "0.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2"
|
||||||
|
|
||||||
nopt@~3.0.6:
|
nopt@~3.0.6:
|
||||||
version "3.0.6"
|
version "3.0.6"
|
||||||
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
||||||
|
|
@ -6717,6 +6796,25 @@ preact@^7.1.0:
|
||||||
version "7.2.0"
|
version "7.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/preact/-/preact-7.2.0.tgz#8aacc97465a65509bc556604a7750d48e2fa7ad1"
|
resolved "https://registry.yarnpkg.com/preact/-/preact-7.2.0.tgz#8aacc97465a65509bc556604a7750d48e2fa7ad1"
|
||||||
|
|
||||||
|
prebuild-install@^2.1.0:
|
||||||
|
version "2.1.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-2.1.2.tgz#d9ae0ca85330e03962d93292f95a8b44c2ebf505"
|
||||||
|
dependencies:
|
||||||
|
expand-template "^1.0.2"
|
||||||
|
github-from-package "0.0.0"
|
||||||
|
minimist "^1.2.0"
|
||||||
|
mkdirp "^0.5.1"
|
||||||
|
node-abi "^2.0.0"
|
||||||
|
noop-logger "^0.1.1"
|
||||||
|
npmlog "^4.0.1"
|
||||||
|
os-homedir "^1.0.1"
|
||||||
|
pump "^1.0.1"
|
||||||
|
rc "^1.1.6"
|
||||||
|
simple-get "^1.4.2"
|
||||||
|
tar-fs "^1.13.0"
|
||||||
|
tunnel-agent "^0.4.3"
|
||||||
|
xtend "4.0.1"
|
||||||
|
|
||||||
prelude-ls@~1.1.2:
|
prelude-ls@~1.1.2:
|
||||||
version "1.1.2"
|
version "1.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
||||||
|
|
@ -6807,6 +6905,10 @@ prr@~0.0.0:
|
||||||
version "0.0.0"
|
version "0.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
|
resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
|
||||||
|
|
||||||
|
prr@~1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
|
||||||
|
|
||||||
pseudomap@^1.0.1:
|
pseudomap@^1.0.1:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
|
||||||
|
|
@ -6821,7 +6923,7 @@ public-encrypt@^4.0.0:
|
||||||
parse-asn1 "^5.0.0"
|
parse-asn1 "^5.0.0"
|
||||||
randombytes "^2.0.1"
|
randombytes "^2.0.1"
|
||||||
|
|
||||||
pump@^1.0.0:
|
pump@^1.0.0, pump@^1.0.1:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.2.tgz#3b3ee6512f94f0e575538c17995f9f16990a5d51"
|
resolved "https://registry.yarnpkg.com/pump/-/pump-1.0.2.tgz#3b3ee6512f94f0e575538c17995f9f16990a5d51"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -7078,7 +7180,7 @@ read-pkg@^1.0.0:
|
||||||
normalize-package-data "^2.3.2"
|
normalize-package-data "^2.3.2"
|
||||||
path-type "^1.0.0"
|
path-type "^1.0.0"
|
||||||
|
|
||||||
readable-stream@1.1, readable-stream@^1.1.12, readable-stream@~1.1.9:
|
readable-stream@1.1, readable-stream@^1.0.33, readable-stream@^1.1.12, readable-stream@~1.1.9:
|
||||||
version "1.1.13"
|
version "1.1.13"
|
||||||
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e"
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.13.tgz#f6eef764f514c89e2b9e23146a75ba106756d23e"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
@ -7705,6 +7807,10 @@ semver@^4.0.3, semver@^4.3.3:
|
||||||
version "4.3.6"
|
version "4.3.6"
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da"
|
resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da"
|
||||||
|
|
||||||
|
semver@~5.1.0:
|
||||||
|
version "5.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.1.1.tgz#a3292a373e6f3e0798da0b20641b9a9c5bc47e19"
|
||||||
|
|
||||||
send@0.15.1:
|
send@0.15.1:
|
||||||
version "0.15.1"
|
version "0.15.1"
|
||||||
resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f"
|
resolved "https://registry.yarnpkg.com/send/-/send-0.15.1.tgz#8a02354c26e6f5cca700065f5f0cdeba90ec7b5f"
|
||||||
|
|
@ -7843,6 +7949,14 @@ simple-backoff@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/simple-backoff/-/simple-backoff-1.0.0.tgz#a4fa290ec01969c07ca136fe8bbfb40e0ef35ac2"
|
resolved "https://registry.yarnpkg.com/simple-backoff/-/simple-backoff-1.0.0.tgz#a4fa290ec01969c07ca136fe8bbfb40e0ef35ac2"
|
||||||
|
|
||||||
|
simple-get@^1.4.2:
|
||||||
|
version "1.4.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-1.4.3.tgz#e9755eda407e96da40c5e5158c9ea37b33becbeb"
|
||||||
|
dependencies:
|
||||||
|
once "^1.3.1"
|
||||||
|
unzip-response "^1.0.0"
|
||||||
|
xtend "^4.0.0"
|
||||||
|
|
||||||
simple-swizzle@^0.2.2:
|
simple-swizzle@^0.2.2:
|
||||||
version "0.2.2"
|
version "0.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
|
resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
|
||||||
|
|
@ -8527,7 +8641,7 @@ tty-browserify@0.0.0:
|
||||||
version "0.0.0"
|
version "0.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
|
||||||
|
|
||||||
tunnel-agent@^0.4.0:
|
tunnel-agent@^0.4.0, tunnel-agent@^0.4.3:
|
||||||
version "0.4.3"
|
version "0.4.3"
|
||||||
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
|
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb"
|
||||||
|
|
||||||
|
|
@ -8786,7 +8900,7 @@ untildify@^2.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
os-homedir "^1.0.0"
|
os-homedir "^1.0.0"
|
||||||
|
|
||||||
unzip-response@^1.0.2:
|
unzip-response@^1.0.0, unzip-response@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"
|
resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-1.0.2.tgz#b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe"
|
||||||
|
|
||||||
|
|
@ -9300,7 +9414,7 @@ xdg-basedir@^2.0.0:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
|
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
|
||||||
|
|
||||||
"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1:
|
xtend@4.0.1, "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1:
|
||||||
version "4.0.1"
|
version "4.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue