Skip to content

Commit 2a89f80

Browse files
committed
Upgrade all deps
1 parent 52a73bd commit 2a89f80

File tree

5 files changed

+1305
-1202
lines changed

5 files changed

+1305
-1202
lines changed

.eslintrc.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ module.exports = {
1313
},
1414
ecmaVersion: 12,
1515
sourceType: 'module',
16+
"babelOptions": {
17+
"presets": ["@babel/preset-react"]
18+
},
1619
},
17-
plugins: [
18-
'react',
19-
],
2020
rules: {
2121
},
2222
}

package.json

+17-13
Original file line numberDiff line numberDiff line change
@@ -8,44 +8,48 @@
88
"lint": "yarn eslint 'packages/*/src/**.js'",
99
"test": "yarn lerna run test",
1010
"prebuild": "git clean -fdx packages -e packages/*/node_modules",
11-
"build": "yarn lerna bootstrap && yarn lerna run build",
11+
"build": "yarn && yarn lerna run build",
1212
"build:changelog": "yarn lerna run build:changelog",
1313
"release:local": "yarn build && yarn lerna run pack",
1414
"release:npm": "yarn build && yarn lerna publish"
1515
},
1616
"devDependencies": {
17-
"@babel/core": "^7.22.9",
17+
"@babel/core": "^7.22.20",
18+
"@babel/eslint-parser": "^7.22.15",
1819
"@babel/plugin-proposal-class-properties": "^7.18.6",
19-
"@babel/preset-env": "^7.22.9",
20-
"@babel/preset-react": "^7.22.5",
21-
"@babel/register": "^7.22.5",
20+
"@babel/preset-env": "^7.22.20",
21+
"@babel/preset-react": "^7.22.15",
22+
"@babel/register": "^7.22.15",
2223
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
2324
"auto-changelog": "^2.4.0",
2425
"babel-eslint": "^10.1.0",
2526
"babel-loader": "^9.1.3",
2627
"bdd-lazy-var": "^2.6.1",
27-
"chai": "^4.3.7",
28+
"chai": "^4.3.8",
2829
"chai-as-promised": "^7.1.1",
2930
"chai-enzyme": "^1.0.0-beta.1",
3031
"css-loader": "^6.8.1",
3132
"enzyme": "^3.11.0",
32-
"eslint": "^8.46.0",
33-
"eslint-config-nicenice": "^4.0.1",
33+
"eslint": "^8.49.0",
34+
"eslint-config-nicenice": "^4.1.1",
35+
"eslint-config-prettier": "^9.0.0",
3436
"eslint-config-standard": "^17.1.0",
3537
"eslint-config-standard-jsx": "^11.0.0",
36-
"eslint-plugin-import": "^2.28.0",
38+
"eslint-plugin-import": "^2.28.1",
3739
"eslint-plugin-jsx-a11y": "^6.7.1",
3840
"eslint-plugin-mocha": "^10.1.0",
41+
"eslint-plugin-n": "^16.1.0",
3942
"eslint-plugin-no-only-tests": "^3.1.0",
40-
"eslint-plugin-node": "^11.1.0",
43+
"eslint-plugin-prettier": "^5.0.0",
4144
"eslint-plugin-promise": "^6.1.1",
42-
"eslint-plugin-react": "^7.33.1",
45+
"eslint-plugin-react": "^7.33.2",
4346
"eslint-plugin-react-hooks": "^4.6.0",
47+
"eslint-plugin-svg-jsx": "^1.2.2",
4448
"jsdom": "^22.1.0",
45-
"lerna": "^7.1.4",
49+
"lerna": "^7.3.0",
4650
"mini-css-extract-plugin": "^2.7.6",
4751
"mocha": "^10.2.0",
48-
"sinon": "^15.2.0",
52+
"sinon": "^16.0.0",
4953
"sinon-chai": "^3.7.0",
5054
"style-loader": "^3.3.3",
5155
"webpack": "^5.88.2",

packages/anvil-embed-frame/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
"workflow"
3636
],
3737
"devDependencies": {
38-
"@types/react": "^18.0.21",
38+
"@types/react": "^18.2.22",
3939
"prop-types": "^15.8.1",
40-
"react": "^16.0.0",
41-
"react-dom": "^16.0.0",
42-
"typescript": "^4.8.4"
40+
"react": "^18.2.0",
41+
"react-dom": "^18.2.0",
42+
"typescript": "^5.2.2"
4343
},
4444
"peerDependencies": {
4545
"prop-types": "^15.6.0",

packages/react-signature-modal/package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,29 @@
3333
"modal"
3434
],
3535
"devDependencies": {
36-
"@babel/core": "^7.17.8",
36+
"@babel/core": "^7.22.20",
3737
"@babel/plugin-proposal-class-properties": "^7.16.7",
38-
"@babel/preset-env": "^7.16.11",
39-
"@babel/preset-react": "^7.16.7",
40-
"@babel/register": "^7.17.7",
41-
"@types/react": "^18.0.5",
42-
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
38+
"@babel/preset-env": "^7.22.20",
39+
"@babel/preset-react": "^7.22.15",
40+
"@babel/register": "^7.22.15",
41+
"@types/react": "^18.2.22",
42+
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
4343
"auto-changelog": "^2.4.0",
44-
"babel-loader": "^8.2.4",
45-
"chai": "^4.3.6",
46-
"eslint-plugin-import": "^2.25.4",
44+
"babel-loader": "^9.1.3",
45+
"chai": "^4.3.8",
46+
"eslint-plugin-import": "^2.28.1",
4747
"eslint-plugin-jsx-a11y": "^6.5.1",
48-
"eslint-plugin-react": "^7.29.4",
48+
"eslint-plugin-react": "^7.33.2",
4949
"eslint-plugin-react-hooks": "^4.4.0",
50-
"jsdom": "^18.0.0",
51-
"mocha": "^9.2.2",
50+
"jsdom": "^22.1.0",
51+
"mocha": "^10.2.0",
5252
"prop-types": "^15.8.1",
53-
"react": "^16.0.0",
54-
"react-dom": "^16.0.0",
53+
"react": "^18.2.0",
54+
"react-dom": "^18.2.0",
5555
"react-modal": "^3.14.4",
56-
"typescript": "^4.6.3",
56+
"typescript": "^5.2.2",
5757
"webpack": "^5.70.0",
58-
"webpack-cli": "^4.9.2"
58+
"webpack-cli": "^5.1.4"
5959
},
6060
"peerDependencies": {
6161
"prop-types": "^15.6.0",

0 commit comments

Comments
 (0)