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