mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-02 08:20:22 +01:00
97 lines
3.4 KiB
JSON
97 lines
3.4 KiB
JSON
{
|
|
"name": "@oceanprotocol/docs",
|
|
"description": "One site to rule all docs",
|
|
"version": "0.0.1",
|
|
"author": "Ocean Protocol <devops@oceanprotocol.com>",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"build": "gatsby build",
|
|
"start": "gatsby develop",
|
|
"ssr": "npm run build && serve -s public/",
|
|
"format:js": "prettier --write '**/*.{js,jsx}'",
|
|
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
|
|
"format:md": "prettier --write '**/*.md'",
|
|
"format:yml": "prettier --write '**/*.{yml,yaml}'",
|
|
"format": "run-p format:js format:css format:md format:yml",
|
|
"lint:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .js,.jsx .",
|
|
"lint:css": "stylelint './src/**/*.{css,scss}'",
|
|
"lint:md": "markdownlint './**/*.{md,markdown}' --ignore './{node_modules,external,public,.cache}/**/*'",
|
|
"lint:yml": "prettier '**/*.{yml,yaml}' --list-different",
|
|
"lint": "run-p --continue-on-error lint:js lint:css lint:md lint:yml",
|
|
"test": "npm run lint",
|
|
"deploy": "./scripts/deploy.sh"
|
|
},
|
|
"dependencies": {
|
|
"@oceanprotocol/art": "^2.2.0",
|
|
"axios": "^0.19.0",
|
|
"classnames": "^2.2.6",
|
|
"gatsby": "^2.17.7",
|
|
"gatsby-image": "^2.2.30",
|
|
"gatsby-plugin-catch-links": "^2.1.15",
|
|
"gatsby-plugin-google-analytics": "^2.1.23",
|
|
"gatsby-plugin-manifest": "^2.2.26",
|
|
"gatsby-plugin-offline": "^3.0.17",
|
|
"gatsby-plugin-react-helmet": "^3.1.13",
|
|
"gatsby-plugin-sass": "^2.1.20",
|
|
"gatsby-plugin-sharp": "^2.2.36",
|
|
"gatsby-plugin-sitemap": "^2.2.19",
|
|
"gatsby-plugin-svgr": "^2.0.2",
|
|
"gatsby-remark-autolink-headers": "^2.1.16",
|
|
"gatsby-remark-code-titles": "^1.1.0",
|
|
"gatsby-remark-component": "^1.1.3",
|
|
"gatsby-remark-copy-linked-files": "^2.1.28",
|
|
"gatsby-remark-embed-video": "^2.0.1",
|
|
"gatsby-remark-github": "^2.0.0",
|
|
"gatsby-remark-images": "^3.1.28",
|
|
"gatsby-remark-responsive-iframe": "^2.2.25",
|
|
"gatsby-remark-smartypants": "^2.1.14",
|
|
"gatsby-remark-vscode": "^1.2.1",
|
|
"gatsby-source-filesystem": "^2.1.35",
|
|
"gatsby-source-graphql": "^2.1.21",
|
|
"gatsby-transformer-remark": "^2.6.32",
|
|
"gatsby-transformer-sharp": "^2.3.2",
|
|
"gatsby-transformer-xml": "^2.1.17",
|
|
"gatsby-transformer-yaml": "^2.2.15",
|
|
"giphy-js-sdk-core": "^1.0.6",
|
|
"intersection-observer": "^0.7.0",
|
|
"react": "^16.11.0",
|
|
"react-dom": "^16.11.0",
|
|
"react-helmet": "^5.2.1",
|
|
"react-scrollspy": "^3.4.0",
|
|
"rehype-react": "^4.0.1",
|
|
"remark": "^11.0.1",
|
|
"remark-github-plugin": "^1.3.1",
|
|
"remark-react": "^6.0.0",
|
|
"slugify": "^1.3.4",
|
|
"smoothscroll-polyfill": "^0.4.4",
|
|
"swagger-client": "^3.9.5"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/webpack": "^4.3.3",
|
|
"dotenv": "^8.2.0",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-oceanprotocol": "^1.5.0",
|
|
"eslint-config-prettier": "^6.5.0",
|
|
"eslint-plugin-prettier": "^3.1.1",
|
|
"markdownlint-cli": "^0.19.0",
|
|
"node-sass": "^4.13.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^1.18.2",
|
|
"prettier-stylelint": "^0.4.2",
|
|
"stylelint": "^11.1.1",
|
|
"stylelint-config-bigchaindb": "^1.2.2",
|
|
"stylelint-config-css-modules": "^2.0.0",
|
|
"stylelint-config-standard": "^19.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oceanprotocol/docs"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
]
|
|
}
|