@socprime/master-configuration 1.1.0 → 1.1.2

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.
Files changed (2) hide show
  1. package/.eslintrc.js +4 -2
  2. package/package.json +14 -12
package/.eslintrc.js CHANGED
@@ -16,6 +16,8 @@ const javascriptRules = {
16
16
  'no-unused-vars': 1,
17
17
  'no-undef': 0,
18
18
  'no-shadow': 0,
19
+ 'no-empty-function': 1,
20
+ 'no-empty': 1,
19
21
  'no-use-before-define': 0,
20
22
  'global-require': 1,
21
23
  'import/order': 0,
@@ -98,13 +100,13 @@ const typescript = [
98
100
  rules: {
99
101
  ...javascriptRules,
100
102
  indent: 0,
101
- '@typescript-eslint/indent': ['error', 2],
102
103
  '@typescript-eslint/no-shadow': 1,
103
104
  '@typescript-eslint/no-empty-function': 0,
104
105
  '@typescript-eslint/ban-ts-comment': 0,
105
106
  '@typescript-eslint/no-explicit-any': 1,
106
107
  '@typescript-eslint/no-var-requires': 1,
107
- '@typescript-eslint/ban-types': 1,
108
+ '@typescript-eslint/no-require-imports': 1,
109
+ '@typescript-eslint/no-unused-vars': 1,
108
110
  'react-hooks/exhaustive-deps': 1,
109
111
  },
110
112
  plugins: ['@typescript-eslint'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@socprime/master-configuration",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
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
  }