@elliemae/pui-cli 9.0.0-next.33 → 9.0.0-next.35

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/app.tsconfig.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "compilerOptions": {
3
3
  "lib": ["dom", "dom.iterable", "esnext"],
4
4
  "module": "esnext",
5
- "target": "es2020",
5
+ "target": "es2022",
6
6
  "allowJs": true,
7
7
  "allowSyntheticDefaultImports": true,
8
8
  "esModuleInterop": true,
@@ -33,11 +33,10 @@ const stylelintConfig = {
33
33
  "/node_modules/**/*",
34
34
  "/vendor/**/*"
35
35
  ],
36
- customSyntax: "@stylelint/postcss-css-in-js",
37
- // customSyntax: "postcss-styled-components", // '@stylelint/postcss-css-in-js' is deprecated, this may be a replacement?
38
36
  extends: [
39
37
  "stylelint-config-recommended",
40
38
  "stylelint-config-styled-components"
41
39
  ],
40
+ customSyntax: "postcss-styled-syntax",
42
41
  rules: { "selector-type-no-unknown": null, "function-no-unknown": null }
43
42
  };
@@ -36,7 +36,7 @@ var import_node_fs = __toESM(require("node:fs"), 1);
36
36
  var import_merge = __toESM(require("lodash/merge"), 1);
37
37
  const baseConfig = {
38
38
  esBuild: {
39
- target: "es2020"
39
+ target: "es2022"
40
40
  }
41
41
  };
42
42
  const getPUIConfig = () => {
@@ -6,6 +6,6 @@
6
6
  "tsx": true,
7
7
  "dynamicImport": true
8
8
  },
9
- "target": "es2020"
9
+ "target": "es2022"
10
10
  }
11
11
  }
@@ -35,16 +35,16 @@ module.exports = __toCommonJS(esbuild_exports);
35
35
  var import_node_path = __toESM(require("node:path"), 1);
36
36
  var import_node_url = require("node:url");
37
37
  var import_promises = require("node:fs/promises");
38
+ var import_browserslist_to_esbuild = __toESM(require("browserslist-to-esbuild"), 1);
38
39
  var import_fast_glob = __toESM(require("fast-glob"), 1);
39
40
  var import_esbuild = require("esbuild");
40
- var import_browserslist_to_esbuild = __toESM(require("browserslist-to-esbuild"), 1);
41
41
  var import_esbuild_plugin_lodash = __toESM(require("esbuild-plugin-lodash"), 1);
42
42
  const import_meta = {};
43
43
  const __dirname = import_node_path.default.dirname((0, import_node_url.fileURLToPath)(import_meta.url));
44
44
  const TARGETS = {
45
45
  browserslist: (0, import_browserslist_to_esbuild.default)(),
46
- web: "es2020",
47
- node: "node18"
46
+ web: "es2022",
47
+ node: "node20"
48
48
  };
49
49
  const ESBUILD_FORMAT = {
50
50
  CJS: "cjs",
@@ -220,9 +220,9 @@ const getCompressionPlugins = (isLibrary = false) => {
220
220
  ];
221
221
  const commonConfig = {
222
222
  test: /\.(js|css)$/,
223
- exclude: !isLibrary ? excludeList : [],
224
223
  // we are compressing all files since in aws cloudfront edge lambda, we don't want to whitelist files that are not compressed due to below limits
225
- minRatio: Infinity
224
+ minRatio: Infinity,
225
+ ...!isLibrary ? { exclude: excludeList } : {}
226
226
  };
227
227
  return [
228
228
  new import_compression_webpack_plugin.default({
@@ -101,7 +101,7 @@ const webpackFinal = (config, { configType }) => {
101
101
  ...(0, import_helpers.getAlias)(),
102
102
  ...(0, import_helpers.getLibraryAlias)(
103
103
  "@reduxjs/toolkit/query/react",
104
- "@reduxjs/toolkit/dist/query/react/rtk-query-react.esm.js"
104
+ "@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs"
105
105
  )
106
106
  };
107
107
  config.resolve.fallback = { ...config.resolve.fallback, crypto: false };
@@ -10,12 +10,11 @@ const stylelintConfig = {
10
10
  "/node_modules/**/*",
11
11
  "/vendor/**/*"
12
12
  ],
13
- customSyntax: "@stylelint/postcss-css-in-js",
14
- // customSyntax: "postcss-styled-components", // '@stylelint/postcss-css-in-js' is deprecated, this may be a replacement?
15
13
  extends: [
16
14
  "stylelint-config-recommended",
17
15
  "stylelint-config-styled-components"
18
16
  ],
17
+ customSyntax: "postcss-styled-syntax",
19
18
  rules: { "selector-type-no-unknown": null, "function-no-unknown": null }
20
19
  };
21
20
  export {
@@ -3,7 +3,7 @@ import fs from "node:fs";
3
3
  import { merge } from "lodash";
4
4
  const baseConfig = {
5
5
  esBuild: {
6
- target: "es2020"
6
+ target: "es2022"
7
7
  }
8
8
  };
9
9
  const getPUIConfig = () => {
@@ -6,6 +6,6 @@
6
6
  "tsx": true,
7
7
  "dynamicImport": true
8
8
  },
9
- "target": "es2020"
9
+ "target": "es2022"
10
10
  }
11
11
  }
@@ -1,15 +1,15 @@
1
1
  import path from "node:path";
2
2
  import { fileURLToPath } from "node:url";
3
3
  import { writeFile, copyFile, readFile, mkdir } from "node:fs/promises";
4
+ import browserslistToEsbuild from "browserslist-to-esbuild";
4
5
  import fg from "fast-glob";
5
6
  import { build } from "esbuild";
6
- import browserslistToEsbuild from "browserslist-to-esbuild";
7
7
  import lodashTransformer from "esbuild-plugin-lodash";
8
8
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
9
9
  const TARGETS = {
10
10
  browserslist: browserslistToEsbuild(),
11
- web: "es2020",
12
- node: "node18"
11
+ web: "es2022",
12
+ node: "node20"
13
13
  };
14
14
  const ESBUILD_FORMAT = {
15
15
  CJS: "cjs",
@@ -171,9 +171,9 @@ const getCompressionPlugins = (isLibrary = false) => {
171
171
  ];
172
172
  const commonConfig = {
173
173
  test: /\.(js|css)$/,
174
- exclude: !isLibrary ? excludeList : [],
175
174
  // we are compressing all files since in aws cloudfront edge lambda, we don't want to whitelist files that are not compressed due to below limits
176
- minRatio: Infinity
175
+ minRatio: Infinity,
176
+ ...!isLibrary ? { exclude: excludeList } : {}
177
177
  };
178
178
  return [
179
179
  new CompressionPlugin({
@@ -68,7 +68,7 @@ const webpackFinal = (config, { configType }) => {
68
68
  ...getAlias(),
69
69
  ...getLibraryAlias(
70
70
  "@reduxjs/toolkit/query/react",
71
- "@reduxjs/toolkit/dist/query/react/rtk-query-react.esm.js"
71
+ "@reduxjs/toolkit/dist/query/react/rtk-query-react.modern.mjs"
72
72
  )
73
73
  };
74
74
  config.resolve.fallback = { ...config.resolve.fallback, crypto: false };
@@ -1,8 +1,8 @@
1
1
  export namespace stylelintConfig {
2
2
  export let ignoreFiles: string[];
3
- export let customSyntax: string;
4
3
  let _extends: string[];
5
4
  export { _extends as extends };
5
+ export let customSyntax: string;
6
6
  export let rules: {
7
7
  'selector-type-no-unknown': null;
8
8
  'function-no-unknown': null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "9.0.0-next.33",
3
+ "version": "9.0.0-next.35",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -80,11 +80,11 @@
80
80
  "sonar56x": true
81
81
  },
82
82
  "dependencies": {
83
- "@axe-core/react": "~4.8.1",
84
- "@babel/cli": "~7.23.0",
85
- "@babel/core": "~7.23.3",
86
- "@babel/eslint-parser": "~7.23.3",
87
- "@babel/node": "~7.22.19",
83
+ "@axe-core/react": "~4.8.5",
84
+ "@babel/cli": "~7.23.9",
85
+ "@babel/core": "~7.23.9",
86
+ "@babel/eslint-parser": "~7.23.10",
87
+ "@babel/node": "~7.23.9",
88
88
  "@babel/plugin-proposal-class-properties": "~7.18.6",
89
89
  "@babel/plugin-proposal-export-default-from": "~7.23.3",
90
90
  "@babel/plugin-syntax-dynamic-import": "~7.8.3",
@@ -93,68 +93,68 @@
93
93
  "@babel/plugin-transform-react-constant-elements": "~7.23.3",
94
94
  "@babel/plugin-transform-react-inline-elements": "~7.23.3",
95
95
  "@babel/plugin-transform-react-jsx-source": "~7.23.3",
96
- "@babel/plugin-transform-runtime": "~7.23.3",
97
- "@babel/preset-env": "~7.23.3",
96
+ "@babel/plugin-transform-runtime": "~7.23.9",
97
+ "@babel/preset-env": "~7.23.9",
98
98
  "@babel/preset-react": "~7.23.3",
99
99
  "@babel/preset-typescript": "~7.23.3",
100
- "@babel/runtime": "~7.23.2",
101
- "@commitlint/cli": "~18.4.1",
102
- "@commitlint/config-conventional": "~18.4.0",
100
+ "@babel/runtime": "~7.23.9",
101
+ "@commitlint/cli": "~18.6.1",
102
+ "@commitlint/config-conventional": "~18.6.2",
103
103
  "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.8.0",
104
- "@faker-js/faker": "8.2.0",
105
- "@nx/workspace": "17.1.2",
104
+ "@faker-js/faker": "8.4.1",
105
+ "@nx/workspace": "18.0.4",
106
106
  "@pmmmwh/react-refresh-webpack-plugin": "~0.5.11",
107
107
  "@semantic-release/changelog": "~6.0.3",
108
108
  "@semantic-release/exec": "~6.0.3",
109
109
  "@semantic-release/git": "~10.0.1",
110
- "@storybook/addon-a11y": "~7.5.3",
111
- "@storybook/addon-essentials": "~7.5.3",
110
+ "@storybook/addon-a11y": "~7.6.15",
111
+ "@storybook/addon-essentials": "~7.6.15",
112
112
  "@storybook/addon-events": "~6.2.9",
113
- "@storybook/addon-interactions": "~7.5.3",
114
- "@storybook/addon-links": "~7.5.3",
115
- "@storybook/addon-storysource": "~7.5.3",
116
- "@storybook/blocks": "~7.5.3",
117
- "@storybook/builder-vite": "~7.5.3",
118
- "@storybook/builder-webpack5": "~7.5.3",
113
+ "@storybook/addon-interactions": "~7.6.15",
114
+ "@storybook/addon-links": "~7.6.15",
115
+ "@storybook/addon-storysource": "~7.6.15",
116
+ "@storybook/blocks": "~7.6.15",
117
+ "@storybook/builder-vite": "~7.6.15",
118
+ "@storybook/builder-webpack5": "~7.6.15",
119
119
  "@storybook/jest": "~0.2.3",
120
120
  "@storybook/manager-webpack5": "~6.5.16",
121
- "@storybook/react": "~7.5.3",
122
- "@storybook/react-vite": "~7.5.3",
123
- "@storybook/react-webpack5": "~7.5.3",
121
+ "@storybook/react": "~7.6.15",
122
+ "@storybook/react-vite": "~7.6.15",
123
+ "@storybook/react-webpack5": "~7.6.15",
124
124
  "@storybook/testing-library": "~0.2.2",
125
- "@storybook/theming": "~7.5.3",
125
+ "@storybook/theming": "~7.6.15",
126
126
  "@stylelint/postcss-css-in-js": "~0.38.0",
127
127
  "@svgr/webpack": "~8.1.0",
128
- "@swc/cli": "~0.1.62",
129
- "@swc/core": "~1.3.96",
130
- "@swc/jest": "~0.2.29",
131
- "@testing-library/jest-dom": "~6.1.4",
132
- "@testing-library/react": "~14.1.0",
128
+ "@swc/cli": "~0.3.9",
129
+ "@swc/core": "~1.4.1",
130
+ "@swc/jest": "~0.2.36",
131
+ "@testing-library/jest-dom": "~6.4.2",
132
+ "@testing-library/react": "~14.2.1",
133
133
  "@testing-library/react-hooks": "~8.0.1",
134
- "@testing-library/user-event": "~14.5.1",
134
+ "@testing-library/user-event": "~14.5.2",
135
135
  "@types/circular-dependency-plugin": "~5.0.8",
136
136
  "@types/compression": "~1.7.5",
137
- "@types/cors": "~2.8.16",
137
+ "@types/cors": "~2.8.17",
138
138
  "@types/duplicate-package-checker-webpack-plugin": "~2.1.5",
139
139
  "@types/ip": "~1.1.3",
140
- "@types/jest": "~29.5.8",
141
- "@types/jest-axe": "~3.5.8",
140
+ "@types/jest": "~29.5.12",
141
+ "@types/jest-axe": "~3.5.9",
142
142
  "@types/moment-locales-webpack-plugin": "~1.2.6",
143
- "@types/node": "~20.9.0",
143
+ "@types/node": "~20.11.17",
144
144
  "@types/normalize-path": "~3.0.2",
145
145
  "@types/postcss-preset-env": "~8.0.0",
146
146
  "@types/rimraf": "~4.0.5",
147
147
  "@types/speed-measure-webpack-plugin": "~1.3.6",
148
- "@types/supertest": "~2.0.16",
149
- "@types/uuid": "~9.0.7",
148
+ "@types/supertest": "~6.0.2",
149
+ "@types/uuid": "~9.0.8",
150
150
  "@types/testing-library__jest-dom": "~5.14.9",
151
- "@types/webpack-bundle-analyzer": "~4.6.3",
152
- "@typescript-eslint/eslint-plugin": "~6.11.0",
153
- "@typescript-eslint/parser": "~6.11.0",
154
- "@vitejs/plugin-react": "~4.1.1",
151
+ "@types/webpack-bundle-analyzer": "~4.7.0",
152
+ "@typescript-eslint/eslint-plugin": "~7.0.1",
153
+ "@typescript-eslint/parser": "~7.0.1",
154
+ "@vitejs/plugin-react": "~4.2.1",
155
155
  "@vitest/coverage-c8": "~0.33.0",
156
- "autoprefixer": "~10.4.16",
157
- "axe-core": "~4.8.2",
156
+ "autoprefixer": "~10.4.17",
157
+ "axe-core": "~4.8.4",
158
158
  "babel-plugin-date-fns": "~2.0.0",
159
159
  "babel-plugin-dynamic-import-node": "~2.3.3",
160
160
  "babel-plugin-import-remove-resource-query": "~1.0.0",
@@ -166,66 +166,66 @@
166
166
  "babel-plugin-transform-remove-console": "~6.9.4",
167
167
  "babel-plugin-transform-strip-block": "~0.0.5",
168
168
  "body-parser": "~1.20.2",
169
- "browserslist": "~4.22.3",
170
- "browserslist-to-esbuild": "~1.2.0",
169
+ "browserslist": "~4.23.0",
170
+ "browserslist-to-esbuild": "~2.1.1",
171
171
  "chalk": "~5.3.0",
172
172
  "circular-dependency-plugin": "~5.2.2",
173
173
  "compression": "~1.7.4",
174
- "compression-webpack-plugin": "~10.0.0",
175
- "copy-webpack-plugin": "~11.0.0",
174
+ "compression-webpack-plugin": "~11.0.0",
175
+ "copy-webpack-plugin": "~12.0.2",
176
176
  "cors": "~2.8.5",
177
177
  "cross-env": "~7.0.3",
178
178
  "css-loader": "~6.10.0",
179
- "css-minimizer-webpack-plugin": "~5.0.1",
179
+ "css-minimizer-webpack-plugin": "~6.0.0",
180
180
  "depcheck": "~1.4.7",
181
181
  "docdash": "~2.0.2",
182
- "dotenv": "~16.4.1",
182
+ "dotenv": "~16.4.4",
183
183
  "dotenv-webpack": "~8.0.1",
184
184
  "duplicate-package-checker-webpack-plugin": "~3.0.0",
185
185
  "enhanced-resolve": "5.15.0",
186
- "esbuild": "~0.19.5",
187
- "esbuild-loader": "~4.0.2",
186
+ "esbuild": "~0.20.0",
187
+ "esbuild-loader": "~4.0.3",
188
188
  "esbuild-plugin-lodash": "~1.2.0",
189
189
  "esbuild-plugin-svgr": "~2.1.0",
190
- "eslint": "~8.53.0",
190
+ "eslint": "~8.56.0",
191
191
  "eslint-config-airbnb": "~19.0.4",
192
192
  "eslint-config-airbnb-base": "~15.0.0",
193
193
  "eslint-config-airbnb-typescript": "~17.1.0",
194
- "eslint-config-prettier": "~9.0.0",
194
+ "eslint-config-prettier": "~9.1.0",
195
195
  "eslint-config-react-app": "~7.0.1",
196
196
  "eslint-import-resolver-babel-module": "~5.3.2",
197
197
  "eslint-import-resolver-typescript": "~3.6.1",
198
198
  "eslint-import-resolver-webpack": "~0.13.8",
199
199
  "eslint-plugin-compat": "~4.2.0",
200
200
  "eslint-plugin-eslint-comments": "~3.2.0",
201
- "eslint-plugin-import": "~2.29.0",
202
- "eslint-plugin-jest": "~27.6.0",
203
- "eslint-plugin-jsdoc": "~46.9.0",
201
+ "eslint-plugin-import": "~2.29.1",
202
+ "eslint-plugin-jest": "~27.8.0",
203
+ "eslint-plugin-jsdoc": "~48.1.0",
204
204
  "eslint-plugin-jsx-a11y": "~6.8.0",
205
- "eslint-plugin-mdx": "~2.2.0",
206
- "eslint-plugin-prettier": "~5.0.1",
205
+ "eslint-plugin-mdx": "~3.1.5",
206
+ "eslint-plugin-prettier": "~5.1.3",
207
207
  "eslint-plugin-react": "~7.33.2",
208
208
  "eslint-plugin-react-hooks": "~4.6.0",
209
209
  "eslint-plugin-redux-saga": "~1.3.2",
210
210
  "eslint-plugin-storybook": "~0.6.15",
211
- "eslint-plugin-testing-library": "~6.1.2",
212
- "eslint-plugin-wdio": "~8.20.0",
211
+ "eslint-plugin-testing-library": "~6.2.0",
212
+ "eslint-plugin-wdio": "~8.24.12",
213
213
  "execa": "~8.0.1",
214
214
  "express": "~4.18.2",
215
215
  "express-static-gzip": "~2.1.7",
216
- "favicons": "~7.1.4",
216
+ "favicons": "~7.1.5",
217
217
  "favicons-webpack-plugin": "~6.0.1",
218
218
  "fast-glob": "~3.3.2",
219
- "find-up": "~6.3.0",
220
- "find-up-cli": "~5.0.0",
221
- "happy-dom": "~12.10.3",
219
+ "find-up": "~7.0.0",
220
+ "find-up-cli": "~6.0.0",
221
+ "happy-dom": "~13.3.8",
222
222
  "helmet-csp": "~3.4.0",
223
- "html-loader": "~4.2.0",
223
+ "html-loader": "~5.0.0",
224
224
  "html-webpack-plugin": "~5.6.0",
225
225
  "http-server": "~14.1.1",
226
- "husky": "~8.0.3",
226
+ "husky": "~9.0.11",
227
227
  "husky-init": "~8.0.0",
228
- "imports-loader": "~4.0.1",
228
+ "imports-loader": "~5.0.0",
229
229
  "ip": "~1.1.8",
230
230
  "jest-axe": "~8.0.0",
231
231
  "jest-cli": "~29.7.0",
@@ -235,84 +235,86 @@
235
235
  "jest-watch-typeahead": "~2.2.2",
236
236
  "jscodeshift": "~0.15.1",
237
237
  "jsdoc": "~4.0.2",
238
- "lerna": "~7.4.2",
239
- "lint-staged": "~15.1.0",
240
- "mini-css-extract-plugin": "~2.7.6",
238
+ "lerna": "~8.1.2",
239
+ "lint-staged": "~15.2.2",
240
+ "mini-css-extract-plugin": "~2.8.0",
241
241
  "minimist": "~1.2.8",
242
242
  "moment": "~2.30.1",
243
243
  "moment-locales-webpack-plugin": "~1.2.0",
244
- "msw": "~2.0.6",
244
+ "msw": "~2.2.0",
245
245
  "npm-run-all": "~4.1.5",
246
246
  "node-gyp": "~10.0.1",
247
247
  "node-plop": "~0.32.0",
248
- "nodemon": "~3.0.1",
248
+ "nodemon": "~3.0.3",
249
249
  "normalize-path": "~3.0.0",
250
- "npm-check-updates": "16.14.6",
251
- "nx": "~17.1.2",
252
- "pino": "~8.16.1",
253
- "pino-http": "~8.5.1",
254
- "pino-pretty": "~10.2.3",
255
- "plop": "~4.0.0",
256
- "postcss": "~8.4.31",
257
- "postcss-html": "~1.5.0",
250
+ "npm-check-updates": "16.14.15",
251
+ "nx": "~18.0.4",
252
+ "pino": "~8.18.0",
253
+ "pino-http": "~9.0.0",
254
+ "pino-pretty": "~10.3.1",
255
+ "plop": "~4.0.1",
256
+ "postcss": "~8.4.35",
257
+ "postcss-html": "~1.6.0",
258
258
  "postcss-jsx": "~0.36.4",
259
- "postcss-loader": "~7.3.4",
259
+ "postcss-loader": "~8.1.0",
260
260
  "postcss-markdown": "~1.2.0",
261
261
  "postcss-preset-env": "~9.3.0",
262
+ "postcss-styled-syntax": "0.6.4",
262
263
  "postcss-syntax": "~0.36.2",
263
- "prettier": "~3.1.0",
264
- "prisma": "~5.6.0",
264
+ "prettier": "~3.2.5",
265
+ "prisma": "~5.9.1",
265
266
  "pug": "~3.0.2",
266
267
  "pug-loader": "~2.4.0",
267
268
  "raf": "~3.4.1",
268
- "react-docgen": "~7.0.1",
269
+ "react-docgen": "~7.0.3",
269
270
  "react-refresh": "~0.14.0",
270
271
  "react-test-renderer": "~18.2.0",
271
272
  "resize-observer-polyfill": "~1.5.1",
272
273
  "resolve-typescript-plugin": "~2.0.1",
273
274
  "rimraf": "5.0.5",
274
- "semantic-release": "~22.0.7",
275
+ "semantic-release": "~23.0.2",
275
276
  "slackify-markdown": "~4.4.0",
276
277
  "speed-measure-webpack-plugin": "~1.5.0",
277
- "storybook": "~7.5.3",
278
+ "storybook": "~7.6.15",
278
279
  "storybook-addon-turbo-build": "~2.0.1",
279
280
  "storybook-react-router": "~1.0.8",
280
281
  "style-loader": "~3.3.4",
281
- "stylelint": "~15.11.0",
282
- "stylelint-config-recommended": "~13.0.0",
282
+ "stylelint": "~16.2.1",
283
+ "stylelint-config-standard": "~36.0.0",
284
+ "stylelint-config-recommended": "~14.0.0",
283
285
  "stylelint-config-styled-components": "~0.1.1",
284
286
  "supertest": "~6.3.4",
285
- "swc-loader": "~0.2.3",
287
+ "swc-loader": "~0.2.6",
286
288
  "tsconfig-paths-webpack-plugin": "~4.1.0",
287
- "ts-node": "~10.9.1",
289
+ "ts-node": "~10.9.2",
288
290
  "tsc-alias": "~1.8.8",
289
- "tsx": "~4.1.2",
290
- "typedoc": "~0.25.3",
291
- "typescript": "~5.2.2",
292
- "undici": "~5.27.2",
291
+ "tsx": "~4.7.1",
292
+ "typedoc": "~0.25.8",
293
+ "typescript": "~5.3.3",
294
+ "undici": "~6.6.2",
293
295
  "update-notifier": "~7.0.0",
294
296
  "url-loader": "~4.1.1",
295
297
  "uuid": "~9.0.1",
296
- "vite": "~4.5.0",
297
- "vitest": "~0.34.6",
298
- "vite-tsconfig-paths": "~4.2.1",
299
- "webpack": "~5.89.0",
300
- "webpack-bundle-analyzer": "~4.10.0",
298
+ "vite": "~5.1.2",
299
+ "vitest": "~1.2.2",
300
+ "vite-tsconfig-paths": "~4.3.1",
301
+ "webpack": "~5.90.1",
302
+ "webpack-bundle-analyzer": "~4.10.1",
301
303
  "webpack-cli": "~5.1.4",
302
- "webpack-dev-server": "~4.15.1",
304
+ "webpack-dev-server": "~5.0.1",
303
305
  "webpack-manifest-plugin": "~5.0.0",
304
306
  "webpack-merge": "~5.10.0",
305
- "whatwg-fetch": "~3.6.19",
307
+ "whatwg-fetch": "~3.6.20",
306
308
  "workbox-webpack-plugin": "~7.0.0",
307
- "ws": "~8.14.2",
309
+ "ws": "~8.16.0",
308
310
  "yargs": "~17.7.2"
309
311
  },
310
312
  "devDependencies": {
311
313
  "@elliemae/pui-doc-gen": "~2.0.1",
312
314
  "react": "~18.2.0",
313
315
  "react-dom": "~18.2.0",
314
- "redux": "~4.2.1",
315
- "redux-saga": "~1.2.3",
316
- "styled-components": "~6.1.1"
316
+ "redux": "~5.0.1",
317
+ "redux-saga": "~1.3.0",
318
+ "styled-components": "~6.1.8"
317
319
  }
318
320
  }