@elliemae/pui-cli 9.0.0-next.13 → 9.0.0-next.15
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/dist/cjs/commands/lint.js +26 -7
- package/dist/cjs/commands/utils.js +3 -1
- package/dist/cjs/lint-config/eslint/common.cjs +3 -2
- package/dist/cjs/lint-config/eslint/typescript/common.cjs +3 -3
- package/dist/cjs/lint-config/stylelint.config.cjs +14 -13
- package/dist/cjs/monorepo/delete-merged-tags.js +1 -1
- package/dist/cjs/monorepo/set-registry-version.js +1 -1
- package/dist/cjs/monorepo/set-workspace-version.js +1 -1
- package/dist/cjs/server/csp.js +1 -1
- package/dist/cjs/server/utils.js +2 -2
- package/dist/cjs/testing/jest.config.cjs +2 -0
- package/dist/cjs/testing/setup-tests.js +22 -1
- package/dist/cjs/transpile/esbuild.js +1 -1
- package/dist/cjs/update-notifier.js +1 -1
- package/dist/cjs/utils.js +1 -1
- package/dist/cjs/webpack/helpers.js +6 -6
- package/dist/cjs/webpack/webpack.base.babel.js +4 -4
- package/dist/cjs/webpack/webpack.dev.babel.js +1 -1
- package/dist/cjs/webpack/webpack.lib.base.babel.js +4 -4
- package/dist/cjs/webpack/webpack.lib.dev.babel.js +1 -1
- package/dist/cjs/webpack/webpack.storybook.js +2 -2
- package/dist/esm/commands/lint.js +27 -7
- package/dist/esm/commands/utils.js +3 -1
- package/dist/esm/lint-config/eslint/common.cjs +3 -2
- package/dist/esm/lint-config/eslint/typescript/common.cjs +3 -3
- package/dist/esm/lint-config/stylelint.config.cjs +14 -13
- package/dist/esm/monorepo/delete-merged-tags.js +1 -1
- package/dist/esm/monorepo/set-registry-version.js +1 -1
- package/dist/esm/monorepo/set-workspace-version.js +1 -1
- package/dist/esm/server/csp.js +1 -1
- package/dist/esm/server/utils.js +2 -2
- package/dist/esm/testing/jest.config.cjs +2 -0
- package/dist/esm/testing/setup-tests.js +22 -1
- package/dist/esm/transpile/esbuild.js +1 -1
- package/dist/esm/update-notifier.js +1 -1
- package/dist/esm/utils.js +1 -1
- package/dist/esm/webpack/helpers.js +6 -6
- package/dist/esm/webpack/webpack.base.babel.js +4 -4
- package/dist/esm/webpack/webpack.dev.babel.js +1 -1
- package/dist/esm/webpack/webpack.lib.base.babel.js +4 -4
- package/dist/esm/webpack/webpack.lib.dev.babel.js +1 -1
- package/dist/esm/webpack/webpack.storybook.js +2 -2
- package/dist/types/babel.config.d.cts +7 -7
- package/dist/types/commands/build.d.ts +2 -2
- package/dist/types/commands/codemod.d.ts +2 -2
- package/dist/types/commands/lint.d.ts +3 -2
- package/dist/types/commands/pack.d.ts +2 -2
- package/dist/types/commands/start.d.ts +2 -2
- package/dist/types/commands/storybook.d.ts +2 -2
- package/dist/types/commands/test.d.ts +2 -2
- package/dist/types/commands/tscheck.d.ts +2 -2
- package/dist/types/commands/utils.d.ts +1 -0
- package/dist/types/commands/version.d.ts +2 -2
- package/dist/types/commands/vitest.d.ts +2 -2
- package/dist/types/lint-config/commitlint.config.d.cts +1 -1
- package/dist/types/lint-config/eslint/common.d.cts +18 -12
- package/dist/types/lint-config/eslint/non-react.d.cts +8 -1
- package/dist/types/lint-config/eslint/react.d.cts +8 -1
- package/dist/types/lint-config/eslint/typescript/common.d.cts +6 -6
- package/dist/types/lint-config/eslint/typescript/non-react.d.cts +9 -2
- package/dist/types/lint-config/eslint/typescript/react.d.cts +9 -2
- package/dist/types/lint-config/lint-staged.config.d.ts +3 -3
- package/dist/types/lint-config/prettier.config.d.cts +6 -6
- package/dist/types/lint-config/stylelint.config.d.cts +6 -6
- package/dist/types/release.config.d.cts +2 -2
- package/dist/types/server/csp.d.ts +2 -2
- package/dist/types/testing/jest.config.d.cts +24 -22
- package/dist/types/testing/jest.node.config.d.cts +2 -0
- package/dist/types/testing/mocks/axios.d.ts +7 -7
- package/dist/types/testing/mocks/pui-diagnostics.d.ts +13 -13
- package/dist/types/transpile/esbuild.d.ts +3 -3
- package/dist/types/typedoc.d.cts +3 -3
- package/dist/types/webpack/helpers.d.ts +1 -1
- package/package.json +108 -108
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export namespace jestConfig {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
let collectCoverageFrom: string[];
|
|
3
|
+
let coverageThreshold: {};
|
|
4
|
+
let coverageDirectory: string;
|
|
5
|
+
let coverageReporters: string[];
|
|
6
|
+
let moduleDirectories: string[];
|
|
7
|
+
let moduleNameMapper: {
|
|
8
|
+
d3: string;
|
|
9
|
+
'^d3-(.*)$': string;
|
|
8
10
|
'.*\\webpack-hmr(.[t|j]s)?$': string;
|
|
9
11
|
'.*\\.(css|scss)$': string;
|
|
10
12
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': string;
|
|
@@ -16,26 +18,26 @@ export namespace jestConfig {
|
|
|
16
18
|
'react-spring/web': string;
|
|
17
19
|
'react-spring/renderprops': string;
|
|
18
20
|
};
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
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: {
|
|
27
29
|
'^.+\\.[jt]sx?$': any[];
|
|
28
30
|
};
|
|
29
|
-
|
|
31
|
+
let transformIgnorePatterns: string[];
|
|
30
32
|
namespace globals {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
let APP_CONFIG: string | Buffer;
|
|
34
|
+
let __webpack_public_path__: string;
|
|
33
35
|
}
|
|
34
36
|
namespace testEnvironmentOptions {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
let url: string;
|
|
38
|
+
let resources: string;
|
|
37
39
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
40
|
+
let testEnvironment: string;
|
|
41
|
+
let watchPlugins: string[];
|
|
42
|
+
let testTimeout: number;
|
|
41
43
|
}
|
|
@@ -9,6 +9,8 @@ export const jestNodeConfig: {
|
|
|
9
9
|
coverageReporters: string[];
|
|
10
10
|
moduleDirectories: string[];
|
|
11
11
|
moduleNameMapper: {
|
|
12
|
+
d3: string;
|
|
13
|
+
'^d3-(.*)$': string;
|
|
12
14
|
'.*\\webpack-hmr(.[t|j]s)?$': string;
|
|
13
15
|
'.*\\.(css|scss)$': string;
|
|
14
16
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': string;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
declare namespace _default {
|
|
2
|
-
|
|
2
|
+
let defaults: {};
|
|
3
3
|
namespace interceptors {
|
|
4
4
|
namespace request {
|
|
5
|
-
|
|
5
|
+
let use: jest.Mock<any, any, any>;
|
|
6
6
|
}
|
|
7
7
|
namespace response {
|
|
8
|
-
|
|
8
|
+
let use_1: jest.Mock<any, any, any>;
|
|
9
9
|
export { use_1 as use };
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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;
|
package/dist/types/typedoc.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export let entryPoints: string[];
|
|
2
|
+
export let exclude: string[];
|
|
3
|
+
export let out: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
import zlib from 'zlib';
|
|
2
3
|
import CompressionPlugin from 'compression-webpack-plugin';
|
|
3
4
|
import { ObjectPattern } from 'copy-webpack-plugin';
|
|
4
|
-
import zlib from 'zlib';
|
|
5
5
|
export declare const LATEST_VERSION = "latest";
|
|
6
6
|
export declare const excludeNodeModulesExcept: (modules: string[]) => (modulePath: string) => boolean;
|
|
7
7
|
export declare const getLibraryName: () => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "9.0.0-next.
|
|
3
|
+
"version": "9.0.0-next.15",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -77,236 +77,236 @@
|
|
|
77
77
|
"sonar56x": true
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@axe-core/react": "~4.7.
|
|
81
|
-
"@babel/cli": "~7.
|
|
82
|
-
"@babel/core": "~7.
|
|
83
|
-
"@babel/eslint-parser": "~7.
|
|
84
|
-
"@babel/node": "~7.
|
|
80
|
+
"@axe-core/react": "~4.7.3",
|
|
81
|
+
"@babel/cli": "~7.22.9",
|
|
82
|
+
"@babel/core": "~7.22.9",
|
|
83
|
+
"@babel/eslint-parser": "~7.22.9",
|
|
84
|
+
"@babel/node": "~7.22.6",
|
|
85
85
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
86
|
-
"@babel/plugin-proposal-export-default-from": "~7.
|
|
86
|
+
"@babel/plugin-proposal-export-default-from": "~7.22.5",
|
|
87
87
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
88
|
-
"@babel/plugin-syntax-import-assertions": "~7.
|
|
89
|
-
"@babel/plugin-transform-modules-commonjs": "~7.
|
|
90
|
-
"@babel/plugin-transform-react-constant-elements": "~7.
|
|
91
|
-
"@babel/plugin-transform-react-inline-elements": "~7.
|
|
92
|
-
"@babel/plugin-transform-react-jsx-source": "~7.
|
|
93
|
-
"@babel/plugin-transform-runtime": "~7.
|
|
94
|
-
"@babel/preset-env": "~7.
|
|
95
|
-
"@babel/preset-react": "~7.
|
|
96
|
-
"@babel/preset-typescript": "~7.
|
|
97
|
-
"@babel/runtime": "~7.
|
|
98
|
-
"@commitlint/cli": "~17.6.
|
|
99
|
-
"@commitlint/config-conventional": "~17.6.
|
|
88
|
+
"@babel/plugin-syntax-import-assertions": "~7.22.5",
|
|
89
|
+
"@babel/plugin-transform-modules-commonjs": "~7.22.5",
|
|
90
|
+
"@babel/plugin-transform-react-constant-elements": "~7.22.5",
|
|
91
|
+
"@babel/plugin-transform-react-inline-elements": "~7.22.5",
|
|
92
|
+
"@babel/plugin-transform-react-jsx-source": "~7.22.5",
|
|
93
|
+
"@babel/plugin-transform-runtime": "~7.22.9",
|
|
94
|
+
"@babel/preset-env": "~7.22.9",
|
|
95
|
+
"@babel/preset-react": "~7.22.5",
|
|
96
|
+
"@babel/preset-typescript": "~7.22.5",
|
|
97
|
+
"@babel/runtime": "~7.22.6",
|
|
98
|
+
"@commitlint/cli": "~17.6.7",
|
|
99
|
+
"@commitlint/config-conventional": "~17.6.7",
|
|
100
100
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.7.0",
|
|
101
|
-
"@faker-js/faker": "8.0.
|
|
101
|
+
"@faker-js/faker": "8.0.2",
|
|
102
102
|
"@nrwl/cli": "15.9.3",
|
|
103
|
-
"@nrwl/tao": "16.
|
|
104
|
-
"@nrwl/workspace": "16.
|
|
103
|
+
"@nrwl/tao": "16.5.5",
|
|
104
|
+
"@nrwl/workspace": "16.5.5",
|
|
105
105
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.10",
|
|
106
106
|
"@semantic-release/changelog": "~6.0.3",
|
|
107
107
|
"@semantic-release/exec": "~6.0.3",
|
|
108
108
|
"@semantic-release/git": "~10.0.1",
|
|
109
|
-
"@storybook/addon-a11y": "~7.
|
|
110
|
-
"@storybook/addon-essentials": "~7.
|
|
109
|
+
"@storybook/addon-a11y": "~7.1.1",
|
|
110
|
+
"@storybook/addon-essentials": "~7.1.1",
|
|
111
111
|
"@storybook/addon-events": "~6.2.9",
|
|
112
|
-
"@storybook/addon-interactions": "~7.
|
|
113
|
-
"@storybook/addon-links": "~7.
|
|
114
|
-
"@storybook/addon-storysource": "~7.
|
|
115
|
-
"@storybook/blocks": "~7.
|
|
116
|
-
"@storybook/builder-vite": "~7.
|
|
117
|
-
"@storybook/builder-webpack5": "~7.
|
|
112
|
+
"@storybook/addon-interactions": "~7.1.1",
|
|
113
|
+
"@storybook/addon-links": "~7.1.1",
|
|
114
|
+
"@storybook/addon-storysource": "~7.1.1",
|
|
115
|
+
"@storybook/blocks": "~7.1.1",
|
|
116
|
+
"@storybook/builder-vite": "~7.1.1",
|
|
117
|
+
"@storybook/builder-webpack5": "~7.1.1",
|
|
118
118
|
"@storybook/jest": "~0.1.0",
|
|
119
119
|
"@storybook/manager-webpack5": "~6.5.16",
|
|
120
|
-
"@storybook/react": "~7.
|
|
121
|
-
"@storybook/react-vite": "~7.
|
|
122
|
-
"@storybook/react-webpack5": "~7.
|
|
123
|
-
"@storybook/testing-library": "~0.
|
|
124
|
-
"@storybook/theming": "~7.
|
|
120
|
+
"@storybook/react": "~7.1.1",
|
|
121
|
+
"@storybook/react-vite": "~7.1.1",
|
|
122
|
+
"@storybook/react-webpack5": "~7.1.1",
|
|
123
|
+
"@storybook/testing-library": "~0.2.0",
|
|
124
|
+
"@storybook/theming": "~7.1.1",
|
|
125
125
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
126
126
|
"@svgr/webpack": "~8.0.1",
|
|
127
127
|
"@swc/cli": "~0.1.62",
|
|
128
|
-
"@swc/core": "~1.3.
|
|
129
|
-
"@swc/jest": "~0.2.
|
|
130
|
-
"@testing-library/jest-dom": "~5.
|
|
128
|
+
"@swc/core": "~1.3.71",
|
|
129
|
+
"@swc/jest": "~0.2.27",
|
|
130
|
+
"@testing-library/jest-dom": "~5.17.0",
|
|
131
131
|
"@testing-library/react": "~14.0.0",
|
|
132
132
|
"@testing-library/react-hooks": "~8.0.1",
|
|
133
133
|
"@testing-library/user-event": "~14.4.3",
|
|
134
134
|
"@types/circular-dependency-plugin": "~5.0.5",
|
|
135
|
-
"@types/cors": "~2.8.13",
|
|
136
135
|
"@types/compression": "~1.7.2",
|
|
136
|
+
"@types/cors": "~2.8.13",
|
|
137
137
|
"@types/duplicate-package-checker-webpack-plugin": "~2.1.2",
|
|
138
138
|
"@types/ip": "~1.1.0",
|
|
139
|
-
"@types/jest": "~29.5.
|
|
139
|
+
"@types/jest": "~29.5.3",
|
|
140
140
|
"@types/jest-axe": "~3.5.5",
|
|
141
141
|
"@types/moment-locales-webpack-plugin": "~1.2.3",
|
|
142
|
-
"@types/node": "~20.
|
|
142
|
+
"@types/node": "~20.4.5",
|
|
143
143
|
"@types/normalize-path": "~3.0.0",
|
|
144
144
|
"@types/postcss-preset-env": "~8.0.0",
|
|
145
145
|
"@types/rimraf": "~4.0.5",
|
|
146
146
|
"@types/speed-measure-webpack-plugin": "~1.3.4",
|
|
147
147
|
"@types/supertest": "~2.0.12",
|
|
148
|
-
"@types/uuid": "~9.0.
|
|
149
|
-
"@types/testing-library__jest-dom": "~5.14.
|
|
148
|
+
"@types/uuid": "~9.0.2",
|
|
149
|
+
"@types/testing-library__jest-dom": "~5.14.9",
|
|
150
150
|
"@types/webpack-bundle-analyzer": "~4.6.0",
|
|
151
|
-
"@typescript-eslint/eslint-plugin": "~
|
|
152
|
-
"@typescript-eslint/parser": "~
|
|
153
|
-
"@vitejs/plugin-react": "~4.0.
|
|
154
|
-
"@vitest/coverage-c8": "~0.
|
|
151
|
+
"@typescript-eslint/eslint-plugin": "~6.2.0",
|
|
152
|
+
"@typescript-eslint/parser": "~6.2.0",
|
|
153
|
+
"@vitejs/plugin-react": "~4.0.3",
|
|
154
|
+
"@vitest/coverage-c8": "~0.33.0",
|
|
155
155
|
"autoprefixer": "~10.4.14",
|
|
156
|
-
"axe-core": "~4.7.
|
|
156
|
+
"axe-core": "~4.7.2",
|
|
157
157
|
"babel-plugin-date-fns": "~2.0.0",
|
|
158
158
|
"babel-plugin-dynamic-import-node": "~2.3.3",
|
|
159
159
|
"babel-plugin-import-remove-resource-query": "~1.0.0",
|
|
160
160
|
"babel-plugin-lodash": "~3.3.4",
|
|
161
161
|
"babel-plugin-module-resolver": "~5.0.0",
|
|
162
162
|
"babel-plugin-source-map-support": "~2.2.0",
|
|
163
|
-
"babel-plugin-styled-components": "~2.1.
|
|
163
|
+
"babel-plugin-styled-components": "~2.1.4",
|
|
164
164
|
"babel-plugin-transform-react-remove-prop-types": "~0.4.24",
|
|
165
165
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
166
166
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
167
167
|
"body-parser": "~1.20.2",
|
|
168
|
-
"browserslist": "~4.21.
|
|
168
|
+
"browserslist": "~4.21.9",
|
|
169
169
|
"browserslist-to-esbuild": "~1.2.0",
|
|
170
|
-
"chalk": "~5.
|
|
170
|
+
"chalk": "~5.3.0",
|
|
171
171
|
"circular-dependency-plugin": "~5.2.2",
|
|
172
172
|
"compression": "~1.7.4",
|
|
173
173
|
"compression-webpack-plugin": "~10.0.0",
|
|
174
174
|
"copy-webpack-plugin": "~11.0.0",
|
|
175
175
|
"cors": "~2.8.5",
|
|
176
176
|
"cross-env": "~7.0.3",
|
|
177
|
-
"css-loader": "~6.
|
|
178
|
-
"css-minimizer-webpack-plugin": "~5.0.
|
|
177
|
+
"css-loader": "~6.8.1",
|
|
178
|
+
"css-minimizer-webpack-plugin": "~5.0.1",
|
|
179
179
|
"depcheck": "~1.4.3",
|
|
180
180
|
"docdash": "~2.0.1",
|
|
181
|
-
"dotenv": "~16.
|
|
181
|
+
"dotenv": "~16.3.1",
|
|
182
182
|
"dotenv-webpack": "~8.0.1",
|
|
183
183
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
184
|
-
"enhanced-resolve": "5.
|
|
185
|
-
"esbuild": "~0.17
|
|
184
|
+
"enhanced-resolve": "5.15.0",
|
|
185
|
+
"esbuild": "~0.18.17",
|
|
186
186
|
"esbuild-loader": "~3.0.1",
|
|
187
187
|
"esbuild-plugin-lodash": "~1.2.0",
|
|
188
188
|
"esbuild-plugin-svgr": "~2.0.0",
|
|
189
|
-
"eslint": "~8.
|
|
189
|
+
"eslint": "~8.46.0",
|
|
190
190
|
"eslint-config-airbnb": "~19.0.4",
|
|
191
191
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
192
|
-
"eslint-config-airbnb-typescript": "~17.
|
|
193
|
-
"eslint-config-prettier": "~8.
|
|
192
|
+
"eslint-config-airbnb-typescript": "~17.1.0",
|
|
193
|
+
"eslint-config-prettier": "~8.9.0",
|
|
194
194
|
"eslint-config-react-app": "~7.0.1",
|
|
195
195
|
"eslint-import-resolver-babel-module": "~5.3.2",
|
|
196
196
|
"eslint-import-resolver-typescript": "~3.5.5",
|
|
197
197
|
"eslint-import-resolver-webpack": "~0.13.2",
|
|
198
198
|
"eslint-plugin-compat": "~4.1.4",
|
|
199
199
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
200
|
-
"eslint-plugin-import": "~2.
|
|
201
|
-
"eslint-plugin-jest": "~27.2.
|
|
202
|
-
"eslint-plugin-jsdoc": "~
|
|
200
|
+
"eslint-plugin-import": "~2.28.0",
|
|
201
|
+
"eslint-plugin-jest": "~27.2.3",
|
|
202
|
+
"eslint-plugin-jsdoc": "~46.4.5",
|
|
203
203
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
204
204
|
"eslint-plugin-mdx": "~2.1.0",
|
|
205
|
-
"eslint-plugin-prettier": "~
|
|
206
|
-
"eslint-plugin-react": "~7.
|
|
205
|
+
"eslint-plugin-prettier": "~5.0.0",
|
|
206
|
+
"eslint-plugin-react": "~7.33.0",
|
|
207
207
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
208
208
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
209
|
-
"eslint-plugin-storybook": "~0.6.
|
|
209
|
+
"eslint-plugin-storybook": "~0.6.13",
|
|
210
210
|
"eslint-plugin-testing-library": "~5.11.0",
|
|
211
211
|
"eslint-plugin-wdio": "~8.8.7",
|
|
212
|
-
"execa": "~7.
|
|
212
|
+
"execa": "~7.2.0",
|
|
213
213
|
"express": "~4.18.2",
|
|
214
214
|
"express-static-gzip": "~2.1.7",
|
|
215
|
-
"favicons": "~7.1.
|
|
215
|
+
"favicons": "~7.1.4",
|
|
216
216
|
"favicons-webpack-plugin": "~6.0.0",
|
|
217
|
-
"fast-glob": "~3.
|
|
217
|
+
"fast-glob": "~3.3.1",
|
|
218
218
|
"find-up": "~6.3.0",
|
|
219
219
|
"find-up-cli": "~5.0.0",
|
|
220
|
-
"happy-dom": "~
|
|
220
|
+
"happy-dom": "~10.5.2",
|
|
221
221
|
"helmet-csp": "~3.4.0",
|
|
222
222
|
"html-loader": "~4.2.0",
|
|
223
|
-
"html-webpack-plugin": "~5.5.
|
|
223
|
+
"html-webpack-plugin": "~5.5.3",
|
|
224
224
|
"http-server": "~14.1.1",
|
|
225
225
|
"husky": "~8.0.3",
|
|
226
226
|
"husky-init": "~8.0.0",
|
|
227
227
|
"imports-loader": "~4.0.1",
|
|
228
228
|
"ip": "~1.1.8",
|
|
229
|
-
"jest-axe": "~
|
|
230
|
-
"jest-cli": "~29.
|
|
231
|
-
"jest-environment-jsdom": "~29.
|
|
229
|
+
"jest-axe": "~8.0.0",
|
|
230
|
+
"jest-cli": "~29.6.2",
|
|
231
|
+
"jest-environment-jsdom": "~29.6.2",
|
|
232
232
|
"jest-sonar-reporter": "~2.0.0",
|
|
233
233
|
"jest-styled-components": "~7.1.1",
|
|
234
234
|
"jest-watch-typeahead": "~2.2.2",
|
|
235
235
|
"jscodeshift": "~0.15.0",
|
|
236
236
|
"jsdoc": "~4.0.2",
|
|
237
|
-
"lerna": "~
|
|
238
|
-
"lint-staged": "~13.2.
|
|
239
|
-
"mini-css-extract-plugin": "~2.7.
|
|
237
|
+
"lerna": "~7.1.4",
|
|
238
|
+
"lint-staged": "~13.2.3",
|
|
239
|
+
"mini-css-extract-plugin": "~2.7.6",
|
|
240
240
|
"minimist": "~1.2.8",
|
|
241
241
|
"moment": "~2.29.4",
|
|
242
242
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
243
|
-
"msw": "~1.2.
|
|
243
|
+
"msw": "~1.2.3",
|
|
244
244
|
"npm-run-all": "~4.1.5",
|
|
245
|
-
"node-gyp": "~9.
|
|
245
|
+
"node-gyp": "~9.4.0",
|
|
246
246
|
"node-plop": "~0.31.1",
|
|
247
|
-
"nodemon": "~
|
|
247
|
+
"nodemon": "~3.0.1",
|
|
248
248
|
"normalize-path": "~3.0.0",
|
|
249
|
-
"npm-check-updates": "16.10.
|
|
250
|
-
"pino": "~8.14.
|
|
249
|
+
"npm-check-updates": "16.10.17",
|
|
250
|
+
"pino": "~8.14.2",
|
|
251
251
|
"pino-http": "~8.3.3",
|
|
252
|
-
"pino-pretty": "~10.
|
|
252
|
+
"pino-pretty": "~10.2.0",
|
|
253
253
|
"plop": "~3.1.2",
|
|
254
|
-
"postcss": "~8.4.
|
|
254
|
+
"postcss": "~8.4.27",
|
|
255
255
|
"postcss-html": "~1.5.0",
|
|
256
256
|
"postcss-jsx": "~0.36.4",
|
|
257
|
-
"postcss-loader": "~7.3.
|
|
257
|
+
"postcss-loader": "~7.3.3",
|
|
258
258
|
"postcss-markdown": "~1.2.0",
|
|
259
|
-
"postcss-preset-env": "~
|
|
259
|
+
"postcss-preset-env": "~9.1.0",
|
|
260
260
|
"postcss-syntax": "~0.36.2",
|
|
261
|
-
"prettier": "~
|
|
262
|
-
"prisma": "~
|
|
261
|
+
"prettier": "~3.0.0",
|
|
262
|
+
"prisma": "~5.0.0",
|
|
263
263
|
"pug": "~3.0.2",
|
|
264
264
|
"pug-loader": "~2.4.0",
|
|
265
265
|
"raf": "~3.4.1",
|
|
266
|
-
"react-docgen": "~
|
|
266
|
+
"react-docgen": "~6.0.2",
|
|
267
267
|
"react-refresh": "~0.14.0",
|
|
268
268
|
"react-test-renderer": "~18.2.0",
|
|
269
269
|
"resize-observer-polyfill": "~1.5.1",
|
|
270
270
|
"resolve-typescript-plugin": "~2.0.1",
|
|
271
|
-
"rimraf": "~5.0.
|
|
272
|
-
"semantic-release": "~21.0.
|
|
271
|
+
"rimraf": "~5.0.1",
|
|
272
|
+
"semantic-release": "~21.0.7",
|
|
273
273
|
"slackify-markdown": "~4.3.1",
|
|
274
274
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
275
|
-
"storybook": "~7.
|
|
275
|
+
"storybook": "~7.1.1",
|
|
276
276
|
"storybook-addon-turbo-build": "~2.0.1",
|
|
277
277
|
"storybook-react-router": "~1.0.8",
|
|
278
|
-
"style-loader": "~3.3.
|
|
279
|
-
"stylelint": "~15.
|
|
280
|
-
"stylelint-config-recommended": "~
|
|
278
|
+
"style-loader": "~3.3.3",
|
|
279
|
+
"stylelint": "~15.10.2",
|
|
280
|
+
"stylelint-config-recommended": "~13.0.0",
|
|
281
281
|
"stylelint-config-styled-components": "~0.1.1",
|
|
282
282
|
"supertest": "~6.3.3",
|
|
283
283
|
"swc-loader": "~0.2.3",
|
|
284
284
|
"ts-node": "~10.9.1",
|
|
285
|
-
"tsc-alias": "~1.8.
|
|
286
|
-
"typedoc": "~0.24.
|
|
287
|
-
"typescript": "~5.
|
|
285
|
+
"tsc-alias": "~1.8.7",
|
|
286
|
+
"typedoc": "~0.24.8",
|
|
287
|
+
"typescript": "~5.1.6",
|
|
288
288
|
"update-notifier": "~6.0.2",
|
|
289
289
|
"url-loader": "~4.1.1",
|
|
290
290
|
"uuid": "~9.0.0",
|
|
291
|
-
"vite": "~4.
|
|
292
|
-
"vitest": "~0.
|
|
291
|
+
"vite": "~4.4.7",
|
|
292
|
+
"vitest": "~0.33.0",
|
|
293
293
|
"vite-tsconfig-paths": "~4.2.0",
|
|
294
|
-
"webpack": "~5.
|
|
295
|
-
"webpack-bundle-analyzer": "~4.
|
|
296
|
-
"webpack-cli": "~5.1.
|
|
297
|
-
"webpack-dev-server": "~4.15.
|
|
294
|
+
"webpack": "~5.88.2",
|
|
295
|
+
"webpack-bundle-analyzer": "~4.9.0",
|
|
296
|
+
"webpack-cli": "~5.1.4",
|
|
297
|
+
"webpack-dev-server": "~4.15.1",
|
|
298
298
|
"webpack-manifest-plugin": "~5.0.0",
|
|
299
|
-
"webpack-merge": "~5.
|
|
300
|
-
"whatwg-fetch": "~3.6.
|
|
301
|
-
"workbox-webpack-plugin": "~
|
|
299
|
+
"webpack-merge": "~5.9.0",
|
|
300
|
+
"whatwg-fetch": "~3.6.17",
|
|
301
|
+
"workbox-webpack-plugin": "~7.0.0",
|
|
302
302
|
"yargs": "~17.7.2"
|
|
303
303
|
},
|
|
304
304
|
"devDependencies": {
|
|
305
|
-
"@elliemae/pui-doc-gen": "~1.
|
|
305
|
+
"@elliemae/pui-doc-gen": "~1.7.1",
|
|
306
306
|
"react": "~18.2.0",
|
|
307
307
|
"react-dom": "~18.2.0",
|
|
308
308
|
"redux": "~4.2.1",
|
|
309
309
|
"redux-saga": "~1.2.3",
|
|
310
|
-
"styled-components": "~
|
|
310
|
+
"styled-components": "~6.0.5"
|
|
311
311
|
}
|
|
312
312
|
}
|