@elliemae/pui-cli 9.0.0-next.13 → 9.0.0-next.14
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/types/babel.config.d.cts +7 -7
- package/dist/types/lint-config/commitlint.config.d.cts +1 -1
- package/dist/types/lint-config/eslint/common.d.cts +10 -10
- package/dist/types/lint-config/eslint/typescript/common.d.cts +6 -6
- package/dist/types/lint-config/prettier.config.d.cts +6 -6
- package/dist/types/lint-config/stylelint.config.d.cts +4 -4
- package/dist/types/release.config.d.cts +2 -2
- package/dist/types/testing/jest.config.d.cts +22 -22
- 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/package.json +87 -87
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export { config as babelConfig };
|
|
2
2
|
declare namespace config {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
47
|
+
let plugins_3: (string | (string | {
|
|
48
48
|
displayName: boolean;
|
|
49
49
|
})[] | (string | {
|
|
50
50
|
requireDirective: boolean;
|
|
@@ -6,24 +6,24 @@ export const baseOverrides: {
|
|
|
6
6
|
};
|
|
7
7
|
}[];
|
|
8
8
|
export namespace baseConfig {
|
|
9
|
-
export
|
|
9
|
+
export let parser: string;
|
|
10
10
|
export { basePlugins as plugins };
|
|
11
11
|
export namespace env {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
let jest: boolean;
|
|
13
|
+
let browser: boolean;
|
|
14
|
+
let node: boolean;
|
|
15
|
+
let es2021: boolean;
|
|
16
16
|
}
|
|
17
17
|
export namespace parserOptions {
|
|
18
|
-
|
|
18
|
+
let sourceType: string;
|
|
19
19
|
namespace ecmaFeatures {
|
|
20
|
-
|
|
20
|
+
let jsx: boolean;
|
|
21
21
|
}
|
|
22
22
|
namespace babelOptions {
|
|
23
|
-
|
|
23
|
+
let plugins: string[];
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
export
|
|
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
|
|
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
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
let files: string[];
|
|
24
|
+
let parser: string;
|
|
25
|
+
let plugins: string[];
|
|
26
26
|
namespace parserOptions {
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
let tsconfigRootDir: string;
|
|
28
|
+
let project: string;
|
|
29
29
|
}
|
|
30
|
-
|
|
30
|
+
let settings: {
|
|
31
31
|
'import/resolver': {
|
|
32
32
|
typescript: {
|
|
33
33
|
alwaysTryTypes: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export namespace prettierConfig {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
|
3
|
-
export
|
|
4
|
-
|
|
2
|
+
export let ignoreFiles: string[];
|
|
3
|
+
export let customSyntax: string;
|
|
4
|
+
let _extends: string[];
|
|
5
5
|
export { _extends as extends };
|
|
6
|
-
export
|
|
6
|
+
export let rules: {
|
|
7
7
|
'selector-type-no-unknown': null;
|
|
8
8
|
'function-no-unknown': null;
|
|
9
9
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
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
8
|
'.*\\webpack-hmr(.[t|j]s)?$': string;
|
|
9
9
|
'.*\\.(css|scss)$': string;
|
|
10
10
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': string;
|
|
@@ -16,26 +16,26 @@ export namespace jestConfig {
|
|
|
16
16
|
'react-spring/web': string;
|
|
17
17
|
'react-spring/renderprops': string;
|
|
18
18
|
};
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
19
|
+
let moduleFileExtensions: string[];
|
|
20
|
+
let setupFilesAfterEnv: string[];
|
|
21
|
+
let setupFiles: string[];
|
|
22
|
+
let testRegex: string;
|
|
23
|
+
let snapshotSerializers: never[];
|
|
24
|
+
let testResultsProcessor: string;
|
|
25
|
+
let resolver: string;
|
|
26
|
+
let transform: {
|
|
27
27
|
'^.+\\.[jt]sx?$': any[];
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
let transformIgnorePatterns: string[];
|
|
30
30
|
namespace globals {
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
let APP_CONFIG: string | Buffer;
|
|
32
|
+
let __webpack_public_path__: string;
|
|
33
33
|
}
|
|
34
34
|
namespace testEnvironmentOptions {
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
let url: string;
|
|
36
|
+
let resources: string;
|
|
37
37
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
let testEnvironment: string;
|
|
39
|
+
let watchPlugins: string[];
|
|
40
|
+
let testTimeout: number;
|
|
41
41
|
}
|
|
@@ -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;
|
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.14",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -77,55 +77,55 @@
|
|
|
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.5",
|
|
82
|
+
"@babel/core": "~7.22.5",
|
|
83
|
+
"@babel/eslint-parser": "~7.22.5",
|
|
84
|
+
"@babel/node": "~7.22.5",
|
|
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.5",
|
|
94
|
+
"@babel/preset-env": "~7.22.5",
|
|
95
|
+
"@babel/preset-react": "~7.22.5",
|
|
96
|
+
"@babel/preset-typescript": "~7.22.5",
|
|
97
|
+
"@babel/runtime": "~7.22.5",
|
|
98
|
+
"@commitlint/cli": "~17.6.6",
|
|
99
|
+
"@commitlint/config-conventional": "~17.6.6",
|
|
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.4.2",
|
|
104
|
+
"@nrwl/workspace": "16.4.2",
|
|
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.0.
|
|
110
|
-
"@storybook/addon-essentials": "~7.0.
|
|
109
|
+
"@storybook/addon-a11y": "~7.0.25",
|
|
110
|
+
"@storybook/addon-essentials": "~7.0.25",
|
|
111
111
|
"@storybook/addon-events": "~6.2.9",
|
|
112
|
-
"@storybook/addon-interactions": "~7.0.
|
|
113
|
-
"@storybook/addon-links": "~7.0.
|
|
114
|
-
"@storybook/addon-storysource": "~7.0.
|
|
115
|
-
"@storybook/blocks": "~7.0.
|
|
116
|
-
"@storybook/builder-vite": "~7.0.
|
|
117
|
-
"@storybook/builder-webpack5": "~7.0.
|
|
112
|
+
"@storybook/addon-interactions": "~7.0.25",
|
|
113
|
+
"@storybook/addon-links": "~7.0.25",
|
|
114
|
+
"@storybook/addon-storysource": "~7.0.25",
|
|
115
|
+
"@storybook/blocks": "~7.0.25",
|
|
116
|
+
"@storybook/builder-vite": "~7.0.25",
|
|
117
|
+
"@storybook/builder-webpack5": "~7.0.25",
|
|
118
118
|
"@storybook/jest": "~0.1.0",
|
|
119
119
|
"@storybook/manager-webpack5": "~6.5.16",
|
|
120
|
-
"@storybook/react": "~7.0.
|
|
121
|
-
"@storybook/react-vite": "~7.0.
|
|
122
|
-
"@storybook/react-webpack5": "~7.0.
|
|
123
|
-
"@storybook/testing-library": "~0.
|
|
124
|
-
"@storybook/theming": "~7.0.
|
|
120
|
+
"@storybook/react": "~7.0.25",
|
|
121
|
+
"@storybook/react-vite": "~7.0.25",
|
|
122
|
+
"@storybook/react-webpack5": "~7.0.25",
|
|
123
|
+
"@storybook/testing-library": "~0.2.0",
|
|
124
|
+
"@storybook/theming": "~7.0.25",
|
|
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.
|
|
128
|
+
"@swc/core": "~1.3.67",
|
|
129
129
|
"@swc/jest": "~0.2.26",
|
|
130
130
|
"@testing-library/jest-dom": "~5.16.5",
|
|
131
131
|
"@testing-library/react": "~14.0.0",
|
|
@@ -136,57 +136,57 @@
|
|
|
136
136
|
"@types/compression": "~1.7.2",
|
|
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.2",
|
|
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.3.3",
|
|
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.6",
|
|
150
150
|
"@types/webpack-bundle-analyzer": "~4.6.0",
|
|
151
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
152
|
-
"@typescript-eslint/parser": "~5.
|
|
153
|
-
"@vitejs/plugin-react": "~4.0.
|
|
154
|
-
"@vitest/coverage-c8": "~0.
|
|
151
|
+
"@typescript-eslint/eslint-plugin": "~5.61.0",
|
|
152
|
+
"@typescript-eslint/parser": "~5.61.0",
|
|
153
|
+
"@vitejs/plugin-react": "~4.0.1",
|
|
154
|
+
"@vitest/coverage-c8": "~0.32.4",
|
|
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.
|
|
184
|
+
"enhanced-resolve": "5.15.0",
|
|
185
|
+
"esbuild": "~0.18.11",
|
|
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.44.0",
|
|
190
190
|
"eslint-config-airbnb": "~19.0.4",
|
|
191
191
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
192
192
|
"eslint-config-airbnb-typescript": "~17.0.0",
|
|
@@ -198,8 +198,8 @@
|
|
|
198
198
|
"eslint-plugin-compat": "~4.1.4",
|
|
199
199
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
200
200
|
"eslint-plugin-import": "~2.27.5",
|
|
201
|
-
"eslint-plugin-jest": "~27.2.
|
|
202
|
-
"eslint-plugin-jsdoc": "~
|
|
201
|
+
"eslint-plugin-jest": "~27.2.2",
|
|
202
|
+
"eslint-plugin-jsdoc": "~46.4.3",
|
|
203
203
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
204
204
|
"eslint-plugin-mdx": "~2.1.0",
|
|
205
205
|
"eslint-plugin-prettier": "~4.2.1",
|
|
@@ -212,15 +212,15 @@
|
|
|
212
212
|
"execa": "~7.1.1",
|
|
213
213
|
"express": "~4.18.2",
|
|
214
214
|
"express-static-gzip": "~2.1.7",
|
|
215
|
-
"favicons": "~7.1.
|
|
215
|
+
"favicons": "~7.1.3",
|
|
216
216
|
"favicons-webpack-plugin": "~6.0.0",
|
|
217
|
-
"fast-glob": "~3.
|
|
217
|
+
"fast-glob": "~3.3.0",
|
|
218
218
|
"find-up": "~6.3.0",
|
|
219
219
|
"find-up-cli": "~5.0.0",
|
|
220
|
-
"happy-dom": "~9.
|
|
220
|
+
"happy-dom": "~9.20.3",
|
|
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",
|
|
@@ -234,71 +234,71 @@
|
|
|
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.1",
|
|
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.2",
|
|
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
247
|
"nodemon": "~2.0.22",
|
|
248
248
|
"normalize-path": "~3.0.0",
|
|
249
|
-
"npm-check-updates": "16.10.
|
|
249
|
+
"npm-check-updates": "16.10.13",
|
|
250
250
|
"pino": "~8.14.1",
|
|
251
251
|
"pino-http": "~8.3.3",
|
|
252
252
|
"pino-pretty": "~10.0.0",
|
|
253
253
|
"plop": "~3.1.2",
|
|
254
|
-
"postcss": "~8.4.
|
|
254
|
+
"postcss": "~8.4.24",
|
|
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.0.0",
|
|
260
260
|
"postcss-syntax": "~0.36.2",
|
|
261
261
|
"prettier": "~2.8.8",
|
|
262
|
-
"prisma": "~4.
|
|
262
|
+
"prisma": "~4.16.2",
|
|
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.1",
|
|
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.6",
|
|
273
273
|
"slackify-markdown": "~4.3.1",
|
|
274
274
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
275
|
-
"storybook": "~7.0.
|
|
275
|
+
"storybook": "~7.0.25",
|
|
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.
|
|
278
|
+
"style-loader": "~3.3.3",
|
|
279
|
+
"stylelint": "~15.9.0",
|
|
280
280
|
"stylelint-config-recommended": "~12.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
285
|
"tsc-alias": "~1.8.6",
|
|
286
|
-
"typedoc": "~0.24.
|
|
287
|
-
"typescript": "~5.
|
|
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.3.
|
|
292
|
-
"vitest": "~0.
|
|
291
|
+
"vite": "~4.3.9",
|
|
292
|
+
"vitest": "~0.32.4",
|
|
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.1",
|
|
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.
|
|
299
|
+
"webpack-merge": "~5.9.0",
|
|
300
300
|
"whatwg-fetch": "~3.6.2",
|
|
301
|
-
"workbox-webpack-plugin": "~
|
|
301
|
+
"workbox-webpack-plugin": "~7.0.0",
|
|
302
302
|
"yargs": "~17.7.2"
|
|
303
303
|
},
|
|
304
304
|
"devDependencies": {
|
|
@@ -307,6 +307,6 @@
|
|
|
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.2"
|
|
311
311
|
}
|
|
312
312
|
}
|