@elliemae/pui-cli 9.0.0-next.22 → 9.0.0-next.23
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.
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var import_vitest = require("vitest");
|
|
3
|
-
var import_jest_styled_components = require("jest-styled-components");
|
|
4
3
|
var import_react = require("@testing-library/react");
|
|
5
|
-
var import_jest_globals = require("@testing-library/jest-dom/jest-globals");
|
|
6
4
|
(0, import_vitest.afterEach)(() => {
|
|
7
5
|
(0, import_react.cleanup)();
|
|
8
6
|
});
|
|
@@ -35,27 +35,27 @@ var import_node_path = __toESM(require("node:path"), 1);
|
|
|
35
35
|
var import_node_url = require("node:url");
|
|
36
36
|
var import_config = require("vitest/config");
|
|
37
37
|
var import_plugin_react = __toESM(require("@vitejs/plugin-react"), 1);
|
|
38
|
+
var import_vite_tsconfig_paths = __toESM(require("vite-tsconfig-paths"), 1);
|
|
38
39
|
const import_meta = {};
|
|
39
40
|
const __dirname = import_node_path.default.dirname((0, import_node_url.fileURLToPath)(import_meta.url));
|
|
40
41
|
const vitestConfig = (0, import_config.defineConfig)({
|
|
41
|
-
plugins: [(0, import_plugin_react.default)()],
|
|
42
|
+
plugins: [(0, import_plugin_react.default)(), (0, import_vite_tsconfig_paths.default)()],
|
|
42
43
|
test: {
|
|
43
44
|
globals: true,
|
|
44
45
|
root: process.cwd(),
|
|
45
|
-
environment: "
|
|
46
|
+
environment: "happy-dom",
|
|
46
47
|
setupFiles: [import_node_path.default.resolve(__dirname, "./setup-test-env.js")],
|
|
47
48
|
include: ["./{app,lib}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
48
49
|
exclude: [...import_config.configDefaults.exclude, ".idea", ".git", ".cache", "e2e"],
|
|
49
|
-
// watchIgnore: [
|
|
50
|
-
// '.*\\/node_modules\\/.*',
|
|
51
|
-
// '.*\\/build\\/.*',
|
|
52
|
-
// '.*\\/dist\\/.*',
|
|
53
|
-
// ],
|
|
54
50
|
coverage: {
|
|
55
51
|
reportsDirectory: "./reports/coverage"
|
|
56
52
|
},
|
|
57
53
|
deps: {
|
|
58
|
-
|
|
54
|
+
optimizer: {
|
|
55
|
+
web: {
|
|
56
|
+
include: ["app.config.json", "@elliemae/pui-app-sdk"]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
});
|
|
@@ -2,26 +2,26 @@ import path from "node:path";
|
|
|
2
2
|
import { fileURLToPath } from "node:url";
|
|
3
3
|
import { defineConfig, configDefaults } from "vitest/config";
|
|
4
4
|
import react from "@vitejs/plugin-react";
|
|
5
|
+
import tsconfigPaths from "vite-tsconfig-paths";
|
|
5
6
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
6
7
|
const vitestConfig = defineConfig({
|
|
7
|
-
plugins: [react()],
|
|
8
|
+
plugins: [react(), tsconfigPaths()],
|
|
8
9
|
test: {
|
|
9
10
|
globals: true,
|
|
10
11
|
root: process.cwd(),
|
|
11
|
-
environment: "
|
|
12
|
+
environment: "happy-dom",
|
|
12
13
|
setupFiles: [path.resolve(__dirname, "./setup-test-env.js")],
|
|
13
14
|
include: ["./{app,lib}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
14
15
|
exclude: [...configDefaults.exclude, ".idea", ".git", ".cache", "e2e"],
|
|
15
|
-
// watchIgnore: [
|
|
16
|
-
// '.*\\/node_modules\\/.*',
|
|
17
|
-
// '.*\\/build\\/.*',
|
|
18
|
-
// '.*\\/dist\\/.*',
|
|
19
|
-
// ],
|
|
20
16
|
coverage: {
|
|
21
17
|
reportsDirectory: "./reports/coverage"
|
|
22
18
|
},
|
|
23
19
|
deps: {
|
|
24
|
-
|
|
20
|
+
optimizer: {
|
|
21
|
+
web: {
|
|
22
|
+
include: ["app.config.json", "@elliemae/pui-app-sdk"]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
});
|
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.23",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -77,9 +77,9 @@
|
|
|
77
77
|
"sonar56x": true
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@axe-core/react": "~4.
|
|
80
|
+
"@axe-core/react": "~4.8.1",
|
|
81
81
|
"@babel/cli": "~7.23.0",
|
|
82
|
-
"@babel/core": "~7.23.
|
|
82
|
+
"@babel/core": "~7.23.2",
|
|
83
83
|
"@babel/eslint-parser": "~7.22.15",
|
|
84
84
|
"@babel/node": "~7.22.19",
|
|
85
85
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
@@ -90,66 +90,66 @@
|
|
|
90
90
|
"@babel/plugin-transform-react-constant-elements": "~7.22.5",
|
|
91
91
|
"@babel/plugin-transform-react-inline-elements": "~7.22.5",
|
|
92
92
|
"@babel/plugin-transform-react-jsx-source": "~7.22.5",
|
|
93
|
-
"@babel/plugin-transform-runtime": "~7.
|
|
94
|
-
"@babel/preset-env": "~7.
|
|
93
|
+
"@babel/plugin-transform-runtime": "~7.23.2",
|
|
94
|
+
"@babel/preset-env": "~7.23.2",
|
|
95
95
|
"@babel/preset-react": "~7.22.15",
|
|
96
|
-
"@babel/preset-typescript": "~7.23.
|
|
97
|
-
"@babel/runtime": "~7.23.
|
|
98
|
-
"@commitlint/cli": "~
|
|
99
|
-
"@commitlint/config-conventional": "~
|
|
96
|
+
"@babel/preset-typescript": "~7.23.2",
|
|
97
|
+
"@babel/runtime": "~7.23.2",
|
|
98
|
+
"@commitlint/cli": "~18.2.0",
|
|
99
|
+
"@commitlint/config-conventional": "~18.1.0",
|
|
100
100
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.8.0",
|
|
101
|
-
"@faker-js/faker": "8.
|
|
101
|
+
"@faker-js/faker": "8.2.0",
|
|
102
102
|
"@nrwl/cli": "15.9.3",
|
|
103
|
-
"@nrwl/tao": "
|
|
104
|
-
"@nrwl/workspace": "
|
|
103
|
+
"@nrwl/tao": "17.0.2",
|
|
104
|
+
"@nrwl/workspace": "17.0.2",
|
|
105
105
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.11",
|
|
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.5.1",
|
|
110
|
+
"@storybook/addon-essentials": "~7.5.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.
|
|
118
|
-
"@storybook/jest": "~0.2.
|
|
112
|
+
"@storybook/addon-interactions": "~7.5.1",
|
|
113
|
+
"@storybook/addon-links": "~7.5.1",
|
|
114
|
+
"@storybook/addon-storysource": "~7.5.1",
|
|
115
|
+
"@storybook/blocks": "~7.5.1",
|
|
116
|
+
"@storybook/builder-vite": "~7.5.1",
|
|
117
|
+
"@storybook/builder-webpack5": "~7.5.1",
|
|
118
|
+
"@storybook/jest": "~0.2.3",
|
|
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.2.
|
|
124
|
-
"@storybook/theming": "~7.
|
|
120
|
+
"@storybook/react": "~7.5.1",
|
|
121
|
+
"@storybook/react-vite": "~7.5.1",
|
|
122
|
+
"@storybook/react-webpack5": "~7.5.1",
|
|
123
|
+
"@storybook/testing-library": "~0.2.2",
|
|
124
|
+
"@storybook/theming": "~7.5.1",
|
|
125
125
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
126
126
|
"@svgr/webpack": "~8.1.0",
|
|
127
127
|
"@swc/cli": "~0.1.62",
|
|
128
|
-
"@swc/core": "~1.3.
|
|
128
|
+
"@swc/core": "~1.3.95",
|
|
129
129
|
"@swc/jest": "~0.2.29",
|
|
130
|
-
"@testing-library/jest-dom": "~6.1.
|
|
130
|
+
"@testing-library/jest-dom": "~6.1.4",
|
|
131
131
|
"@testing-library/react": "~14.0.0",
|
|
132
132
|
"@testing-library/react-hooks": "~8.0.1",
|
|
133
133
|
"@testing-library/user-event": "~14.5.1",
|
|
134
|
-
"@types/circular-dependency-plugin": "~5.0.
|
|
135
|
-
"@types/compression": "~1.7.
|
|
136
|
-
"@types/cors": "~2.8.
|
|
137
|
-
"@types/duplicate-package-checker-webpack-plugin": "~2.1.
|
|
138
|
-
"@types/ip": "~1.1.
|
|
139
|
-
"@types/jest": "~29.5.
|
|
140
|
-
"@types/jest-axe": "~3.5.
|
|
141
|
-
"@types/moment-locales-webpack-plugin": "~1.2.
|
|
142
|
-
"@types/node": "~20.
|
|
143
|
-
"@types/normalize-path": "~3.0.
|
|
134
|
+
"@types/circular-dependency-plugin": "~5.0.7",
|
|
135
|
+
"@types/compression": "~1.7.4",
|
|
136
|
+
"@types/cors": "~2.8.15",
|
|
137
|
+
"@types/duplicate-package-checker-webpack-plugin": "~2.1.4",
|
|
138
|
+
"@types/ip": "~1.1.2",
|
|
139
|
+
"@types/jest": "~29.5.6",
|
|
140
|
+
"@types/jest-axe": "~3.5.7",
|
|
141
|
+
"@types/moment-locales-webpack-plugin": "~1.2.5",
|
|
142
|
+
"@types/node": "~20.8.9",
|
|
143
|
+
"@types/normalize-path": "~3.0.1",
|
|
144
144
|
"@types/postcss-preset-env": "~8.0.0",
|
|
145
145
|
"@types/rimraf": "~4.0.5",
|
|
146
|
-
"@types/speed-measure-webpack-plugin": "~1.3.
|
|
147
|
-
"@types/supertest": "~2.0.
|
|
148
|
-
"@types/uuid": "~9.0.
|
|
146
|
+
"@types/speed-measure-webpack-plugin": "~1.3.5",
|
|
147
|
+
"@types/supertest": "~2.0.15",
|
|
148
|
+
"@types/uuid": "~9.0.6",
|
|
149
149
|
"@types/testing-library__jest-dom": "~5.14.9",
|
|
150
|
-
"@types/webpack-bundle-analyzer": "~4.6.
|
|
151
|
-
"@typescript-eslint/eslint-plugin": "~6.
|
|
152
|
-
"@typescript-eslint/parser": "~6.
|
|
150
|
+
"@types/webpack-bundle-analyzer": "~4.6.2",
|
|
151
|
+
"@typescript-eslint/eslint-plugin": "~6.9.0",
|
|
152
|
+
"@typescript-eslint/parser": "~6.9.0",
|
|
153
153
|
"@vitejs/plugin-react": "~4.1.0",
|
|
154
154
|
"@vitest/coverage-c8": "~0.33.0",
|
|
155
155
|
"autoprefixer": "~10.4.16",
|
|
@@ -165,7 +165,7 @@
|
|
|
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.
|
|
168
|
+
"browserslist": "~4.22.1",
|
|
169
169
|
"browserslist-to-esbuild": "~1.2.0",
|
|
170
170
|
"chalk": "~5.3.0",
|
|
171
171
|
"circular-dependency-plugin": "~5.2.2",
|
|
@@ -176,17 +176,17 @@
|
|
|
176
176
|
"cross-env": "~7.0.3",
|
|
177
177
|
"css-loader": "~6.8.1",
|
|
178
178
|
"css-minimizer-webpack-plugin": "~5.0.1",
|
|
179
|
-
"depcheck": "~1.4.
|
|
179
|
+
"depcheck": "~1.4.7",
|
|
180
180
|
"docdash": "~2.0.2",
|
|
181
181
|
"dotenv": "~16.3.1",
|
|
182
182
|
"dotenv-webpack": "~8.0.1",
|
|
183
183
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
184
184
|
"enhanced-resolve": "5.15.0",
|
|
185
|
-
"esbuild": "~0.19.
|
|
185
|
+
"esbuild": "~0.19.5",
|
|
186
186
|
"esbuild-loader": "~4.0.2",
|
|
187
187
|
"esbuild-plugin-lodash": "~1.2.0",
|
|
188
188
|
"esbuild-plugin-svgr": "~2.1.0",
|
|
189
|
-
"eslint": "~8.
|
|
189
|
+
"eslint": "~8.52.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.1.0",
|
|
@@ -194,21 +194,21 @@
|
|
|
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.6.1",
|
|
197
|
-
"eslint-import-resolver-webpack": "~0.13.
|
|
197
|
+
"eslint-import-resolver-webpack": "~0.13.8",
|
|
198
198
|
"eslint-plugin-compat": "~4.2.0",
|
|
199
199
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
200
|
-
"eslint-plugin-import": "~2.
|
|
201
|
-
"eslint-plugin-jest": "~27.
|
|
200
|
+
"eslint-plugin-import": "~2.29.0",
|
|
201
|
+
"eslint-plugin-jest": "~27.6.0",
|
|
202
202
|
"eslint-plugin-jsdoc": "~46.8.2",
|
|
203
203
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
204
204
|
"eslint-plugin-mdx": "~2.2.0",
|
|
205
|
-
"eslint-plugin-prettier": "~5.0.
|
|
205
|
+
"eslint-plugin-prettier": "~5.0.1",
|
|
206
206
|
"eslint-plugin-react": "~7.33.2",
|
|
207
207
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
208
208
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
209
|
-
"eslint-plugin-storybook": "~0.6.
|
|
210
|
-
"eslint-plugin-testing-library": "~6.0
|
|
211
|
-
"eslint-plugin-wdio": "~8.
|
|
209
|
+
"eslint-plugin-storybook": "~0.6.15",
|
|
210
|
+
"eslint-plugin-testing-library": "~6.1.0",
|
|
211
|
+
"eslint-plugin-wdio": "~8.20.0",
|
|
212
212
|
"execa": "~8.0.1",
|
|
213
213
|
"express": "~4.18.2",
|
|
214
214
|
"express-static-gzip": "~2.1.7",
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
"fast-glob": "~3.3.1",
|
|
218
218
|
"find-up": "~6.3.0",
|
|
219
219
|
"find-up-cli": "~5.0.0",
|
|
220
|
-
"happy-dom": "~12.2
|
|
220
|
+
"happy-dom": "~12.10.2",
|
|
221
221
|
"helmet-csp": "~3.4.0",
|
|
222
222
|
"html-loader": "~4.2.0",
|
|
223
223
|
"html-webpack-plugin": "~5.5.3",
|
|
@@ -230,40 +230,40 @@
|
|
|
230
230
|
"jest-cli": "~29.7.0",
|
|
231
231
|
"jest-environment-jsdom": "~29.7.0",
|
|
232
232
|
"jest-sonar-reporter": "~2.0.0",
|
|
233
|
-
"jest-styled-components": "~7.
|
|
233
|
+
"jest-styled-components": "~7.2.0",
|
|
234
234
|
"jest-watch-typeahead": "~2.2.2",
|
|
235
235
|
"jscodeshift": "~0.15.0",
|
|
236
236
|
"jsdoc": "~4.0.2",
|
|
237
|
-
"lerna": "~7.
|
|
238
|
-
"lint-staged": "~
|
|
237
|
+
"lerna": "~7.4.1",
|
|
238
|
+
"lint-staged": "~15.0.2",
|
|
239
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": "~
|
|
243
|
+
"msw": "~2.0.0",
|
|
244
244
|
"npm-run-all": "~4.1.5",
|
|
245
|
-
"node-gyp": "~9.4.
|
|
245
|
+
"node-gyp": "~9.4.1",
|
|
246
246
|
"node-plop": "~0.32.0",
|
|
247
247
|
"nodemon": "~3.0.1",
|
|
248
248
|
"normalize-path": "~3.0.0",
|
|
249
|
-
"npm-check-updates": "16.14.
|
|
250
|
-
"pino": "~8.
|
|
249
|
+
"npm-check-updates": "16.14.6",
|
|
250
|
+
"pino": "~8.16.1",
|
|
251
251
|
"pino-http": "~8.5.0",
|
|
252
|
-
"pino-pretty": "~10.2.
|
|
252
|
+
"pino-pretty": "~10.2.3",
|
|
253
253
|
"plop": "~4.0.0",
|
|
254
|
-
"postcss": "~8.4.
|
|
254
|
+
"postcss": "~8.4.31",
|
|
255
255
|
"postcss-html": "~1.5.0",
|
|
256
256
|
"postcss-jsx": "~0.36.4",
|
|
257
257
|
"postcss-loader": "~7.3.3",
|
|
258
258
|
"postcss-markdown": "~1.2.0",
|
|
259
|
-
"postcss-preset-env": "~9.
|
|
259
|
+
"postcss-preset-env": "~9.2.0",
|
|
260
260
|
"postcss-syntax": "~0.36.2",
|
|
261
261
|
"prettier": "~3.0.3",
|
|
262
|
-
"prisma": "~5.
|
|
262
|
+
"prisma": "~5.5.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": "~7.0.0",
|
|
267
267
|
"react-refresh": "~0.14.0",
|
|
268
268
|
"react-test-renderer": "~18.2.0",
|
|
269
269
|
"resize-observer-polyfill": "~1.5.1",
|
|
@@ -272,11 +272,11 @@
|
|
|
272
272
|
"semantic-release": "~22.0.5",
|
|
273
273
|
"slackify-markdown": "~4.4.0",
|
|
274
274
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
275
|
-
"storybook": "~7.
|
|
275
|
+
"storybook": "~7.5.1",
|
|
276
276
|
"storybook-addon-turbo-build": "~2.0.1",
|
|
277
277
|
"storybook-react-router": "~1.0.8",
|
|
278
278
|
"style-loader": "~3.3.3",
|
|
279
|
-
"stylelint": "~15.
|
|
279
|
+
"stylelint": "~15.11.0",
|
|
280
280
|
"stylelint-config-recommended": "~13.0.0",
|
|
281
281
|
"stylelint-config-styled-components": "~0.1.1",
|
|
282
282
|
"supertest": "~6.3.3",
|
|
@@ -285,20 +285,20 @@
|
|
|
285
285
|
"ts-node": "~10.9.1",
|
|
286
286
|
"tsc-alias": "~1.8.8",
|
|
287
287
|
"tsx": "~3.13.0",
|
|
288
|
-
"typedoc": "~0.25.
|
|
288
|
+
"typedoc": "~0.25.2",
|
|
289
289
|
"typescript": "~5.2.2",
|
|
290
|
-
"update-notifier": "~
|
|
290
|
+
"update-notifier": "~7.0.0",
|
|
291
291
|
"url-loader": "~4.1.1",
|
|
292
292
|
"uuid": "~9.0.1",
|
|
293
|
-
"vite": "~4.
|
|
294
|
-
"vitest": "~0.34.
|
|
293
|
+
"vite": "~4.5.0",
|
|
294
|
+
"vitest": "~0.34.6",
|
|
295
295
|
"vite-tsconfig-paths": "~4.2.1",
|
|
296
|
-
"webpack": "~5.
|
|
296
|
+
"webpack": "~5.89.0",
|
|
297
297
|
"webpack-bundle-analyzer": "~4.9.1",
|
|
298
298
|
"webpack-cli": "~5.1.4",
|
|
299
299
|
"webpack-dev-server": "~4.15.1",
|
|
300
300
|
"webpack-manifest-plugin": "~5.0.0",
|
|
301
|
-
"webpack-merge": "~5.
|
|
301
|
+
"webpack-merge": "~5.10.0",
|
|
302
302
|
"whatwg-fetch": "~3.6.19",
|
|
303
303
|
"workbox-webpack-plugin": "~7.0.0",
|
|
304
304
|
"yargs": "~17.7.2"
|
|
@@ -309,6 +309,6 @@
|
|
|
309
309
|
"react-dom": "~18.2.0",
|
|
310
310
|
"redux": "~4.2.1",
|
|
311
311
|
"redux-saga": "~1.2.3",
|
|
312
|
-
"styled-components": "~6.0
|
|
312
|
+
"styled-components": "~6.1.0"
|
|
313
313
|
}
|
|
314
314
|
}
|