docs/package.json

92 lines
3.1 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 .",
2022-02-24 20:05:50 +01:00
"lint:md": "markdownlint './**/*.{md,markdown}' --ignore './{node_modules,external,public,.cache,markdowns,read-the-docs}/**/*'",
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",
"test": "npm run lint"
2018-11-12 12:39:11 +01:00
},
2018-11-07 12:24:53 +01:00
"dependencies": {
"@oceanprotocol/art": "^3.2.0",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"gatsby": "^2.32.13",
"gatsby-image": "^3.11.0",
"gatsby-plugin-catch-links": "^2.10.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.2",
2021-02-23 16:19:31 +01:00
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sass": "^3.2.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-plugin-sitemap": "^2.12.0",
2021-01-13 09:07:00 +01:00
"gatsby-plugin-svgr": "^2.1.0",
"gatsby-plugin-webpack-size": "^2.0.1",
"gatsby-remark-autolink-headers": "^2.11.0",
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",
"gatsby-remark-embed-video": "^3.1.1",
2019-02-06 13:34:52 +01:00
"gatsby-remark-github": "^2.0.0",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-responsive-iframe": "^2.11.0",
2021-02-23 16:19:31 +01:00
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-remark-vscode": "^3.3.1",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-source-git": "^1.1.0",
2021-02-23 16:19:31 +01:00
"gatsby-source-graphql": "^2.14.0",
"gatsby-transformer-remark": "^2.16.1",
2021-09-13 00:50:18 +02:00
"gatsby-transformer-remark-plaintext": "^1.0.3",
"gatsby-transformer-sharp": "^2.12.1",
"gatsby-transformer-xml": "^2.10.0",
2021-02-23 16:19:31 +01:00
"gatsby-transformer-yaml": "^2.11.0",
2018-11-11 02:26:27 +01:00
"giphy-js-sdk-core": "^1.0.6",
"intersection-observer": "^0.12.0",
2021-09-08 19:51:51 +02:00
"js-search": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
2021-08-07 17:14:31 +02:00
"react-json-view": "^1.21.3",
2020-07-27 11:22:27 +02:00
"react-scrollspy": "^3.4.3",
"rehype-react": "^7.0.4",
2020-10-20 22:25:15 +02:00
"remark": "^13.0.0",
"remark-github-plugin": "^1.4.0",
2020-10-20 22:25:15 +02:00
"remark-react": "^8.0.0",
"shortid": "^2.2.16",
"slugify": "^1.6.5",
2019-03-27 14:03:53 +01:00
"smoothscroll-polyfill": "^0.4.4",
"swagger-client": "^3.18.4"
2018-11-07 12:24:53 +01:00
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
2019-08-20 11:42:35 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-format-staged": "^2.1.3",
"husky": "^7.0.4",
2022-03-30 12:26:26 +02:00
"markdownlint-cli": "^0.31.1",
2021-01-13 09:07:00 +01:00
"node-sass": "^5.0.0",
2018-11-27 14:42:08 +01:00
"npm-run-all": "^4.1.5",
2022-03-30 12:26:26 +02:00
"prettier": "^2.6.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"
]
2022-02-24 20:15:01 +01:00
}