@socprime/master-configuration 1.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintrc.js CHANGED
@@ -98,13 +98,11 @@ const typescript = [
98
98
  rules: {
99
99
  ...javascriptRules,
100
100
  indent: 0,
101
- '@typescript-eslint/indent': ['error', 2],
102
101
  '@typescript-eslint/no-shadow': 1,
103
102
  '@typescript-eslint/no-empty-function': 0,
104
103
  '@typescript-eslint/ban-ts-comment': 0,
105
104
  '@typescript-eslint/no-explicit-any': 1,
106
105
  '@typescript-eslint/no-var-requires': 1,
107
- '@typescript-eslint/ban-types': 1,
108
106
  'react-hooks/exhaustive-deps': 1,
109
107
  },
110
108
  plugins: ['@typescript-eslint'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socprime/master-configuration",
3
- "version": "1.0.9",
3
+ "version": "1.1.1",
4
4
  "author": "Pavel Nedzelskiy <pavlo.nedzelskyi@socprime.com>",
5
5
  "license": "ISC",
6
6
  "scripts": {
@@ -8,6 +8,9 @@
8
8
  "test": "npx jest",
9
9
  "eslint": "npx eslint --quiet ."
10
10
  },
11
+ "engines": {
12
+ "node": ">=17"
13
+ },
11
14
  "peerDependencies": {
12
15
  "@babel/core": "^7.23.0",
13
16
  "@babel/eslint-parser": "^7.22.15",
@@ -17,15 +20,14 @@
17
20
  "@html-eslint/eslint-plugin": "^0.19.1",
18
21
  "@html-eslint/parser": "^0.19.1",
19
22
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
20
- "@typescript-eslint/eslint-plugin": "^6.7.4",
21
- "@typescript-eslint/parser": "^6.7.4",
23
+ "@typescript-eslint/eslint-plugin": "^8.9.0",
24
+ "@typescript-eslint/parser": "^8.9.0",
22
25
  "eslint": "^8.50.0",
23
26
  "eslint-config-airbnb": "^19.0.4",
24
27
  "eslint-plugin-html": "^7.1.0",
25
- "eslint-plugin-import": "^2.28.1",
26
- "eslint-plugin-jsonc": "^2.9.0",
27
- "eslint-plugin-local-rules": "^2.0.0",
28
- "eslint-plugin-react-hooks": "^4.6.0",
28
+ "eslint-plugin-import": "^2.31.0",
29
+ "eslint-plugin-jsonc": "^2.16.0",
30
+ "eslint-plugin-react-hooks": "^5.0.0",
29
31
  "mini-css-extract-plugin": "^2.7.6",
30
32
  "postcss": "^8.4.31",
31
33
  "postcss-loader": "^7.3.3",
@@ -35,11 +37,11 @@
35
37
  "stylelint": "^15.10.3",
36
38
  "stylelint-config-sass-guidelines": "^10.0.0",
37
39
  "stylelint-scss": "^5.2.1",
38
- "terser-webpack-plugin": "^5.3.9",
39
- "ts-loader": "^9.4.4",
40
- "ts-node": "^10.9.1",
41
- "typescript": "^5.2.2",
42
- "webpack": "^5.88.2",
40
+ "terser-webpack-plugin": "^5.3.10",
41
+ "ts-loader": "^9.5.1",
42
+ "ts-node": "^10.9.2",
43
+ "typescript": "^5.5.4",
44
+ "webpack": "^5.95.0",
43
45
  "webpack-cli": "^5.1.4"
44
46
  }
45
47
  }
package/tsconfig.json CHANGED
@@ -13,8 +13,7 @@
13
13
  "ES2018",
14
14
  "ES2020",
15
15
  "ES2021",
16
- "ES2022",
17
- "ES2023"
16
+ "ES2022"
18
17
  ],
19
18
  "module": "ESNext",
20
19
  "moduleResolution": "Node",