Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Set v0.7.0 (#141)
Browse files Browse the repository at this point in the history
* Bump dependencies:
 - Babel
 - Storybook
 - Eslint and prettier
  • Loading branch information
Daniel Sanchez authored Jul 22, 2021
1 parent f7b8acb commit c9258bb
Show file tree
Hide file tree
Showing 4 changed files with 1,601 additions and 3,124 deletions.
7 changes: 6 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"prettier",
"plugin:prettier/recommended"
],
"plugins": ["react-hooks"],
Expand All @@ -18,5 +18,10 @@
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/prop-types": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}
54 changes: 24 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gnosis.pm/safe-react-components",
"version": "0.6.0",
"version": "0.7.0",
"description": "Gnosis UI components",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -28,48 +28,45 @@
"react-media": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.14.0",
"@babel/preset-typescript": "^7.14.0",
"@material-ui/core": "^4.11.2",
"@storybook/addon-actions": "^6.1.0",
"@storybook/addon-docs": "^6.1.0",
"@storybook/addon-links": "^6.1.0",
"@storybook/addon-storyshots": "^6.2.7",
"@storybook/addons": "^6.1.0",
"@storybook/react": "^6.1.0",
"@storybook/addon-actions": "^6.3.0",
"@storybook/addon-docs": "^6.3.0",
"@storybook/addon-links": "^6.3.0",
"@storybook/addon-storyshots": "^6.3.0",
"@storybook/addons": "^6.3.0",
"@storybook/react": "^6.3.0",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.2.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.0",
"@types/material-ui": "^0.21.8",
"@types/material-ui": "^0.21.9",
"@types/node": "^14.14.0",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.3.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"ethereum-blockies-base64": "^1.0.2",
"file-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.4",
"prettier": "^2.1.0",
"react": "^16.13.0",
"jest-styled-components": "^7.0.5",
"prettier": "^2.3.2",
"react": "^16.14.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"styled-components": "^5.2.1",
"typescript": "^4.0.5",
Expand All @@ -78,9 +75,6 @@
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^2.5.2"
},
"resolutions": {
"@babel/core": "^7.12.0"
},
"peerDependencies": {
"@material-ui/core": "4.X.X",
"react": "16.x.x || 17.x.x",
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
"noEmit": true,
"jsx": "react"
},
"include": ["src"]
"include": ["src"],
"exclude": [
"node_modules"
]
}
Loading

0 comments on commit c9258bb

Please sign in to comment.