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

91 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",
"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}'",
2018-11-14 15:46:30 +01:00
"lint:md": "markdownlint './**/*.{md,markdown}' --ignore './{node_modules,external,public}/**/*'",
2018-11-12 12:39:11 +01:00
"lint:yml": "prettier '**/*.{yml,yaml}' --list-different",
"lint": "run-p --continue-on-error lint:js lint:css 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": {
2018-11-22 15:46:38 +01:00
"@oceanprotocol/art": "^2.1.0",
2018-11-20 17:24:15 +01:00
"axios": "^0.18.0",
2018-11-10 15:40:06 +01:00
"classnames": "^2.2.6",
2018-11-20 13:16:27 +01:00
"gatsby": "^2.0.52",
2018-11-09 21:39:56 +01:00
"gatsby-image": "^2.0.20",
"gatsby-plugin-catch-links": "^2.0.8",
2018-11-09 22:59:22 +01:00
"gatsby-plugin-google-analytics": "^2.0.7",
2018-11-15 14:30:11 +01:00
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-offline": "^2.0.15",
"gatsby-plugin-react-helmet": "^3.0.2",
2018-11-09 21:39:56 +01:00
"gatsby-plugin-sass": "^2.0.4",
2018-11-07 17:29:39 +01:00
"gatsby-plugin-sharp": "^2.0.12",
2018-11-09 22:59:22 +01:00
"gatsby-plugin-sitemap": "^2.0.2",
2018-11-20 13:16:27 +01:00
"gatsby-plugin-svgr": "^2.0.1",
2018-11-09 21:39:56 +01:00
"gatsby-remark-autolink-headers": "^2.0.11",
2018-11-11 01:32:05 +01:00
"gatsby-remark-component": "^1.1.3",
"gatsby-remark-copy-linked-files": "^2.0.6",
"gatsby-remark-embed-video": "^1.4.0",
2018-11-12 20:21:12 +01:00
"gatsby-remark-github": "^1.0.1",
2018-11-22 13:23:25 +01:00
"gatsby-remark-images": "^3.0.0",
"gatsby-remark-prismjs": "^3.0.3",
"gatsby-remark-responsive-iframe": "^2.0.6",
2018-11-08 13:21:39 +01:00
"gatsby-remark-smartypants": "^2.0.6",
2018-11-09 21:39:56 +01:00
"gatsby-source-filesystem": "^2.0.8",
"gatsby-source-graphql": "^2.0.6",
2018-11-09 21:39:56 +01:00
"gatsby-transformer-remark": "^2.1.12",
2018-11-07 17:29:39 +01:00
"gatsby-transformer-sharp": "^2.1.8",
2018-11-09 21:39:56 +01:00
"gatsby-transformer-yaml": "^2.1.5",
2018-11-11 02:26:27 +01:00
"giphy-js-sdk-core": "^1.0.6",
"intersection-observer": "^0.5.1",
"node-sass": "^4.10.0",
"prismjs": "^1.15.0",
2018-11-15 14:30:11 +01:00
"react": "^16.6.3",
"react-dom": "^16.6.3",
2018-11-11 01:32:05 +01:00
"react-helmet": "^5.2.0",
2018-11-20 13:16:27 +01:00
"rehype-react": "^3.1.0",
"remark": "^10.0.1",
"remark-react": "^5.0.0"
2018-11-07 12:24:53 +01:00
},
"devDependencies": {
2018-11-15 14:30:11 +01:00
"@svgr/webpack": "^4.0.3",
"dotenv": "^6.1.0",
2018-11-09 21:39:56 +01:00
"eslint": "^5.9.0",
2018-11-07 12:24:53 +01:00
"eslint-config-oceanprotocol": "^1.3.0",
2018-11-12 13:35:48 +01:00
"eslint-config-prettier": "^3.3.0",
2018-11-07 12:24:53 +01:00
"eslint-plugin-prettier": "^3.0.0",
2018-11-12 11:37:37 +01:00
"markdownlint-cli": "^0.13.0",
2018-11-10 15:04:16 +01:00
"npm-run-all": "^4.1.3",
2018-11-12 13:35:48 +01:00
"prettier": "^1.15.2",
2018-11-10 15:04:16 +01:00
"prettier-stylelint": "^0.4.2",
2018-11-12 11:37:37 +01:00
"stylelint": "^9.8.0",
2018-11-10 15:04:16 +01:00
"stylelint-config-bigchaindb": "^1.2.1",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0"
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"
]
}