Skip to content

Commit

Permalink
Use semver prefix
Browse files Browse the repository at this point in the history
Makes it easier to upgrade dependencies while still locking versions.
  • Loading branch information
nickserv committed Jan 5, 2023
1 parent 15b02a3 commit 0547adc
Show file tree
Hide file tree
Showing 3 changed files with 1,487 additions and 495 deletions.
1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

68 changes: 34 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,44 +21,44 @@
"test": "yarn format:check && yarn lint && yarn test-only"
},
"dependencies": {
"classnames": "2.2.6",
"prettier": "2.2.1",
"prop-types": "15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "6.15.1"
"classnames": "^2.2.6",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.1"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/preset-react": "7.12.10",
"@svgr/webpack": "5.5.0",
"archiver": "5.2.0",
"babel-loader": "8.2.2",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "7.0.0",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@svgr/webpack": "^5.5.0",
"archiver": "^5.2.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "5.0.1",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"fs-extra": "9.1.0",
"html-webpack-plugin": "4.5.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"merge-json-webpack-plugin": "5.0.3",
"react-devtools": "4.10.1",
"sass": "1.32.6",
"sass-loader": "10.1.1",
"style-loader": "2.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"merge-json-webpack-plugin": "^5.0.3",
"react-devtools": "^4.10.1",
"sass": "^1.32.6",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"web-ext": "^5.5.0",
"webextension-polyfill": "0.7.0",
"webpack": "5.19.0",
"webpack-cli": "4.4.0"
"webextension-polyfill": "^0.7.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"lint-staged": {
"*.{js,md,css,scss,html,json,yml}": [
Expand Down
Loading

0 comments on commit 0547adc

Please sign in to comment.