From 41d54bbdc4771745e1e51ab72d2d9948f31fbbdf Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Thu, 9 May 2024 17:26:27 +0200 Subject: [PATCH] chore: switch package.json to major-version pinning (#87) No longer define what minor (or patch) version we are compatible with, as that shouldn't be relevant. --- package.json | 88 ++++++++++++++++++++++++++-------------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/package.json b/package.json index 0b32875..d94f8ff 100644 --- a/package.json +++ b/package.json @@ -19,54 +19,54 @@ "author": "EVEShipFit Team ", "license": "MIT", "dependencies": { - "clsx": "^2.0.0", - "jwt-decode": "^4.0.0" + "clsx": "^2", + "jwt-decode": "^4" }, "devDependencies": { - "@babel/preset-env": "^7.23.3", - "@babel/preset-react": "^7.23.3", - "@babel/preset-typescript": "^7.23.3", - "@rollup/plugin-commonjs": "^25.0.7", - "@rollup/plugin-node-resolve": "^15.2.3", - "@rollup/plugin-terser": "^0.4.4", - "@storybook/addon-essentials": "^7.5.3", - "@storybook/addon-interactions": "^7.5.3", - "@storybook/addon-links": "^7.5.3", - "@storybook/blocks": "^7.5.1", - "@storybook/react": "^7.5.1", - "@storybook/react-webpack5": "^7.5.3", - "@storybook/testing-library": "^0.2.2", - "@types/react": "^18.2.37", - "@types/react-dom": "^18.2.18", - "@typescript-eslint/eslint-plugin": "^7.1.0", - "@typescript-eslint/parser": "^7.1.0", - "eslint": "^8.57.0", - "eslint-config-airbnb": "19.0.4", - "eslint-config-airbnb-typescript": "^18.0.0", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-jsx-a11y": "^6.8.0", - "eslint-plugin-prettier": "^5.1.3", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-storybook": "^0.8.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "rollup": "^4.4.0", - "rollup-plugin-dts": "^6.1.0", - "rollup-plugin-esbuild": "^6.1.0", - "rollup-plugin-node-externals": "^7.0.1", - "rollup-plugin-postcss": "^4.0.2", - "storybook": "^7.5.3", - "tslib": "^2.6.2", - "typescript": "^5.2.2", - "typescript-plugin-css-modules": "^5.0.2" + "@babel/preset-env": "^7", + "@babel/preset-react": "^7", + "@babel/preset-typescript": "^7", + "@rollup/plugin-commonjs": "^25", + "@rollup/plugin-node-resolve": "^15", + "@rollup/plugin-terser": "^0", + "@storybook/addon-essentials": "^7", + "@storybook/addon-interactions": "^7", + "@storybook/addon-links": "^7", + "@storybook/blocks": "^7", + "@storybook/react": "^7", + "@storybook/react-webpack5": "^7", + "@storybook/testing-library": "^0", + "@types/react": "^18", + "@types/react-dom": "^18", + "@typescript-eslint/eslint-plugin": "^7", + "@typescript-eslint/parser": "^7", + "eslint": "^8", + "eslint-config-airbnb": "19", + "eslint-config-airbnb-typescript": "^18", + "eslint-config-prettier": "^9", + "eslint-plugin-import": "^2", + "eslint-plugin-jsx-a11y": "^6", + "eslint-plugin-prettier": "^5", + "eslint-plugin-react": "^7", + "eslint-plugin-react-hooks": "^4", + "eslint-plugin-storybook": "^0", + "react": "^18", + "react-dom": "^18", + "rollup": "^4", + "rollup-plugin-dts": "^6", + "rollup-plugin-esbuild": "^6", + "rollup-plugin-node-externals": "^7", + "rollup-plugin-postcss": "^4", + "storybook": "^7", + "tslib": "^2", + "typescript": "^5", + "typescript-plugin-css-modules": "^5" }, "peerDependencies": { - "@eveshipfit/data": "^9.1.0-20240227", - "@eveshipfit/dogma-engine": "^3.2.1", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "@eveshipfit/data": "^9", + "@eveshipfit/dogma-engine": "^3", + "react": "^18", + "react-dom": "^18" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js",