gwchq-textjam 0.1.8 → 0.1.9

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/package.json CHANGED
@@ -1,268 +1,268 @@
1
- {
2
- "name": "gwchq-textjam",
3
- "description": "Embeddable React editor used in Raspberry Pi text-based projects.",
4
- "version": "0.1.8",
5
- "license": "Apache-2.0",
6
- "homepage": "https://github.com/GirlsFirst/gwchq-textjam",
7
- "author": "Girls Who Code HQ",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/GirlsFirst/gwchq-textjam.git"
11
- },
12
- "engines": {
13
- "node": ">=18.17.0"
14
- },
15
- "scripts": {
16
- "start": "NODE_ENV=development BABEL_ENV=development webpack serve -c ./webpack.config.js",
17
- "build:lib": "npm run clean && NODE_ENV=production BABEL_ENV=production webpack --config webpack.lib.config.js",
18
- "prepublishOnly": "yarn build:lib",
19
- "clean": "rimraf dist",
20
- "lint": "eslint \"src/**/*.{js,jsx,json}\"",
21
- "lint:fix": "eslint --fix \"src/**/*.{js,jsx,json}\"",
22
- "stylelint": "stylelint src/**/*.scss",
23
- "test": "jest"
24
- },
25
- "module": "./dist/index.js",
26
- "exports": {
27
- ".": {
28
- "import": "./dist/index.js",
29
- "default": "./dist/index.js"
30
- },
31
- "./style.css": "./dist/style.css",
32
- "./assets/*": "./dist/assets/*"
33
- },
34
- "files": [
35
- "dist",
36
- "README.md",
37
- "LICENSE"
38
- ],
39
- "peerDependencies": {
40
- "react": ">=17",
41
- "react-dom": ">=17"
42
- },
43
- "sideEffects": [
44
- "*.css",
45
- "*.scss"
46
- ],
47
- "dependencies": {
48
- "@babel/core": "^7.17.10",
49
- "@codemirror/commands": "^6.1.1",
50
- "@codemirror/lang-css": "^6.0.0",
51
- "@codemirror/lang-html": "^6.1.2",
52
- "@codemirror/lang-javascript": "^6.2.1",
53
- "@codemirror/lang-python": "6.1.2",
54
- "@codemirror/language": "^6.2.1",
55
- "@codemirror/view": "^6.3.0",
56
- "@hello-pangea/dnd": "^16.2.0",
57
- "@juggle/resize-observer": "^3.3.1",
58
- "@lezer/highlight": "^1.0.0",
59
- "@raspberrypifoundation/design-system-react": "^2.7.0",
60
- "@reduxjs/toolkit": "^1.6.2",
61
- "@replit/codemirror-indentation-markers": "^6.1.0",
62
- "@szhsin/react-menu": "^3.2.0",
63
- "assert": "^2.1.0",
64
- "axios": "^0.24.0",
65
- "classnames": "^2.3.2",
66
- "codemirror": "^6.0.1",
67
- "date-fns": "^4.1.0",
68
- "file-saver": "^2.0.5",
69
- "highcharts": "^9.3.1",
70
- "highcharts-react-official": "^3.1.0",
71
- "i18next": "^22.0.3",
72
- "i18next-resources-to-backend": "^1.2.1",
73
- "jest-axe": "^7.0.0",
74
- "jest-canvas-mock": "^2.5.2",
75
- "js-convert-case": "^4.2.0",
76
- "jszip": "^3.10.1",
77
- "jszip-utils": "^0.1.0",
78
- "marked": "^15.0.6",
79
- "mime-types": "^2.1.35",
80
- "node-html-parser": "^6.1.5",
81
- "plotly.js": "^3.0.2",
82
- "prismjs": "^1.29.0",
83
- "process": "^0.11.10",
84
- "prop-types": "^15.8.1",
85
- "rc-resize-observer": "^1.3.1",
86
- "re-resizable": "6.9.9",
87
- "react-confirm-alert": "^2.8.0",
88
- "react-container-query": "^0.13.0",
89
- "react-cookie": "^4.1.1",
90
- "react-dropzone": "^12.0.4",
91
- "react-i18next": "^12.0.0",
92
- "react-modal": "^3.14.4",
93
- "react-redux": "^7.2.5",
94
- "react-refresh": "^0.8.3",
95
- "react-responsive": "^9.0.2",
96
- "react-router-dom": "^6.7.0",
97
- "react-tabs": "^3.2.3",
98
- "react-timer-hook": "^3.0.5",
99
- "react-toastify": "^8.1.0",
100
- "react-toggle": "^4.1.3",
101
- "stream-browserify": "^3.0.0",
102
- "util": "^0.12.5",
103
- "web-vitals": "^1.0.1"
104
- },
105
- "browserslist": {
106
- "production": [
107
- ">0.2%",
108
- "not dead",
109
- "not op_mini all"
110
- ],
111
- "development": [
112
- "last 1 chrome version",
113
- "last 1 firefox version",
114
- "last 1 safari version"
115
- ]
116
- },
117
- "devDependencies": {
118
- "@babel/preset-env": "^7.17.10",
119
- "@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
120
- "@react-three/test-renderer": "8.2.1",
121
- "@svgr/webpack": "5.5.0",
122
- "@testing-library/jest-dom": "^5.16.5",
123
- "@testing-library/react": "14.3.1",
124
- "@testing-library/user-event": "^12.1.10",
125
- "@typescript-eslint/eslint-plugin": "^4.5.0",
126
- "@typescript-eslint/parser": "^4.5.0",
127
- "babel-eslint": "^10.1.0",
128
- "babel-jest": "^29.1.2",
129
- "babel-loader": "^8.2.5",
130
- "babel-plugin-named-asset-import": "^0.3.7",
131
- "babel-plugin-prismjs": "^2.1.0",
132
- "babel-preset-react-app": "^10.0.1",
133
- "bfj": "^7.0.2",
134
- "camelcase": "^6.1.0",
135
- "case-sensitive-paths-webpack-plugin": "2.3.0",
136
- "copy-webpack-plugin": "12.0.2",
137
- "css-loader": "4.3.0",
138
- "css-minimizer-webpack-plugin": "^7.0.2",
139
- "curl": "^0.1.4",
140
- "cypress": "12.12.0",
141
- "dotenv": "8.2.0",
142
- "dotenv-expand": "5.1.0",
143
- "dotenv-webpack": "8.1.0",
144
- "eslint": "^7.11.0",
145
- "eslint-config-prettier": "^8.8.0",
146
- "eslint-config-react-app": "^6.0.0",
147
- "eslint-plugin-flowtype": "^5.2.0",
148
- "eslint-plugin-import": "^2.22.1",
149
- "eslint-plugin-jest": "^24.1.0",
150
- "eslint-plugin-jsx-a11y": "^6.3.1",
151
- "eslint-plugin-prettier": "^4.2.1",
152
- "eslint-plugin-react": "^7.21.5",
153
- "eslint-plugin-react-hooks": "^4.2.0",
154
- "eslint-plugin-testing-library": "^3.9.2",
155
- "eslint-webpack-plugin": "^2.5.2",
156
- "file-loader": "6.1.1",
157
- "html-webpack-plugin": "5.6.0",
158
- "jest": "^29.1.2",
159
- "jest-circus": "^29.1.2",
160
- "jest-css-modules-transform": "^4.4.2",
161
- "jest-environment-jsdom": "^29.1.2",
162
- "jest-github-actions-reporter": "^1.0.3",
163
- "jest-junit": "^14.0.1",
164
- "jest-resolve": "^29.1.2",
165
- "jest-scss-transform": "^1.0.3",
166
- "jest-transform-stub": "^2.0.0",
167
- "jest-transformer-svg": "^2.0.0",
168
- "jest-watch-typeahead": "^2.2.0",
169
- "mini-css-extract-plugin": "^2.9.4",
170
- "mock-match-media": "^0.4.3",
171
- "optimize-css-assets-webpack-plugin": "5.0.4",
172
- "path-browserify": "^1.0.1",
173
- "pnp-webpack-plugin": "1.6.4",
174
- "postcss-flexbugs-fixes": "4.2.1",
175
- "postcss-loader": "3.0.0",
176
- "postcss-normalize": "8.0.1",
177
- "postcss-preset-env": "6.7.0",
178
- "postcss-safe-parser": "5.0.2",
179
- "prettier": "^2.8.8",
180
- "react": "^18.1.0",
181
- "react-app-polyfill": "^3.0.0",
182
- "react-dev-utils": "^11.0.3",
183
- "react-dom": "^18.1.0",
184
- "react-test-renderer": "^18.1.0",
185
- "redux-mock-store": "^1.5.4",
186
- "resolve": "1.18.1",
187
- "resolve-url-loader": "^3.1.2",
188
- "rimraf": "^6.1.0",
189
- "sass": "^1.51.0",
190
- "sass-loader": "^10.0.0",
191
- "semver": "7.3.2",
192
- "storybook-addon-react-router-v6": "^0.2.1",
193
- "style-it": "^2.1.4",
194
- "style-loader": "1.3.0",
195
- "stylelint": "^15.11.0",
196
- "stylelint-config-recommended-scss": "3.3.0",
197
- "stylelint-order": "2.2.1",
198
- "stylelint-scss": "3.12.0",
199
- "stylelint-use-logical": "^2.1.0",
200
- "terser-webpack-plugin": "4.2.3",
201
- "url-loader": "4.1.1",
202
- "webgl-mock-threejs": "^0.0.1",
203
- "webpack": "5.95.0",
204
- "webpack-cli": "5.1.4",
205
- "webpack-dev-server": "5.1.0",
206
- "webpack-manifest-plugin": "2.2.0",
207
- "workbox-webpack-plugin": "5.1.4",
208
- "worker-plugin": "5.0.1"
209
- },
210
- "jest": {
211
- "roots": [
212
- "<rootDir>/src"
213
- ],
214
- "collectCoverageFrom": [
215
- "src/**/*.{js,jsx,ts,tsx}",
216
- "!src/**/*.d.ts"
217
- ],
218
- "setupFiles": [
219
- "react-app-polyfill/jsdom"
220
- ],
221
- "setupFilesAfterEnv": [
222
- "<rootDir>/src/utils/setupTests.js"
223
- ],
224
- "testMatch": [
225
- "<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
226
- "<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
227
- ],
228
- "testEnvironment": "jsdom",
229
- "testEnvironmentOptions": {
230
- "resources": "usable"
231
- },
232
- "testRunner": "jest-circus/runner",
233
- "transform": {
234
- "^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "<rootDir>/config/jest/babelTransform.js",
235
- ".+\\.css$": "<rootDir>/node_modules/jest-css-modules-transform",
236
- "^.+\\.scss$": "<rootDir>/node_modules/jest-scss-transform",
237
- "^.+\\.svg$": "jest-transformer-svg",
238
- "^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|scss|svg|json)$)": "<rootDir>/node_modules/jest-transform-stub"
239
- },
240
- "transformIgnorePatterns": [
241
- "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$",
242
- "^.+\\.module\\.(css|sass|scss)$"
243
- ],
244
- "modulePaths": [],
245
- "moduleNameMapper": {
246
- "^react-native$": "react-native-web",
247
- "^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
248
- },
249
- "moduleFileExtensions": [
250
- "web.js",
251
- "js",
252
- "web.ts",
253
- "ts",
254
- "web.tsx",
255
- "tsx",
256
- "json",
257
- "web.jsx",
258
- "jsx",
259
- "node"
260
- ],
261
- "watchPlugins": [
262
- "jest-watch-typeahead/filename",
263
- "jest-watch-typeahead/testname"
264
- ],
265
- "resetMocks": true
266
- },
267
- "packageManager": "yarn@3.4.1"
268
- }
1
+ {
2
+ "name": "gwchq-textjam",
3
+ "description": "Embeddable React editor used in Raspberry Pi text-based projects.",
4
+ "version": "0.1.9",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://github.com/GirlsFirst/gwchq-textjam",
7
+ "author": "Girls Who Code HQ",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/GirlsFirst/gwchq-textjam.git"
11
+ },
12
+ "engines": {
13
+ "node": ">=18.17.0"
14
+ },
15
+ "scripts": {
16
+ "start": "NODE_ENV=development BABEL_ENV=development webpack serve -c ./webpack.config.js",
17
+ "build:lib": "npm run clean && NODE_ENV=production BABEL_ENV=production webpack --config webpack.lib.config.js",
18
+ "prepublishOnly": "yarn build:lib",
19
+ "clean": "rimraf dist",
20
+ "lint": "eslint \"src/**/*.{js,jsx,json}\"",
21
+ "lint:fix": "eslint --fix \"src/**/*.{js,jsx,json}\"",
22
+ "stylelint": "stylelint src/**/*.scss",
23
+ "test": "jest"
24
+ },
25
+ "module": "./dist/index.js",
26
+ "exports": {
27
+ ".": {
28
+ "import": "./dist/index.js",
29
+ "default": "./dist/index.js"
30
+ },
31
+ "./style.css": "./dist/style.css",
32
+ "./assets/*": "./dist/assets/*"
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "peerDependencies": {
40
+ "react": ">=17",
41
+ "react-dom": ">=17"
42
+ },
43
+ "sideEffects": [
44
+ "*.css",
45
+ "*.scss"
46
+ ],
47
+ "dependencies": {
48
+ "@babel/core": "^7.17.10",
49
+ "@codemirror/commands": "^6.1.1",
50
+ "@codemirror/lang-css": "^6.0.0",
51
+ "@codemirror/lang-html": "^6.1.2",
52
+ "@codemirror/lang-javascript": "^6.2.1",
53
+ "@codemirror/lang-python": "6.1.2",
54
+ "@codemirror/language": "^6.2.1",
55
+ "@codemirror/view": "^6.3.0",
56
+ "@hello-pangea/dnd": "^16.2.0",
57
+ "@juggle/resize-observer": "^3.3.1",
58
+ "@lezer/highlight": "^1.0.0",
59
+ "@raspberrypifoundation/design-system-react": "^2.7.0",
60
+ "@reduxjs/toolkit": "^1.6.2",
61
+ "@replit/codemirror-indentation-markers": "^6.1.0",
62
+ "@szhsin/react-menu": "^3.2.0",
63
+ "assert": "^2.1.0",
64
+ "axios": "^0.24.0",
65
+ "classnames": "^2.3.2",
66
+ "codemirror": "^6.0.1",
67
+ "date-fns": "^4.1.0",
68
+ "file-saver": "^2.0.5",
69
+ "highcharts": "^9.3.1",
70
+ "highcharts-react-official": "^3.1.0",
71
+ "i18next": "^22.0.3",
72
+ "i18next-resources-to-backend": "^1.2.1",
73
+ "jest-axe": "^7.0.0",
74
+ "jest-canvas-mock": "^2.5.2",
75
+ "js-convert-case": "^4.2.0",
76
+ "jszip": "^3.10.1",
77
+ "jszip-utils": "^0.1.0",
78
+ "marked": "^15.0.6",
79
+ "mime-types": "^2.1.35",
80
+ "node-html-parser": "^6.1.5",
81
+ "plotly.js": "^3.0.2",
82
+ "prismjs": "^1.29.0",
83
+ "process": "^0.11.10",
84
+ "prop-types": "^15.8.1",
85
+ "rc-resize-observer": "^1.3.1",
86
+ "re-resizable": "6.9.9",
87
+ "react-confirm-alert": "^2.8.0",
88
+ "react-container-query": "^0.13.0",
89
+ "react-cookie": "^4.1.1",
90
+ "react-dropzone": "^12.0.4",
91
+ "react-i18next": "^12.0.0",
92
+ "react-modal": "^3.14.4",
93
+ "react-redux": "^7.2.5",
94
+ "react-refresh": "^0.8.3",
95
+ "react-responsive": "^9.0.2",
96
+ "react-router-dom": "^6.7.0",
97
+ "react-tabs": "^3.2.3",
98
+ "react-timer-hook": "^3.0.5",
99
+ "react-toastify": "^8.1.0",
100
+ "react-toggle": "^4.1.3",
101
+ "stream-browserify": "^3.0.0",
102
+ "util": "^0.12.5",
103
+ "web-vitals": "^1.0.1"
104
+ },
105
+ "browserslist": {
106
+ "production": [
107
+ ">0.2%",
108
+ "not dead",
109
+ "not op_mini all"
110
+ ],
111
+ "development": [
112
+ "last 1 chrome version",
113
+ "last 1 firefox version",
114
+ "last 1 safari version"
115
+ ]
116
+ },
117
+ "devDependencies": {
118
+ "@babel/preset-env": "^7.17.10",
119
+ "@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
120
+ "@react-three/test-renderer": "8.2.1",
121
+ "@svgr/webpack": "5.5.0",
122
+ "@testing-library/jest-dom": "^5.16.5",
123
+ "@testing-library/react": "14.3.1",
124
+ "@testing-library/user-event": "^12.1.10",
125
+ "@typescript-eslint/eslint-plugin": "^4.5.0",
126
+ "@typescript-eslint/parser": "^4.5.0",
127
+ "babel-eslint": "^10.1.0",
128
+ "babel-jest": "^29.1.2",
129
+ "babel-loader": "^8.2.5",
130
+ "babel-plugin-named-asset-import": "^0.3.7",
131
+ "babel-plugin-prismjs": "^2.1.0",
132
+ "babel-preset-react-app": "^10.0.1",
133
+ "bfj": "^7.0.2",
134
+ "camelcase": "^6.1.0",
135
+ "case-sensitive-paths-webpack-plugin": "2.3.0",
136
+ "copy-webpack-plugin": "12.0.2",
137
+ "css-loader": "4.3.0",
138
+ "css-minimizer-webpack-plugin": "^7.0.2",
139
+ "curl": "^0.1.4",
140
+ "cypress": "12.12.0",
141
+ "dotenv": "8.2.0",
142
+ "dotenv-expand": "5.1.0",
143
+ "dotenv-webpack": "8.1.0",
144
+ "eslint": "^7.11.0",
145
+ "eslint-config-prettier": "^8.8.0",
146
+ "eslint-config-react-app": "^6.0.0",
147
+ "eslint-plugin-flowtype": "^5.2.0",
148
+ "eslint-plugin-import": "^2.22.1",
149
+ "eslint-plugin-jest": "^24.1.0",
150
+ "eslint-plugin-jsx-a11y": "^6.3.1",
151
+ "eslint-plugin-prettier": "^4.2.1",
152
+ "eslint-plugin-react": "^7.21.5",
153
+ "eslint-plugin-react-hooks": "^4.2.0",
154
+ "eslint-plugin-testing-library": "^3.9.2",
155
+ "eslint-webpack-plugin": "^2.5.2",
156
+ "file-loader": "6.1.1",
157
+ "html-webpack-plugin": "5.6.0",
158
+ "jest": "^29.1.2",
159
+ "jest-circus": "^29.1.2",
160
+ "jest-css-modules-transform": "^4.4.2",
161
+ "jest-environment-jsdom": "^29.1.2",
162
+ "jest-github-actions-reporter": "^1.0.3",
163
+ "jest-junit": "^14.0.1",
164
+ "jest-resolve": "^29.1.2",
165
+ "jest-scss-transform": "^1.0.3",
166
+ "jest-transform-stub": "^2.0.0",
167
+ "jest-transformer-svg": "^2.0.0",
168
+ "jest-watch-typeahead": "^2.2.0",
169
+ "mini-css-extract-plugin": "^2.9.4",
170
+ "mock-match-media": "^0.4.3",
171
+ "optimize-css-assets-webpack-plugin": "5.0.4",
172
+ "path-browserify": "^1.0.1",
173
+ "pnp-webpack-plugin": "1.6.4",
174
+ "postcss-flexbugs-fixes": "4.2.1",
175
+ "postcss-loader": "3.0.0",
176
+ "postcss-normalize": "8.0.1",
177
+ "postcss-preset-env": "6.7.0",
178
+ "postcss-safe-parser": "5.0.2",
179
+ "prettier": "^2.8.8",
180
+ "react": "^18.1.0",
181
+ "react-app-polyfill": "^3.0.0",
182
+ "react-dev-utils": "^11.0.3",
183
+ "react-dom": "^18.1.0",
184
+ "react-test-renderer": "^18.1.0",
185
+ "redux-mock-store": "^1.5.4",
186
+ "resolve": "1.18.1",
187
+ "resolve-url-loader": "^3.1.2",
188
+ "rimraf": "^6.1.0",
189
+ "sass": "^1.51.0",
190
+ "sass-loader": "^10.0.0",
191
+ "semver": "7.3.2",
192
+ "storybook-addon-react-router-v6": "^0.2.1",
193
+ "style-it": "^2.1.4",
194
+ "style-loader": "1.3.0",
195
+ "stylelint": "^15.11.0",
196
+ "stylelint-config-recommended-scss": "3.3.0",
197
+ "stylelint-order": "2.2.1",
198
+ "stylelint-scss": "3.12.0",
199
+ "stylelint-use-logical": "^2.1.0",
200
+ "terser-webpack-plugin": "4.2.3",
201
+ "url-loader": "4.1.1",
202
+ "webgl-mock-threejs": "^0.0.1",
203
+ "webpack": "5.95.0",
204
+ "webpack-cli": "5.1.4",
205
+ "webpack-dev-server": "5.1.0",
206
+ "webpack-manifest-plugin": "2.2.0",
207
+ "workbox-webpack-plugin": "5.1.4",
208
+ "worker-plugin": "5.0.1"
209
+ },
210
+ "jest": {
211
+ "roots": [
212
+ "<rootDir>/src"
213
+ ],
214
+ "collectCoverageFrom": [
215
+ "src/**/*.{js,jsx,ts,tsx}",
216
+ "!src/**/*.d.ts"
217
+ ],
218
+ "setupFiles": [
219
+ "react-app-polyfill/jsdom"
220
+ ],
221
+ "setupFilesAfterEnv": [
222
+ "<rootDir>/src/utils/setupTests.js"
223
+ ],
224
+ "testMatch": [
225
+ "<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
226
+ "<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
227
+ ],
228
+ "testEnvironment": "jsdom",
229
+ "testEnvironmentOptions": {
230
+ "resources": "usable"
231
+ },
232
+ "testRunner": "jest-circus/runner",
233
+ "transform": {
234
+ "^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "<rootDir>/config/jest/babelTransform.js",
235
+ ".+\\.css$": "<rootDir>/node_modules/jest-css-modules-transform",
236
+ "^.+\\.scss$": "<rootDir>/node_modules/jest-scss-transform",
237
+ "^.+\\.svg$": "jest-transformer-svg",
238
+ "^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|scss|svg|json)$)": "<rootDir>/node_modules/jest-transform-stub"
239
+ },
240
+ "transformIgnorePatterns": [
241
+ "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$",
242
+ "^.+\\.module\\.(css|sass|scss)$"
243
+ ],
244
+ "modulePaths": [],
245
+ "moduleNameMapper": {
246
+ "^react-native$": "react-native-web",
247
+ "^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
248
+ },
249
+ "moduleFileExtensions": [
250
+ "web.js",
251
+ "js",
252
+ "web.ts",
253
+ "ts",
254
+ "web.tsx",
255
+ "tsx",
256
+ "json",
257
+ "web.jsx",
258
+ "jsx",
259
+ "node"
260
+ ],
261
+ "watchPlugins": [
262
+ "jest-watch-typeahead/filename",
263
+ "jest-watch-typeahead/testname"
264
+ ],
265
+ "resetMocks": true
266
+ },
267
+ "packageManager": "yarn@3.4.1"
268
+ }