1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-06-29 00:58:02 +02:00

package updates and code base updates for it

This commit is contained in:
Matthias Kretschmann 2020-05-15 10:01:43 +02:00
parent caf2bb1b0a
commit b016deb538
Signed by: m
GPG Key ID: 606EEEF3C479A91F
7 changed files with 41 additions and 42 deletions

View File

@ -25,62 +25,62 @@
"@oceanprotocol/art": "^2.2.0",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"gatsby": "^2.20.3",
"gatsby-image": "^2.3.1",
"gatsby-plugin-catch-links": "^2.2.1",
"gatsby-plugin-google-analytics": "^2.2.1",
"gatsby-plugin-manifest": "^2.3.2",
"gatsby-plugin-offline": "^3.1.1",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-sass": "^2.2.1",
"gatsby-plugin-sharp": "^2.5.2",
"gatsby-plugin-sitemap": "^2.3.1",
"gatsby": "^2.21.31",
"gatsby-image": "^2.4.3",
"gatsby-plugin-catch-links": "^2.3.1",
"gatsby-plugin-google-analytics": "^2.3.1",
"gatsby-plugin-manifest": "^2.4.3",
"gatsby-plugin-offline": "^3.2.2",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sass": "^2.3.1",
"gatsby-plugin-sharp": "^2.6.3",
"gatsby-plugin-sitemap": "^2.4.2",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-remark-autolink-headers": "^2.2.1",
"gatsby-remark-autolink-headers": "^2.3.2",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "^2.2.1",
"gatsby-remark-embed-video": "^2.0.1",
"gatsby-remark-copy-linked-files": "^2.3.2",
"gatsby-remark-embed-video": "^3.0.10",
"gatsby-remark-github": "^2.0.0",
"gatsby-remark-images": "^3.2.1",
"gatsby-remark-responsive-iframe": "^2.3.1",
"gatsby-remark-smartypants": "^2.2.1",
"gatsby-remark-vscode": "^2.0.3",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-source-graphql": "^2.2.1",
"gatsby-transformer-remark": "^2.7.1",
"gatsby-transformer-sharp": "^2.4.2",
"gatsby-transformer-xml": "^2.2.1",
"gatsby-transformer-yaml": "^2.3.1",
"gatsby-remark-images": "^3.3.3",
"gatsby-remark-responsive-iframe": "^2.4.2",
"gatsby-remark-smartypants": "^2.3.1",
"gatsby-remark-vscode": "^2.1.1",
"gatsby-source-filesystem": "^2.3.3",
"gatsby-source-graphql": "^2.5.1",
"gatsby-transformer-remark": "^2.8.8",
"gatsby-transformer-sharp": "^2.5.2",
"gatsby-transformer-xml": "^2.3.1",
"gatsby-transformer-yaml": "^2.4.1",
"giphy-js-sdk-core": "^1.0.6",
"intersection-observer": "^0.8.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-helmet": "^6.0.0",
"react-scrollspy": "^3.4.2",
"rehype-react": "^5.0.0",
"remark": "^11.0.2",
"rehype-react": "^5.0.1",
"remark": "^12.0.0",
"remark-github-plugin": "^1.3.1",
"remark-react": "^7.0.0",
"remark-react": "^7.0.1",
"shortid": "^2.2.15",
"slugify": "^1.4.0",
"smoothscroll-polyfill": "^0.4.4",
"swagger-client": "^3.10.0"
"swagger-client": "^3.10.3"
},
"devDependencies": {
"@svgr/webpack": "^5.3.0",
"@svgr/webpack": "^5.4.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"markdownlint-cli": "^0.22.0",
"node-sass": "^4.13.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"markdownlint-cli": "^0.23.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"prettier": "^2.0.5",
"prettier-stylelint": "^0.4.2",
"stylelint": "^13.2.1",
"stylelint": "^13.3.3",
"stylelint-config-bigchaindb": "^1.2.2",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-standard": "^20.0.0"

View File

@ -6,8 +6,7 @@ import styles from './DocHeader.module.scss'
const DocHeader = ({ title, description, prepend }) => {
const descriptionHtml =
description &&
remark().use(remarkReact).processSync(description).contents
description && remark().use(remarkReact).processSync(description).result
return (
<header className={styles.header}>

View File

@ -6,7 +6,7 @@ import styles from './Readme.module.scss'
export default function Readme({ object }) {
const readmeHtml =
object && remark().use(remarkReact).processSync(object.text).contents
object && remark().use(remarkReact).processSync(object.text).result
return (
object && (

View File

@ -1,7 +1,7 @@
import React from 'react'
import PropTypes from 'prop-types'
import { StaticQuery, graphql } from 'gatsby'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'
const query = graphql`
query {

View File

@ -1,7 +1,7 @@
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { graphql } from 'gatsby'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'
import Layout from '../components/Layout'
import Content from '../components/Content'
import HeaderSection from '../components/HeaderSection'

View File

@ -1,7 +1,7 @@
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { graphql } from 'gatsby'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'
import Layout from '../../components/Layout'
import Content from '../../components/Content'

View File

@ -1,7 +1,7 @@
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { graphql } from 'gatsby'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'
import Layout from '../../components/Layout'
import Content from '../../components/Content'
import HeaderSection from '../../components/HeaderSection'