@elliemae/pui-cli 8.11.1 → 8.13.0

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.
@@ -1,8 +1,8 @@
1
1
  export { config as babelConfig };
2
2
  declare namespace config {
3
- const ignore: RegExp[];
4
- const sourceType: string;
5
- const presets: (string | (string | {
3
+ let ignore: RegExp[];
4
+ let sourceType: string;
5
+ let presets: (string | (string | {
6
6
  modules: string | boolean;
7
7
  targets: {
8
8
  node: string;
@@ -17,7 +17,7 @@ declare namespace config {
17
17
  })[] | (string | {
18
18
  runtime: string;
19
19
  })[])[];
20
- const plugins: (string | (string | {
20
+ let plugins: (string | (string | {
21
21
  alias: {
22
22
  '@': string;
23
23
  };
@@ -29,13 +29,13 @@ declare namespace config {
29
29
  })[])[];
30
30
  namespace env {
31
31
  namespace development {
32
- const plugins_1: (string | (string | {
32
+ let plugins_1: (string | (string | {
33
33
  displayName: boolean;
34
34
  })[])[];
35
35
  export { plugins_1 as plugins };
36
36
  }
37
37
  namespace production {
38
- const plugins_2: (string | (string | {
38
+ let plugins_2: (string | (string | {
39
39
  displayName: boolean;
40
40
  pure: boolean;
41
41
  })[] | (string | {
@@ -44,7 +44,7 @@ declare namespace config {
44
44
  export { plugins_2 as plugins };
45
45
  }
46
46
  namespace test {
47
- const plugins_3: (string | (string | {
47
+ let plugins_3: (string | (string | {
48
48
  displayName: boolean;
49
49
  })[] | (string | {
50
50
  requireDirective: boolean;
@@ -1,4 +1,4 @@
1
1
  export namespace commitlintConfig {
2
- const _extends: string[];
2
+ let _extends: string[];
3
3
  export { _extends as extends };
4
4
  }
@@ -6,24 +6,24 @@ export const baseOverrides: {
6
6
  };
7
7
  }[];
8
8
  export namespace baseConfig {
9
- export const parser: string;
9
+ export let parser: string;
10
10
  export { basePlugins as plugins };
11
11
  export namespace env {
12
- const jest: boolean;
13
- const browser: boolean;
14
- const node: boolean;
15
- const es2021: boolean;
12
+ let jest: boolean;
13
+ let browser: boolean;
14
+ let node: boolean;
15
+ let es2021: boolean;
16
16
  }
17
17
  export namespace parserOptions {
18
- const sourceType: string;
18
+ let sourceType: string;
19
19
  namespace ecmaFeatures {
20
- const jsx: boolean;
20
+ let jsx: boolean;
21
21
  }
22
22
  namespace babelOptions {
23
- const plugins: string[];
23
+ let plugins: string[];
24
24
  }
25
25
  }
26
- export const settings: {
26
+ export let settings: {
27
27
  react: {
28
28
  version: string;
29
29
  };
@@ -36,7 +36,7 @@ export namespace baseConfig {
36
36
  };
37
37
  };
38
38
  };
39
- export const ignorePatterns: string[];
39
+ export let ignorePatterns: string[];
40
40
  }
41
41
  export const basePlugins: string[];
42
42
  export const baseRules: {
@@ -20,14 +20,14 @@ export const tsBaseRules: {
20
20
  })[];
21
21
  };
22
22
  export namespace tsBaseConfig {
23
- const files: string[];
24
- const parser: string;
25
- const plugins: string[];
23
+ let files: string[];
24
+ let parser: string;
25
+ let plugins: string[];
26
26
  namespace parserOptions {
27
- const tsconfigRootDir: string;
28
- const project: string;
27
+ let tsconfigRootDir: string;
28
+ let project: string;
29
29
  }
30
- const settings: {
30
+ let settings: {
31
31
  'import/resolver': {
32
32
  typescript: {
33
33
  alwaysTryTypes: boolean;
@@ -1,8 +1,8 @@
1
1
  export namespace prettierConfig {
2
- const printWidth: number;
3
- const tabWidth: number;
4
- const useTabs: boolean;
5
- const semi: boolean;
6
- const singleQuote: boolean;
7
- const trailingComma: string;
2
+ let printWidth: number;
3
+ let tabWidth: number;
4
+ let useTabs: boolean;
5
+ let semi: boolean;
6
+ let singleQuote: boolean;
7
+ let trailingComma: string;
8
8
  }
@@ -1,9 +1,9 @@
1
1
  export namespace stylelintConfig {
2
- export const ignoreFiles: string[];
3
- export const customSyntax: string;
4
- const _extends: string[];
2
+ export let ignoreFiles: string[];
3
+ export let customSyntax: string;
4
+ let _extends: string[];
5
5
  export { _extends as extends };
6
- export const rules: {
6
+ export let rules: {
7
7
  "selector-type-no-unknown": null;
8
8
  "function-no-unknown": null;
9
9
  };
@@ -1,7 +1,7 @@
1
- export const branches: (string | {
1
+ export let branches: (string | {
2
2
  name: string;
3
3
  prerelease: boolean;
4
4
  })[];
5
- export const plugins: (string | (string | {
5
+ export let plugins: (string | (string | {
6
6
  changelogTitle: string;
7
7
  })[])[];
@@ -1,10 +1,10 @@
1
1
  export namespace jestConfig {
2
- const collectCoverageFrom: string[];
3
- const coverageThreshold: {};
4
- const coverageDirectory: string;
5
- const coverageReporters: string[];
6
- const moduleDirectories: string[];
7
- const moduleNameMapper: {
2
+ let collectCoverageFrom: string[];
3
+ let coverageThreshold: {};
4
+ let coverageDirectory: string;
5
+ let coverageReporters: string[];
6
+ let moduleDirectories: string[];
7
+ let moduleNameMapper: {
8
8
  d3: string;
9
9
  '^d3-(.*)$': string;
10
10
  '.*\\webpack-hmr(.[t|j]s)?$': string;
@@ -18,26 +18,26 @@ export namespace jestConfig {
18
18
  'react-spring/web': string;
19
19
  'react-spring/renderprops': string;
20
20
  };
21
- const moduleFileExtensions: string[];
22
- const setupFilesAfterEnv: string[];
23
- const setupFiles: string[];
24
- const testRegex: string;
25
- const snapshotSerializers: never[];
26
- const testResultsProcessor: string;
27
- const resolver: string;
28
- const transform: {
21
+ let moduleFileExtensions: string[];
22
+ let setupFilesAfterEnv: string[];
23
+ let setupFiles: string[];
24
+ let testRegex: string;
25
+ let snapshotSerializers: never[];
26
+ let testResultsProcessor: string;
27
+ let resolver: string;
28
+ let transform: {
29
29
  '^.+\\.[jt]sx?$': any[];
30
30
  };
31
- const transformIgnorePatterns: string[];
31
+ let transformIgnorePatterns: string[];
32
32
  namespace globals {
33
- const APP_CONFIG: string | Buffer;
34
- const __webpack_public_path__: string;
33
+ let APP_CONFIG: string | Buffer;
34
+ let __webpack_public_path__: string;
35
35
  }
36
36
  namespace testEnvironmentOptions {
37
- const url: string;
38
- const resources: string;
37
+ let url: string;
38
+ let resources: string;
39
39
  }
40
- const testEnvironment: string;
41
- const watchPlugins: string[];
42
- const testTimeout: number;
40
+ let testEnvironment: string;
41
+ let watchPlugins: string[];
42
+ let testTimeout: number;
43
43
  }
@@ -1,17 +1,17 @@
1
1
  declare namespace _default {
2
- const defaults: {};
2
+ let defaults: {};
3
3
  namespace interceptors {
4
4
  namespace request {
5
- const use: jest.Mock<any, any, any>;
5
+ let use: jest.Mock<any, any, any>;
6
6
  }
7
7
  namespace response {
8
- const use_1: jest.Mock<any, any, any>;
8
+ let use_1: jest.Mock<any, any, any>;
9
9
  export { use_1 as use };
10
10
  }
11
11
  }
12
- const create: jest.Mock<any, any, any>;
13
- const get: jest.Mock<any, any, any>;
14
- const post: jest.Mock<any, any, any>;
15
- const put: jest.Mock<any, any, any>;
12
+ let create: jest.Mock<any, any, any>;
13
+ let get: jest.Mock<any, any, any>;
14
+ let post: jest.Mock<any, any, any>;
15
+ let put: jest.Mock<any, any, any>;
16
16
  }
17
17
  export default _default;
@@ -1,10 +1,10 @@
1
1
  export namespace LogLevels {
2
- const DEBUG: number;
3
- const INFO: number;
4
- const AUDIT: number;
5
- const WARN: number;
6
- const ERROR: number;
7
- const FATAL: number;
2
+ let DEBUG: number;
3
+ let INFO: number;
4
+ let AUDIT: number;
5
+ let WARN: number;
6
+ let ERROR: number;
7
+ let FATAL: number;
8
8
  }
9
9
  export function logger(): {
10
10
  setLogLevel(): void;
@@ -19,13 +19,13 @@ export function logger(): {
19
19
  fatal(): void;
20
20
  };
21
21
  export namespace LogLevel {
22
- const info: string;
23
- const debug: string;
24
- const trace: string;
25
- const warn: string;
26
- const error: string;
27
- const audit: string;
28
- const fatal: string;
22
+ let info: string;
23
+ let debug: string;
24
+ let trace: string;
25
+ let warn: string;
26
+ let error: string;
27
+ let audit: string;
28
+ let fatal: string;
29
29
  }
30
30
  export function Console(): {
31
31
  log: () => void;
@@ -1,7 +1,7 @@
1
1
  export namespace TARGETS {
2
- const browserslist: string[];
3
- const web: string;
4
- const node: string;
2
+ let browserslist: string[];
3
+ let web: string;
4
+ let node: string;
5
5
  }
6
6
  export function esBuild({ srcdir, outdir, esmOnly, target, injectReactShim, skipNestedPackageJSON, }: {
7
7
  srcdir: any;
@@ -1,3 +1,3 @@
1
- export const entryPoints: string[];
2
- export const exclude: string[];
3
- export const out: string;
1
+ export let entryPoints: string[];
2
+ export let exclude: string[];
3
+ export let out: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "8.11.1",
3
+ "version": "8.13.0",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -75,31 +75,31 @@
75
75
  "sonar56x": true
76
76
  },
77
77
  "dependencies": {
78
- "@axe-core/react": "~4.7.0",
79
- "@babel/cli": "~7.21.5",
80
- "@babel/core": "~7.21.8",
81
- "@babel/eslint-parser": "~7.21.8",
82
- "@babel/node": "~7.20.7",
78
+ "@axe-core/react": "~4.7.3",
79
+ "@babel/cli": "~7.22.6",
80
+ "@babel/core": "~7.22.8",
81
+ "@babel/eslint-parser": "~7.22.7",
82
+ "@babel/node": "~7.22.6",
83
83
  "@babel/plugin-proposal-class-properties": "~7.18.6",
84
- "@babel/plugin-proposal-export-default-from": "~7.18.10",
84
+ "@babel/plugin-proposal-export-default-from": "~7.22.5",
85
85
  "@babel/plugin-syntax-dynamic-import": "~7.8.3",
86
- "@babel/plugin-syntax-import-assertions": "~7.20.0",
87
- "@babel/plugin-transform-modules-commonjs": "~7.21.5",
88
- "@babel/plugin-transform-react-constant-elements": "~7.21.3",
89
- "@babel/plugin-transform-react-inline-elements": "~7.21.0",
90
- "@babel/plugin-transform-react-jsx-source": "~7.19.6",
91
- "@babel/plugin-transform-runtime": "~7.21.4",
92
- "@babel/preset-env": "~7.21.5",
93
- "@babel/preset-react": "~7.18.6",
94
- "@babel/preset-typescript": "~7.21.5",
95
- "@babel/runtime": "~7.21.5",
96
- "@commitlint/cli": "~17.6.3",
97
- "@commitlint/config-conventional": "~17.6.3",
86
+ "@babel/plugin-syntax-import-assertions": "~7.22.5",
87
+ "@babel/plugin-transform-modules-commonjs": "~7.22.5",
88
+ "@babel/plugin-transform-react-constant-elements": "~7.22.5",
89
+ "@babel/plugin-transform-react-inline-elements": "~7.22.5",
90
+ "@babel/plugin-transform-react-jsx-source": "~7.22.5",
91
+ "@babel/plugin-transform-runtime": "~7.22.7",
92
+ "@babel/preset-env": "~7.22.7",
93
+ "@babel/preset-react": "~7.22.5",
94
+ "@babel/preset-typescript": "~7.22.5",
95
+ "@babel/runtime": "~7.22.6",
96
+ "@commitlint/cli": "~17.6.6",
97
+ "@commitlint/config-conventional": "~17.6.6",
98
98
  "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
99
99
  "@faker-js/faker": "7.6.0",
100
100
  "@nrwl/cli": "15.9.3",
101
- "@nrwl/tao": "16.1.3",
102
- "@nrwl/workspace": "16.1.3",
101
+ "@nrwl/tao": "16.5.0",
102
+ "@nrwl/workspace": "16.5.0",
103
103
  "@pmmmwh/react-refresh-webpack-plugin": "~0.5.10",
104
104
  "@semantic-release/changelog": "~6.0.3",
105
105
  "@semantic-release/exec": "~6.0.3",
@@ -118,7 +118,7 @@
118
118
  "@stylelint/postcss-css-in-js": "~0.38.0",
119
119
  "@svgr/webpack": "~7.0.0",
120
120
  "@swc/cli": "~0.1.62",
121
- "@swc/core": "~1.3.57",
121
+ "@swc/core": "~1.3.68",
122
122
  "@swc/jest": "~0.2.26",
123
123
  "@testing-library/jest-dom": "~5.16.5",
124
124
  "@testing-library/react": "~14.0.0",
@@ -129,7 +129,7 @@
129
129
  "@types/cors": "~2.8.13",
130
130
  "@types/duplicate-package-checker-webpack-plugin": "~2.1.2",
131
131
  "@types/ip": "~1.1.0",
132
- "@types/jest": "~29.5.1",
132
+ "@types/jest": "~29.5.2",
133
133
  "@types/jest-axe": "~3.5.5",
134
134
  "@types/moment-locales-webpack-plugin": "~1.2.3",
135
135
  "@types/node": "~18.16.3",
@@ -138,47 +138,47 @@
138
138
  "@types/rimraf": "~3.0.2",
139
139
  "@types/speed-measure-webpack-plugin": "~1.3.4",
140
140
  "@types/supertest": "~2.0.12",
141
- "@types/testing-library__jest-dom": "~5.14.5",
142
- "@types/uuid": "~9.0.1",
141
+ "@types/testing-library__jest-dom": "~5.14.7",
142
+ "@types/uuid": "~9.0.2",
143
143
  "@types/webpack-bundle-analyzer": "~4.6.0",
144
- "@typescript-eslint/eslint-plugin": "~5.59.5",
145
- "@typescript-eslint/parser": "~5.59.5",
146
- "@vitejs/plugin-react": "~4.0.0",
147
- "@vitest/coverage-c8": "~0.31.0",
144
+ "@typescript-eslint/eslint-plugin": "~5.61.0",
145
+ "@typescript-eslint/parser": "~5.61.0",
146
+ "@vitejs/plugin-react": "~4.0.2",
147
+ "@vitest/coverage-c8": "~0.33.0",
148
148
  "autoprefixer": "~10.4.14",
149
- "axe-core": "~4.7.0",
149
+ "axe-core": "~4.7.2",
150
150
  "babel-plugin-date-fns": "~2.0.0",
151
151
  "babel-plugin-dynamic-import-node": "~2.3.3",
152
152
  "babel-plugin-import-remove-resource-query": "~1.0.0",
153
153
  "babel-plugin-lodash": "~3.3.4",
154
154
  "babel-plugin-module-resolver": "~5.0.0",
155
155
  "babel-plugin-source-map-support": "~2.2.0",
156
- "babel-plugin-styled-components": "~2.1.1",
156
+ "babel-plugin-styled-components": "~2.1.4",
157
157
  "babel-plugin-transform-react-remove-prop-types": "~0.4.24",
158
158
  "babel-plugin-transform-remove-console": "~6.9.4",
159
159
  "babel-plugin-transform-strip-block": "~0.0.5",
160
160
  "body-parser": "~1.20.2",
161
- "browserslist": "~4.21.5",
161
+ "browserslist": "~4.21.9",
162
162
  "browserslist-to-esbuild": "~1.2.0",
163
- "chalk": "~5.2.0",
163
+ "chalk": "~5.3.0",
164
164
  "circular-dependency-plugin": "~5.2.2",
165
165
  "compression": "~1.7.4",
166
166
  "compression-webpack-plugin": "~10.0.0",
167
167
  "copy-webpack-plugin": "~11.0.0",
168
168
  "cors": "~2.8.5",
169
169
  "cross-env": "~7.0.3",
170
- "css-loader": "~6.7.3",
171
- "css-minimizer-webpack-plugin": "~5.0.0",
170
+ "css-loader": "~6.8.1",
171
+ "css-minimizer-webpack-plugin": "~5.0.1",
172
172
  "depcheck": "~1.4.3",
173
173
  "docdash": "~2.0.1",
174
- "dotenv": "~16.0.3",
174
+ "dotenv": "~16.3.1",
175
175
  "dotenv-webpack": "~8.0.1",
176
176
  "duplicate-package-checker-webpack-plugin": "~3.0.0",
177
- "enhanced-resolve": "5.14.0",
178
- "esbuild": "~0.17.18",
177
+ "enhanced-resolve": "5.15.0",
178
+ "esbuild": "~0.18.11",
179
179
  "esbuild-loader": "~3.0.1",
180
180
  "esbuild-plugin-svgr": "~1.1.0",
181
- "eslint": "~8.40.0",
181
+ "eslint": "~8.44.0",
182
182
  "eslint-config-airbnb": "~19.0.4",
183
183
  "eslint-config-airbnb-base": "~15.0.0",
184
184
  "eslint-config-airbnb-typescript": "~17.0.0",
@@ -190,7 +190,7 @@
190
190
  "eslint-plugin-compat": "~4.1.4",
191
191
  "eslint-plugin-eslint-comments": "~3.2.0",
192
192
  "eslint-plugin-import": "~2.27.5",
193
- "eslint-plugin-jest": "~27.2.1",
193
+ "eslint-plugin-jest": "~27.2.2",
194
194
  "eslint-plugin-jsdoc": "~43.1.1",
195
195
  "eslint-plugin-jsx-a11y": "~6.7.1",
196
196
  "eslint-plugin-mdx": "~2.1.0",
@@ -198,60 +198,60 @@
198
198
  "eslint-plugin-react": "~7.32.2",
199
199
  "eslint-plugin-react-hooks": "~4.6.0",
200
200
  "eslint-plugin-redux-saga": "~1.3.2",
201
- "eslint-plugin-storybook": "~0.6.11",
202
- "eslint-plugin-testing-library": "~5.10.3",
201
+ "eslint-plugin-storybook": "~0.6.12",
202
+ "eslint-plugin-testing-library": "~5.11.0",
203
203
  "eslint-plugin-wdio": "~8.8.7",
204
204
  "execa": "~7.1.1",
205
205
  "express": "~4.18.2",
206
206
  "express-static-gzip": "~2.1.7",
207
- "fast-glob": "~3.2.12",
208
- "favicons": "~7.1.2",
207
+ "fast-glob": "~3.3.0",
208
+ "favicons": "~7.1.3",
209
209
  "favicons-webpack-plugin": "~6.0.0",
210
210
  "find-up": "~6.3.0",
211
211
  "find-up-cli": "~5.0.0",
212
212
  "happy-dom": "~9.10.9",
213
213
  "helmet-csp": "~3.4.0",
214
214
  "html-loader": "~4.2.0",
215
- "html-webpack-plugin": "~5.5.1",
215
+ "html-webpack-plugin": "~5.5.3",
216
216
  "http-server": "~14.1.1",
217
217
  "husky": "~8.0.3",
218
218
  "husky-init": "~8.0.0",
219
219
  "imports-loader": "~4.0.1",
220
220
  "ip": "~1.1.8",
221
221
  "jest-axe": "~7.0.1",
222
- "jest-cli": "~29.5.0",
223
- "jest-environment-jsdom": "~29.5.0",
222
+ "jest-cli": "~29.6.1",
223
+ "jest-environment-jsdom": "~29.6.1",
224
224
  "jest-sonar-reporter": "~2.0.0",
225
225
  "jest-styled-components": "~7.1.1",
226
226
  "jest-watch-typeahead": "~2.2.2",
227
227
  "jscodeshift": "~0.15.0",
228
228
  "jsdoc": "~4.0.2",
229
229
  "lerna": "~6.6.2",
230
- "lint-staged": "~13.2.2",
230
+ "lint-staged": "~13.2.3",
231
231
  "mini-css-extract-plugin": "~2.7.6",
232
232
  "minimist": "~1.2.8",
233
233
  "moment": "~2.29.4",
234
234
  "moment-locales-webpack-plugin": "~1.2.0",
235
- "msw": "~1.2.1",
236
- "node-gyp": "~9.3.1",
235
+ "msw": "~1.2.2",
236
+ "node-gyp": "~9.4.0",
237
237
  "node-plop": "~0.31.1",
238
238
  "nodemon": "~2.0.22",
239
239
  "normalize-path": "~3.0.0",
240
- "npm-check-updates": "16.10.10",
240
+ "npm-check-updates": "16.10.15",
241
241
  "npm-run-all": "~4.1.5",
242
242
  "pino": "~8.14.1",
243
243
  "pino-http": "~8.3.3",
244
- "pino-pretty": "~10.0.0",
244
+ "pino-pretty": "~10.0.1",
245
245
  "plop": "~3.1.2",
246
- "postcss": "~8.4.23",
246
+ "postcss": "~8.4.25",
247
247
  "postcss-html": "~1.5.0",
248
248
  "postcss-jsx": "~0.36.4",
249
- "postcss-loader": "~7.3.0",
249
+ "postcss-loader": "~7.3.3",
250
250
  "postcss-markdown": "~1.2.0",
251
251
  "postcss-preset-env": "~8.3.2",
252
252
  "postcss-syntax": "~0.36.2",
253
253
  "prettier": "~2.8.8",
254
- "prisma": "~4.14.0",
254
+ "prisma": "~4.16.2",
255
255
  "pug": "~3.0.2",
256
256
  "pug-loader": "~2.4.0",
257
257
  "raf": "~3.4.1",
@@ -260,34 +260,34 @@
260
260
  "react-test-renderer": "~18.2.0",
261
261
  "resize-observer-polyfill": "~1.5.1",
262
262
  "resolve-typescript-plugin": "~2.0.1",
263
- "rimraf": "~5.0.0",
264
- "semantic-release": "~21.0.2",
263
+ "rimraf": "~5.0.1",
264
+ "semantic-release": "~21.0.7",
265
265
  "slackify-markdown": "~4.3.1",
266
266
  "speed-measure-webpack-plugin": "~1.5.0",
267
267
  "storybook-addon-turbo-build": "~1.1.0",
268
268
  "storybook-react-router": "~1.0.8",
269
269
  "style-loader": "~3.3.3",
270
- "stylelint": "~15.8.0",
270
+ "stylelint": "~15.10.1",
271
271
  "stylelint-config-recommended": "~12.0.0",
272
272
  "stylelint-config-styled-components": "~0.1.1",
273
273
  "supertest": "~6.3.3",
274
274
  "swc-loader": "~0.2.3",
275
275
  "ts-node": "~10.9.1",
276
- "tsc-alias": "~1.8.6",
277
- "typedoc": "~0.24.7",
278
- "typescript": "~5.0.4",
276
+ "tsc-alias": "~1.8.7",
277
+ "typedoc": "~0.24.8",
278
+ "typescript": "~5.1.6",
279
279
  "update-notifier": "~6.0.2",
280
280
  "url-loader": "~4.1.1",
281
281
  "uuid": "~9.0.0",
282
- "vite": "~4.3.5",
282
+ "vite": "~4.4.2",
283
283
  "vite-tsconfig-paths": "~4.2.0",
284
- "vitest": "~0.31.4",
285
- "webpack": "~5.82.1",
286
- "webpack-bundle-analyzer": "~4.8.0",
287
- "webpack-cli": "~5.1.1",
288
- "webpack-dev-server": "~4.15.0",
284
+ "vitest": "~0.33.0",
285
+ "webpack": "~5.88.1",
286
+ "webpack-bundle-analyzer": "~4.9.0",
287
+ "webpack-cli": "~5.1.4",
288
+ "webpack-dev-server": "~4.15.1",
289
289
  "webpack-manifest-plugin": "~5.0.0",
290
- "webpack-merge": "~5.8.0",
290
+ "webpack-merge": "~5.9.0",
291
291
  "whatwg-fetch": "~3.6.2",
292
292
  "workbox-webpack-plugin": "~6.5.4",
293
293
  "yargs": "~17.7.2"