Skip to content

Commit 45e46c7

Browse files
committed
chore(npm): bump deps, upgrade tooling stack
1 parent 0af41df commit 45e46c7

File tree

7 files changed

+965
-780
lines changed

7 files changed

+965
-780
lines changed

.eslintrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prettierrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

babel.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @type {import('@babel/core').TransformOptions} */
22
module.exports = {
3-
presets: ["module:metro-react-native-babel-preset"],
3+
presets: ["module:@react-native/babel-preset"],
44
plugins: ["react-native-reanimated/plugin"],
55
};

eslint.config.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// @ts-check
2+
3+
import baseConfig from "@mgcrea/eslint-config-react-native";
4+
5+
const config = [
6+
...baseConfig,
7+
{
8+
languageOptions: {
9+
parserOptions: {
10+
project: true,
11+
tsconfigRootDir: import.meta.dirname,
12+
},
13+
},
14+
},
15+
];
16+
17+
export default config;

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,32 @@
3434
"react-native-reanimated": ">=3"
3535
},
3636
"devDependencies": {
37-
"@babel/cli": "^7.23.4",
38-
"@babel/core": "^7.23.3",
39-
"@babel/preset-env": "^7.23.3",
40-
"@babel/runtime": "^7.23.4",
41-
"@mgcrea/eslint-config-react-native": "^0.8.6",
37+
"@babel/cli": "^7.25.9",
38+
"@babel/core": "^7.26.0",
39+
"@babel/preset-env": "^7.26.0",
40+
"@babel/runtime": "^7.26.0",
41+
"@mgcrea/eslint-config-react-native": "^0.12.18",
4242
"@testing-library/jest-native": "^5.4.3",
43-
"@testing-library/react-native": "^12.4.0",
44-
"@tsconfig/react-native": "^3.0.2",
45-
"@types/jest": "^29.5.8",
46-
"@types/react": "^18.2.37",
47-
"@types/react-test-renderer": "^18.0.6",
43+
"@testing-library/react-native": "^12.8.1",
44+
"@tsconfig/react-native": "^3.0.5",
45+
"@types/jest": "^29.5.14",
46+
"@types/react": "^18.3.12",
47+
"@types/react-test-renderer": "^18.3.0",
4848
"babel-jest": "^29.7.0",
49-
"babel-plugin-module-resolver": "^5.0.0",
50-
"eslint": "^8.54.0",
49+
"babel-plugin-module-resolver": "^5.0.2",
50+
"eslint": "~9.14.0",
5151
"jest": "^29.7.0",
5252
"metro-react-native-babel-preset": "^0.77.0",
53-
"prettier": "^3.1.0",
54-
"prettier-plugin-organize-imports": "^3.2.4",
55-
"react": "^18.2.0",
56-
"react-native": "^0.72.7",
57-
"react-native-gesture-handler": "^2.13.4",
58-
"react-native-haptic-feedback": "^2.2.0",
59-
"react-native-reanimated": "3.5.4",
60-
"react-test-renderer": "^18.2.0",
61-
"tsc-alias": "^1.8.8",
62-
"tsup": "^8.0.0",
63-
"typescript": "^5.3.2"
53+
"prettier": "^3.3.3",
54+
"prettier-plugin-organize-imports": "^4.1.0",
55+
"react": "^18.3.1",
56+
"react-native": "^0.76.2",
57+
"react-native-gesture-handler": "^2.21.1",
58+
"react-native-haptic-feedback": "^2.3.3",
59+
"react-native-reanimated": "3.16.1",
60+
"react-test-renderer": "^18.3.1",
61+
"tsc-alias": "^1.8.10",
62+
"tsup": "^8.3.5",
63+
"typescript": "^5.6.3"
6464
}
6565
}

0 commit comments

Comments
 (0)