1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-06-26 03:06:27 +02:00
docs/package.json

89 lines
3.0 KiB
JSON
Raw Normal View History

2018-11-07 12:24:53 +01:00
{
"name": "@oceanprotocol/docs",
"description": "One site to rule all docs",
"version": "0.0.1",
"author": "Ocean Protocol <devops@oceanprotocol.com>",
2018-11-12 12:39:11 +01:00
"license": "Apache-2.0",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
2018-11-12 12:39:11 +01:00
"ssr": "npm run build && serve -s public/",
"format": "prettier --ignore-path .gitignore './**/*.{css,scss,yml,js,jsx,ts,tsx,json}' --write",
2018-11-12 12:39:11 +01:00
"lint:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore --ext .js,.jsx .",
"lint:md": "markdownlint './**/*.{md,markdown}' --ignore './{node_modules,external,public,.cache}/**/*'",
2018-11-12 12:39:11 +01:00
"lint:yml": "prettier '**/*.{yml,yaml}' --list-different",
"lint": "run-p --continue-on-error lint:js lint:md lint:yml",
2018-11-16 11:12:28 +01:00
"test": "npm run lint",
"deploy": "./scripts/deploy.sh"
2018-11-12 12:39:11 +01:00
},
2018-11-07 12:24:53 +01:00
"dependencies": {
"@oceanprotocol/art": "^3.0.0",
2020-08-31 09:53:43 +02:00
"axios": "^0.20.0",
2018-11-10 15:40:06 +01:00
"classnames": "^2.2.6",
2020-08-31 09:53:43 +02:00
"gatsby": "^2.24.52",
"gatsby-image": "^2.4.16",
2020-07-27 11:22:27 +02:00
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-plugin-google-analytics": "^2.3.13",
2020-08-31 09:53:43 +02:00
"gatsby-plugin-manifest": "^2.4.26",
"gatsby-plugin-offline": "^3.2.26",
2020-07-27 11:22:27 +02:00
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sass": "^2.3.12",
2020-08-31 09:53:43 +02:00
"gatsby-plugin-sharp": "^2.6.30",
"gatsby-plugin-sitemap": "^2.4.12",
2019-03-21 19:04:04 +01:00
"gatsby-plugin-svgr": "^2.0.2",
2019-12-10 22:07:58 +01:00
"gatsby-plugin-webpack-size": "^1.0.0",
2020-07-27 11:22:27 +02:00
"gatsby-remark-autolink-headers": "^2.3.11",
2019-07-16 16:17:34 +02:00
"gatsby-remark-code-titles": "^1.1.0",
2018-11-11 01:32:05 +01:00
"gatsby-remark-component": "^1.1.3",
2020-08-31 09:53:43 +02:00
"gatsby-remark-copy-linked-files": "^2.3.12",
"gatsby-remark-embed-video": "^3.0.10",
2019-02-06 13:34:52 +01:00
"gatsby-remark-github": "^2.0.0",
2020-08-31 09:53:43 +02:00
"gatsby-remark-images": "^3.3.28",
"gatsby-remark-responsive-iframe": "^2.4.12",
2020-07-27 11:22:27 +02:00
"gatsby-remark-smartypants": "^2.3.10",
"gatsby-remark-vscode": "^3.0.1",
2020-08-31 09:53:43 +02:00
"gatsby-source-filesystem": "^2.3.27",
"gatsby-source-graphql": "^2.7.2",
"gatsby-transformer-remark": "^2.8.31",
"gatsby-transformer-sharp": "^2.5.13",
2020-07-27 11:22:27 +02:00
"gatsby-transformer-xml": "^2.3.10",
"gatsby-transformer-yaml": "^2.4.10",
2018-11-11 02:26:27 +01:00
"giphy-js-sdk-core": "^1.0.6",
"intersection-observer": "^0.11.0",
2020-03-24 09:04:30 +01:00
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
2020-07-27 11:22:27 +02:00
"react-scrollspy": "^3.4.3",
"rehype-react": "^6.1.0",
"remark": "^12.0.1",
"remark-github-plugin": "^1.4.0",
"remark-react": "^7.0.1",
2019-11-06 12:43:33 +01:00
"shortid": "^2.2.15",
2020-07-27 11:22:27 +02:00
"slugify": "^1.4.5",
2019-03-27 14:03:53 +01:00
"smoothscroll-polyfill": "^0.4.4",
2020-07-27 11:22:27 +02:00
"swagger-client": "^3.10.12"
2018-11-07 12:24:53 +01:00
},
"devDependencies": {
"@svgr/webpack": "^5.4.0",
"dotenv": "^8.2.0",
2020-08-31 09:53:43 +02:00
"eslint": "^7.7.0",
2019-08-20 11:42:35 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"markdownlint-cli": "^0.23.2",
"node-sass": "^4.14.1",
2018-11-27 14:42:08 +01:00
"npm-run-all": "^4.1.5",
2020-08-31 09:53:43 +02:00
"prettier": "^2.1.1"
2018-11-07 12:24:53 +01:00
},
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/docs"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}