@elliemae/pui-cli 8.40.3 → 8.41.1
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/server/csp.js +4 -20
- package/dist/cjs/server/middlewares.js +5 -0
- package/dist/cjs/webpack/csp-plugin.js +83 -0
- package/dist/cjs/webpack/csp.js +158 -0
- package/dist/cjs/webpack/webpack.dev.babel.js +3 -0
- package/dist/cjs/webpack/webpack.prod.babel.js +4 -1
- package/dist/esm/server/csp.js +4 -20
- package/dist/esm/server/middlewares.js +5 -0
- package/dist/esm/webpack/csp-plugin.js +53 -0
- package/dist/esm/webpack/csp.js +128 -0
- package/dist/esm/webpack/webpack.dev.babel.js +3 -0
- package/dist/esm/webpack/webpack.prod.babel.js +4 -1
- package/dist/types/lib/webpack/csp-plugin.d.ts +34 -0
- package/dist/types/lib/webpack/csp.d.ts +65 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +28 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.41.1",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/cjs/index.cjs",
|
|
@@ -74,23 +74,23 @@
|
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"@axe-core/react": "~4.10.0",
|
|
77
|
-
"@babel/cli": "~7.25.
|
|
78
|
-
"@babel/core": "~7.
|
|
79
|
-
"@babel/eslint-parser": "~7.25.
|
|
80
|
-
"@babel/node": "~7.
|
|
77
|
+
"@babel/cli": "~7.25.9",
|
|
78
|
+
"@babel/core": "~7.26.0",
|
|
79
|
+
"@babel/eslint-parser": "~7.25.9",
|
|
80
|
+
"@babel/node": "~7.26.0",
|
|
81
81
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
82
|
-
"@babel/plugin-proposal-export-default-from": "~7.25.
|
|
82
|
+
"@babel/plugin-proposal-export-default-from": "~7.25.9",
|
|
83
83
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
84
|
-
"@babel/plugin-syntax-import-assertions": "~7.
|
|
85
|
-
"@babel/plugin-transform-modules-commonjs": "~7.25.
|
|
86
|
-
"@babel/plugin-transform-react-constant-elements": "~7.25.
|
|
87
|
-
"@babel/plugin-transform-react-inline-elements": "~7.25.
|
|
88
|
-
"@babel/plugin-transform-react-jsx-source": "~7.25.
|
|
89
|
-
"@babel/plugin-transform-runtime": "~7.25.
|
|
90
|
-
"@babel/preset-env": "~7.
|
|
91
|
-
"@babel/preset-react": "~7.25.
|
|
92
|
-
"@babel/preset-typescript": "~7.
|
|
93
|
-
"@babel/runtime": "~7.
|
|
84
|
+
"@babel/plugin-syntax-import-assertions": "~7.26.0",
|
|
85
|
+
"@babel/plugin-transform-modules-commonjs": "~7.25.9",
|
|
86
|
+
"@babel/plugin-transform-react-constant-elements": "~7.25.9",
|
|
87
|
+
"@babel/plugin-transform-react-inline-elements": "~7.25.9",
|
|
88
|
+
"@babel/plugin-transform-react-jsx-source": "~7.25.9",
|
|
89
|
+
"@babel/plugin-transform-runtime": "~7.25.9",
|
|
90
|
+
"@babel/preset-env": "~7.26.0",
|
|
91
|
+
"@babel/preset-react": "~7.25.9",
|
|
92
|
+
"@babel/preset-typescript": "~7.26.0",
|
|
93
|
+
"@babel/runtime": "~7.26.0",
|
|
94
94
|
"@commitlint/cli": "~17.8.1",
|
|
95
95
|
"@commitlint/config-conventional": "~17.8.1",
|
|
96
96
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.10.0",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
117
117
|
"@svgr/webpack": "~7.0.0",
|
|
118
118
|
"@swc/cli": "~0.4.0",
|
|
119
|
-
"@swc/core": "~1.7.
|
|
119
|
+
"@swc/core": "~1.7.40",
|
|
120
120
|
"@swc/jest": "~0.2.36",
|
|
121
121
|
"@testing-library/jest-dom": "~5.17.0",
|
|
122
122
|
"@testing-library/react": "~14.3.1",
|
|
@@ -127,10 +127,10 @@
|
|
|
127
127
|
"@types/cors": "~2.8.17",
|
|
128
128
|
"@types/duplicate-package-checker-webpack-plugin": "~2.1.5",
|
|
129
129
|
"@types/ip": "~1.1.3",
|
|
130
|
-
"@types/jest": "~29.5.
|
|
130
|
+
"@types/jest": "~29.5.14",
|
|
131
131
|
"@types/jest-axe": "~3.5.9",
|
|
132
132
|
"@types/moment-locales-webpack-plugin": "~1.2.6",
|
|
133
|
-
"@types/node": "~18.19.
|
|
133
|
+
"@types/node": "~18.19.61",
|
|
134
134
|
"@types/normalize-path": "~3.0.2",
|
|
135
135
|
"@types/postcss-preset-env": "~7.7.0",
|
|
136
136
|
"@types/rimraf": "~3.0.2",
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"@vitest/coverage-c8": "~0.33.0",
|
|
146
146
|
"@vitest/coverage-v8": "~0.34.6",
|
|
147
147
|
"autoprefixer": "~10.4.20",
|
|
148
|
-
"axe-core": "~4.10.
|
|
148
|
+
"axe-core": "~4.10.2",
|
|
149
149
|
"babel-plugin-date-fns": "~2.0.0",
|
|
150
150
|
"babel-plugin-dynamic-import-node": "~2.3.3",
|
|
151
151
|
"babel-plugin-import-remove-resource-query": "~1.0.0",
|
|
@@ -157,9 +157,10 @@
|
|
|
157
157
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
158
158
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
159
159
|
"body-parser": "~1.20.3",
|
|
160
|
-
"browserslist": "~4.24.
|
|
160
|
+
"browserslist": "~4.24.2",
|
|
161
161
|
"browserslist-to-esbuild": "~1.2.0",
|
|
162
162
|
"chalk": "~5.3.0",
|
|
163
|
+
"cheerio": "~1.0.0",
|
|
163
164
|
"circular-dependency-plugin": "~5.2.2",
|
|
164
165
|
"compression": "~1.7.4",
|
|
165
166
|
"compression-webpack-plugin": "~10.0.0",
|
|
@@ -191,10 +192,10 @@
|
|
|
191
192
|
"eslint-plugin-import": "~2.31.0",
|
|
192
193
|
"eslint-plugin-jest": "~27.9.0",
|
|
193
194
|
"eslint-plugin-jsdoc": "~43.2.0",
|
|
194
|
-
"eslint-plugin-jsx-a11y": "~6.10.
|
|
195
|
+
"eslint-plugin-jsx-a11y": "~6.10.2",
|
|
195
196
|
"eslint-plugin-mdx": "~2.3.4",
|
|
196
197
|
"eslint-plugin-prettier": "~4.2.1",
|
|
197
|
-
"eslint-plugin-react": "~7.37.
|
|
198
|
+
"eslint-plugin-react": "~7.37.2",
|
|
198
199
|
"eslint-plugin-react-hooks": "~4.6.2",
|
|
199
200
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
200
201
|
"eslint-plugin-storybook": "~0.10.1",
|
|
@@ -211,7 +212,7 @@
|
|
|
211
212
|
"happy-dom": "~12.10.3",
|
|
212
213
|
"helmet": "~8.0.0",
|
|
213
214
|
"html-loader": "~4.2.0",
|
|
214
|
-
"html-webpack-plugin": "~5.6.
|
|
215
|
+
"html-webpack-plugin": "~5.6.3",
|
|
215
216
|
"http-server": "~14.1.1",
|
|
216
217
|
"husky": "~8.0.3",
|
|
217
218
|
"husky-init": "~8.0.0",
|
|
@@ -236,7 +237,7 @@
|
|
|
236
237
|
"node-plop": "~0.32.0",
|
|
237
238
|
"nodemon": "~2.0.22",
|
|
238
239
|
"normalize-path": "~3.0.0",
|
|
239
|
-
"npm-check-updates": "~17.1.
|
|
240
|
+
"npm-check-updates": "~17.1.9",
|
|
240
241
|
"npm-run-all": "~4.1.5",
|
|
241
242
|
"pino": "~8.21.0",
|
|
242
243
|
"pino-http": "~8.6.1",
|
|
@@ -271,16 +272,16 @@
|
|
|
271
272
|
"stylelint-config-styled-components": "~0.1.1",
|
|
272
273
|
"supertest": "~6.3.4",
|
|
273
274
|
"swc-loader": "~0.2.6",
|
|
274
|
-
"tsconfig-paths-webpack-plugin": "~3.5.2",
|
|
275
275
|
"ts-node": "~10.9.2",
|
|
276
276
|
"tsc-alias": "~1.8.10",
|
|
277
|
+
"tsconfig-paths-webpack-plugin": "~3.5.2",
|
|
277
278
|
"tsx": "~3.14.0",
|
|
278
279
|
"typedoc": "~0.26.10",
|
|
279
280
|
"typescript": "~5.6.3",
|
|
280
281
|
"update-notifier": "~6.0.2",
|
|
281
282
|
"url-loader": "~4.1.1",
|
|
282
283
|
"uuid": "~9.0.1",
|
|
283
|
-
"vite": "~5.4.
|
|
284
|
+
"vite": "~5.4.10",
|
|
284
285
|
"vite-tsconfig-paths": "~4.3.2",
|
|
285
286
|
"vitest": "~1.6.0",
|
|
286
287
|
"webpack": "~5.95.0",
|