[Package.json][s]: Add react to peer dependency

This commit is contained in:
Rising Odegua
2021-05-24 09:19:00 +01:00
parent 9eeb90dd59
commit 4f9436b21c

View File

@@ -4,56 +4,49 @@
"author": "Datopian", "author": "Datopian",
"license": "MIT", "license": "MIT",
"version": "0.1.0", "version": "0.1.0",
"bin": { "main": "dist/index.cjs.js",
"portal": "./bin/portal.js" "module": "dist/index.esm.js",
}, "source": "src/index.js",
"scripts": { "scripts": {
"dev": "next dev", "build": "rollup -c",
"build": "next build", "build-watch": "rollup -c -w",
"start": "next start", "test": "jest --coverage"
"export": "yarn build && next export",
"test": "jest --coverage"
}, },
"dependencies": { "dependencies": {
"@material-ui/core": "^4.11.3", "@material-ui/core": "^4.11.3",
"@material-ui/data-grid": "^4.0.0-alpha.20", "@material-ui/data-grid": "^4.0.0-alpha.20",
"@tailwindcss/typography": "^0.4.0", "filesize": "^6.3.0",
"autoprefixer": "^10.0.4", "html-react-parser": "^1.2.6",
"chalk": "^4.1.0", "next": "latest",
"commander": "^6.2.0", "plotly.js-basic-dist": "^1.58.4",
"cpy": "^8.1.1", "postcss": "^8.1.10",
"cross-spawn": "^7.0.3", "react-plotly.js": "^2.5.1",
"datapackage-render": "git+https://github.com/frictionlessdata/datapackage-render-js.git", "react-scripts": "3.4.3",
"figlet": "^1.5.0", "tailwindcss": "^2.0.2"
"filesize": "^6.1.0", },
"frictionless.js": "^0.13.4", "peerDependencies": {
"listr": "^0.14.3", "react": "^17.0.1",
"next": "latest", "react-dom": "^17.0.1"
"open": "^8.0.2",
"ora": "^5.1.0",
"plotly.js-basic-dist": "^1.58.4",
"portal": "https://github.com/datopian/portal.js",
"postcss": "^8.2.10",
"prompts": "^2.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-plotly.js": "^2.5.1",
"react-table": "^7.6.3",
"react-vega": "^7.4.2",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"tailwindcss": "^2.0.2",
"vega": "^5.19.1",
"vega-lite": "^5.0.0"
}, },
"devDependencies": { "devDependencies": {
"@testing-library/dom": "^7.29.6", "@babel/cli": "^7.13.16",
"@testing-library/jest-dom": "^5.11.9", "@babel/core": "^7.13.16",
"@testing-library/react": "^11.2.5", "@babel/plugin-proposal-class-properties": "^7.13.0",
"babel-jest": "^26.6.3", "@babel/preset-env": "^7.13.15",
"identity-obj-proxy": "^3.0.0", "@babel/preset-react": "^7.13.13",
"jest": "^26.6.3", "@rollup/plugin-babel": "^5.3.0",
"jest-canvas-mock": "^2.3.1", "@testing-library/dom": "^7.29.6",
"jest-dom": "^4.0.0" "@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"babel-jest": "^26.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-dom": "^4.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.45.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4"
} }
} }