update dependencies

This commit is contained in:
Amruth Pillai 2021-06-22 16:56:29 +05:30
parent c6986b5048
commit c908f450f9
4 changed files with 2098 additions and 1438 deletions

1
.husky/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
_

4
.husky/pre-commit Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx lint-staged

3472
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,12 +14,8 @@
"lint": "eslint .",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
@ -31,36 +27,35 @@
"dayjs": "^1.10.5",
"dotenv": "^10.0.0",
"downloadjs": "^1.4.7",
"firebase": "^8.6.5",
"firebase": "^8.6.8",
"formik": "^2.2.9",
"gatsby": "^3.7.0",
"gatsby-plugin-create-client-paths": "^3.7.0",
"gatsby": "^3.7.2",
"gatsby-plugin-create-client-paths": "^3.7.1",
"gatsby-plugin-firebase": "^0.2.0-beta.4",
"gatsby-plugin-image": "^1.7.0",
"gatsby-plugin-manifest": "^3.7.0",
"gatsby-plugin-image": "^1.7.1",
"gatsby-plugin-manifest": "^3.7.1",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-offline": "^4.7.0",
"gatsby-plugin-postcss": "^4.7.0",
"gatsby-plugin-react-helmet": "^4.7.0",
"gatsby-plugin-sharp": "^3.7.0",
"gatsby-plugin-sitemap": "^4.3.0",
"gatsby-plugin-offline": "^4.7.1",
"gatsby-plugin-postcss": "^4.7.1",
"gatsby-plugin-react-helmet": "^4.7.1",
"gatsby-plugin-sharp": "^3.7.1",
"gatsby-plugin-sitemap": "^4.3.1",
"gatsby-plugin-webfonts": "^2.1.0",
"gatsby-source-filesystem": "^3.7.0",
"gatsby-source-filesystem": "^3.7.1",
"gatsby-source-gravatar": "^1.0.1",
"gatsby-transformer-remark": "^4.4.0",
"gatsby-transformer-sharp": "^3.7.0",
"husky": "^6.0.0",
"i18next": "^20.3.1",
"gatsby-transformer-remark": "^4.4.1",
"gatsby-transformer-sharp": "^3.7.1",
"i18next": "^20.3.2",
"lodash": "^4.17.21",
"nanoevents": "^6.0.0",
"path-browserify": "^1.0.1",
"postcss": "^8.3.0",
"postcss": "^8.3.5",
"process": "^0.11.10",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.10.0",
"react-i18next": "^11.11.0",
"react-icons": "^4.2.0",
"react-markdown": "^6.0.2",
"react-scroll": "^1.8.2",
@ -70,11 +65,11 @@
"yup": "^0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"babel-jest": "^27.0.2",
"babel-preset-gatsby": "^1.7.0",
"eslint": "^7.28.0",
"babel-jest": "^27.0.5",
"babel-preset-gatsby": "^1.7.1",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
@ -85,13 +80,15 @@
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-webpack-plugin": "^2.5.4",
"gatsby-plugin-eslint": "^3.0.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.4",
"jest": "^27.0.5",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^11.0.0",
"prettier": "2.3.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"tailwindcss": "^2.1.4"
"tailwindcss": "^2.2.2"
},
"repository": {
"type": "git",
@ -99,5 +96,9 @@
},
"bugs": {
"url": "https://github.com/AmruthPillai/Reactive-Resume/issues"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix"
}
}