@elliemae/pui-cli 8.11.0 → 8.12.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.
@@ -32,10 +32,19 @@ __export(lint_exports, {
32
32
  });
33
33
  module.exports = __toCommonJS(lint_exports);
34
34
  var import_node_path = __toESM(require("node:path"), 1);
35
+ var import_node_util = require("node:util");
35
36
  var import_yargs = __toESM(require("yargs"), 1);
36
37
  var import_utils = require("./utils.js");
37
- const lintCSS = async (fix = false) => {
38
- const fixIssues = fix ? "--fix" : "";
38
+ const lintCSS = async (args) => {
39
+ const fixIssues = args.fix ? "--fix" : "";
40
+ if (args.debug) {
41
+ const configPath = import_node_path.default.join(process.cwd(), "stylelint.config.cjs");
42
+ const config = await import(configPath);
43
+ (0, import_utils.logInfo)("stylelint version:");
44
+ await (0, import_utils.exec)(`stylelint ./{lib,app}/**/*.{js,jsx,ts,tsx} --version`);
45
+ (0, import_utils.logInfo)("stylelint config:");
46
+ (0, import_utils.logInfo)((0, import_node_util.inspect)(config, { depth: null }));
47
+ }
39
48
  await (0, import_utils.exec)(
40
49
  `stylelint ./{lib,app}/**/*.{js,jsx,ts,tsx} ${fixIssues} ${!(0, import_utils.getCIEnv)() ? "--color" : "--no-color"} --allow-empty-input --config ${import_node_path.default.join(
41
50
  process.cwd(),
@@ -43,10 +52,11 @@ const lintCSS = async (fix = false) => {
43
52
  )}`
44
53
  );
45
54
  };
46
- const lintJS = async (fix = false) => {
47
- const fixIssues = fix ? "--fix" : "";
55
+ const lintJS = async (args) => {
56
+ const fixIssues = args.fix ? "--fix" : "";
57
+ const debugFlags = args.debug ? "--env-info --debug" : "";
48
58
  await (0, import_utils.exec)(
49
- `eslint ${!(0, import_utils.getCIEnv)() ? "--color" : "--no-color"} ${fixIssues} .`
59
+ `eslint ${!(0, import_utils.getCIEnv)() ? "--color" : "--no-color"} ${fixIssues} ${debugFlags} .`
50
60
  );
51
61
  };
52
62
  const cmdArgs = {
@@ -64,6 +74,11 @@ const cmdArgs = {
64
74
  boolean: true,
65
75
  alias: "fix",
66
76
  default: false
77
+ },
78
+ debug: {
79
+ boolean: true,
80
+ alias: "debug",
81
+ default: false
67
82
  }
68
83
  };
69
84
  const lintCmd = {
@@ -73,10 +88,12 @@ const lintCmd = {
73
88
  await (0, import_utils.exec)("tsc --noEmit --emitDeclarationOnly false");
74
89
  try {
75
90
  await (0, import_utils.exec)("rimraf ./reports/eslint.json");
76
- await lintJS(argv.fix);
91
+ await lintJS({ ...argv });
77
92
  (0, import_utils.logSuccess)("JS linting completed");
78
93
  } catch (err) {
79
94
  (0, import_utils.logError)("JS linting failed");
95
+ if (argv.debug)
96
+ (0, import_utils.logError)(err);
80
97
  (0, import_yargs.default)().exit(-1, err);
81
98
  return;
82
99
  }
@@ -84,10 +101,12 @@ const lintCmd = {
84
101
  if (argv.css) {
85
102
  try {
86
103
  await (0, import_utils.exec)("rimraf ./reports/stylelint.json");
87
- await lintCSS(argv.fix);
104
+ await lintCSS({ ...argv });
88
105
  (0, import_utils.logSuccess)("CSS linting completed");
89
106
  } catch (err) {
90
107
  (0, import_utils.logError)("CSS linting failed");
108
+ if (argv.debug)
109
+ (0, import_utils.logError)(err);
91
110
  (0, import_yargs.default)().exit(-1, err);
92
111
  }
93
112
  }
@@ -37,6 +37,7 @@ __export(utils_exports, {
37
37
  logError: () => logError,
38
38
  logInfo: () => logInfo,
39
39
  logSuccess: () => logSuccess,
40
+ logWarning: () => logWarning,
40
41
  writeAppInfo: () => writeAppInfo
41
42
  });
42
43
  module.exports = __toCommonJS(utils_exports);
@@ -61,6 +62,7 @@ const browsersMapping = {
61
62
  };
62
63
  const exec = async (command, options = { stdio: "inherit" }) => (0, import_execa.execaCommand)(command, options);
63
64
  const logInfo = console.log;
65
+ const logWarning = (...args) => console.log(import_chalk.default.yellow(...args));
64
66
  const logSuccess = (...args) => console.log(import_chalk.default.green(...args));
65
67
  const logError = console.error;
66
68
  const readPackageLock = async () => {
@@ -152,6 +152,7 @@ exports.baseConfig = {
152
152
  },
153
153
  ignorePatterns: [
154
154
  "/build/**/*",
155
+ "/node_modules/**/*",
155
156
  "/dist/**/*",
156
157
  "/reports/**/*",
157
158
  "/coverage/**/*",
@@ -1,19 +1,20 @@
1
1
  exports.stylelintConfig = {
2
2
  ignoreFiles: [
3
- '/dist/**/*',
4
- '/coverage/**/*',
5
- '/build/**/*',
6
- '/reports/**/*',
7
- '/temp/**/*',
8
- '/docs/**/*',
9
- '/demo/**/*',
10
- '/node_modules/**/*',
11
- '/vendor/**/*',
3
+ "/dist/**/*",
4
+ "/coverage/**/*",
5
+ "/build/**/*",
6
+ "/reports/**/*",
7
+ "/temp/**/*",
8
+ "/docs/**/*",
9
+ "/demo/**/*",
10
+ "/node_modules/**/*",
11
+ "/vendor/**/*",
12
12
  ],
13
- customSyntax: '@stylelint/postcss-css-in-js',
13
+ customSyntax: "@stylelint/postcss-css-in-js",
14
+ // customSyntax: "postcss-styled-components", // '@stylelint/postcss-css-in-js' is deprecated, this may be a replacement?
14
15
  extends: [
15
- 'stylelint-config-recommended',
16
- 'stylelint-config-styled-components',
16
+ "stylelint-config-recommended",
17
+ "stylelint-config-styled-components",
17
18
  ],
18
- rules: { 'selector-type-no-unknown': null, 'function-no-unknown': null },
19
+ rules: { "selector-type-no-unknown": null, "function-no-unknown": null },
19
20
  };
@@ -1,14 +1,24 @@
1
1
  import path from "node:path";
2
+ import { inspect } from "node:util";
2
3
  import yargs from "yargs";
3
4
  import {
4
5
  exec,
6
+ logInfo,
5
7
  logError,
6
8
  logSuccess,
7
9
  getCIEnv,
8
10
  isTypeScriptEnabled
9
11
  } from "./utils.js";
10
- const lintCSS = async (fix = false) => {
11
- const fixIssues = fix ? "--fix" : "";
12
+ const lintCSS = async (args) => {
13
+ const fixIssues = args.fix ? "--fix" : "";
14
+ if (args.debug) {
15
+ const configPath = path.join(process.cwd(), "stylelint.config.cjs");
16
+ const config = await import(configPath);
17
+ logInfo("stylelint version:");
18
+ await exec(`stylelint ./{lib,app}/**/*.{js,jsx,ts,tsx} --version`);
19
+ logInfo("stylelint config:");
20
+ logInfo(inspect(config, { depth: null }));
21
+ }
12
22
  await exec(
13
23
  `stylelint ./{lib,app}/**/*.{js,jsx,ts,tsx} ${fixIssues} ${!getCIEnv() ? "--color" : "--no-color"} --allow-empty-input --config ${path.join(
14
24
  process.cwd(),
@@ -16,10 +26,11 @@ const lintCSS = async (fix = false) => {
16
26
  )}`
17
27
  );
18
28
  };
19
- const lintJS = async (fix = false) => {
20
- const fixIssues = fix ? "--fix" : "";
29
+ const lintJS = async (args) => {
30
+ const fixIssues = args.fix ? "--fix" : "";
31
+ const debugFlags = args.debug ? "--env-info --debug" : "";
21
32
  await exec(
22
- `eslint ${!getCIEnv() ? "--color" : "--no-color"} ${fixIssues} .`
33
+ `eslint ${!getCIEnv() ? "--color" : "--no-color"} ${fixIssues} ${debugFlags} .`
23
34
  );
24
35
  };
25
36
  const cmdArgs = {
@@ -37,6 +48,11 @@ const cmdArgs = {
37
48
  boolean: true,
38
49
  alias: "fix",
39
50
  default: false
51
+ },
52
+ debug: {
53
+ boolean: true,
54
+ alias: "debug",
55
+ default: false
40
56
  }
41
57
  };
42
58
  const lintCmd = {
@@ -46,10 +62,12 @@ const lintCmd = {
46
62
  await exec("tsc --noEmit --emitDeclarationOnly false");
47
63
  try {
48
64
  await exec("rimraf ./reports/eslint.json");
49
- await lintJS(argv.fix);
65
+ await lintJS({ ...argv });
50
66
  logSuccess("JS linting completed");
51
67
  } catch (err) {
52
68
  logError("JS linting failed");
69
+ if (argv.debug)
70
+ logError(err);
53
71
  yargs().exit(-1, err);
54
72
  return;
55
73
  }
@@ -57,10 +75,12 @@ const lintCmd = {
57
75
  if (argv.css) {
58
76
  try {
59
77
  await exec("rimraf ./reports/stylelint.json");
60
- await lintCSS(argv.fix);
78
+ await lintCSS({ ...argv });
61
79
  logSuccess("CSS linting completed");
62
80
  } catch (err) {
63
81
  logError("CSS linting failed");
82
+ if (argv.debug)
83
+ logError(err);
64
84
  yargs().exit(-1, err);
65
85
  }
66
86
  }
@@ -31,6 +31,7 @@ const browsersMapping = {
31
31
  };
32
32
  const exec = async (command, options = { stdio: "inherit" }) => execaCommand(command, options);
33
33
  const logInfo = console.log;
34
+ const logWarning = (...args) => console.log(chalk.yellow(...args));
34
35
  const logSuccess = (...args) => console.log(chalk.green(...args));
35
36
  const logError = console.error;
36
37
  const readPackageLock = async () => {
@@ -186,5 +187,6 @@ export {
186
187
  logError,
187
188
  logInfo,
188
189
  logSuccess,
190
+ logWarning,
189
191
  writeAppInfo
190
192
  };
@@ -152,6 +152,7 @@ exports.baseConfig = {
152
152
  },
153
153
  ignorePatterns: [
154
154
  "/build/**/*",
155
+ "/node_modules/**/*",
155
156
  "/dist/**/*",
156
157
  "/reports/**/*",
157
158
  "/coverage/**/*",
@@ -1,19 +1,20 @@
1
1
  exports.stylelintConfig = {
2
2
  ignoreFiles: [
3
- '/dist/**/*',
4
- '/coverage/**/*',
5
- '/build/**/*',
6
- '/reports/**/*',
7
- '/temp/**/*',
8
- '/docs/**/*',
9
- '/demo/**/*',
10
- '/node_modules/**/*',
11
- '/vendor/**/*',
3
+ "/dist/**/*",
4
+ "/coverage/**/*",
5
+ "/build/**/*",
6
+ "/reports/**/*",
7
+ "/temp/**/*",
8
+ "/docs/**/*",
9
+ "/demo/**/*",
10
+ "/node_modules/**/*",
11
+ "/vendor/**/*",
12
12
  ],
13
- customSyntax: '@stylelint/postcss-css-in-js',
13
+ customSyntax: "@stylelint/postcss-css-in-js",
14
+ // customSyntax: "postcss-styled-components", // '@stylelint/postcss-css-in-js' is deprecated, this may be a replacement?
14
15
  extends: [
15
- 'stylelint-config-recommended',
16
- 'stylelint-config-styled-components',
16
+ "stylelint-config-recommended",
17
+ "stylelint-config-styled-components",
17
18
  ],
18
- rules: { 'selector-type-no-unknown': null, 'function-no-unknown': null },
19
+ rules: { "selector-type-no-unknown": null, "function-no-unknown": null },
19
20
  };
@@ -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;
@@ -3,6 +3,7 @@ type Arguments = {
3
3
  css: boolean;
4
4
  js: boolean;
5
5
  fix: boolean;
6
+ debug: boolean;
6
7
  };
7
8
  export declare const lintCmd: CommandModule<Record<string, never>, Arguments>;
8
9
  export {};
@@ -4,6 +4,7 @@ export declare const logInfo: {
4
4
  (...data: any[]): void;
5
5
  (message?: any, ...optionalParams: any[]): void;
6
6
  };
7
+ export declare const logWarning: (...args: string[]) => void;
7
8
  export declare const logSuccess: (...args: string[]) => void;
8
9
  export declare const logError: {
9
10
  (...data: any[]): void;
@@ -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,10 +1,10 @@
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: {
7
- 'selector-type-no-unknown': null;
8
- 'function-no-unknown': null;
6
+ export let rules: {
7
+ "selector-type-no-unknown": null;
8
+ "function-no-unknown": null;
9
9
  };
10
10
  }
@@ -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.0",
3
+ "version": "8.12.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,18 +118,18 @@
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",
125
125
  "@testing-library/react-hooks": "~8.0.1",
126
126
  "@testing-library/user-event": "~14.4.3",
127
127
  "@types/circular-dependency-plugin": "~5.0.5",
128
- "@types/cors": "~2.8.13",
129
128
  "@types/compression": "~1.7.2",
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/uuid": "~9.0.1",
142
- "@types/testing-library__jest-dom": "~5.14.5",
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
- "favicons": "~7.1.2",
207
+ "fast-glob": "~3.3.0",
208
+ "favicons": "~7.1.3",
208
209
  "favicons-webpack-plugin": "~6.0.0",
209
- "fast-glob": "~3.2.12",
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",
231
- "mini-css-extract-plugin": "~2.7.5",
230
+ "lint-staged": "~13.2.3",
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
- "npm-run-all": "~4.1.5",
237
- "node-gyp": "~9.3.1",
235
+ "msw": "~1.2.2",
236
+ "node-gyp": "~9.4.0",
238
237
  "node-plop": "~0.31.1",
239
238
  "nodemon": "~2.0.22",
240
239
  "normalize-path": "~3.0.0",
241
- "npm-check-updates": "16.10.10",
240
+ "npm-check-updates": "16.10.13",
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
- "style-loader": "~3.3.2",
270
- "stylelint": "~15.6.1",
269
+ "style-loader": "~3.3.3",
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",
283
- "vitest": "~0.31.0",
282
+ "vite": "~4.4.1",
284
283
  "vite-tsconfig-paths": "~4.2.0",
285
- "webpack": "~5.82.0",
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"
@@ -298,6 +298,11 @@
298
298
  "react-dom": "~18.2.0",
299
299
  "redux": "~4.2.1",
300
300
  "redux-saga": "~1.2.3",
301
- "styled-components": "~5.3.10"
301
+ "styled-components": "~5.3.11"
302
+ },
303
+ "pnpm": {
304
+ "overrides": {
305
+ "postcss": "^8.4.16"
306
+ }
302
307
  }
303
308
  }