studiokit-scaffolding-js 7.0.12-next.1.5 → 7.0.12-next.1.7
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/LICENSE +21 -21
- package/README.md +137 -137
- package/lib/components/ActionList.js +1 -5
- package/lib/components/Dropdowns/UserDropdown.js +1 -3
- package/lib/components/Groups/CreateEditCopySaveButtons.js +1 -5
- package/lib/components/Groups/ExternalGroups/Attach.js +1 -3
- package/lib/components/Groups/RosterSyncInfo.js +1 -7
- package/lib/components/HOC/SearchPersistorComponent.js +2 -2
- package/lib/components/Impersonation/UserDetail.css +22 -22
- package/lib/components/Notifications.d.ts +1 -1
- package/lib/components/Notifications.js +2 -2
- package/lib/components/Quill/ImageDropModule.js +1 -1
- package/lib/components/Quill/TableModule/index.css +171 -171
- package/lib/css/base/_base.css +98 -98
- package/lib/css/base/_typography.css +130 -130
- package/lib/css/components/_alert.css +86 -86
- package/lib/css/components/_bootstrap-grid.css +28 -28
- package/lib/css/components/_buttons.css +397 -397
- package/lib/css/components/_forms.css +101 -101
- package/lib/css/components/_menu.css +56 -56
- package/lib/css/components/_modals.css +46 -46
- package/lib/css/components/_quill.css +315 -315
- package/lib/css/components/_tables.css +497 -497
- package/lib/css/components/_tags.css +12 -12
- package/lib/css/index-with-variables.css +15 -15
- package/lib/css/index.css +14 -14
- package/lib/css/utils/_border.css +463 -463
- package/lib/css/utils/_color.css +317 -317
- package/lib/css/utils/_display.css +305 -305
- package/lib/css/utils/_general.css +48 -48
- package/lib/css/utils/_icon.css +16 -16
- package/lib/css/utils/_text.css +25 -25
- package/lib/css/utils/_width.css +60 -60
- package/lib/css/variables.css +84 -84
- package/lib/hooks/usePrevious.d.ts +14 -1
- package/lib/hooks/usePrevious.js +23 -1
- package/lib/utils/fetch.js +9 -7
- package/lib/utils/url.d.ts +2 -2
- package/package.json +214 -214
package/package.json
CHANGED
|
@@ -1,214 +1,214 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "studiokit-scaffolding-js",
|
|
3
|
-
"version": "7.0.12-next.1.
|
|
4
|
-
"description": "Common scaffolding for Studio apps at Purdue",
|
|
5
|
-
"repository": "https://gitlab.com/purdue-informatics/studiokit/studiokit-scaffolding-js",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"main": "lib/index.js",
|
|
8
|
-
"types": "lib/index.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"lib"
|
|
11
|
-
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "yarn clean && tsc -p ./tsconfig.build.json && yarn copy",
|
|
14
|
-
"build:watch": "tsc -p ./tsconfig.build.json -w",
|
|
15
|
-
"clean": "rimraf ./lib",
|
|
16
|
-
"copy": "copyfiles -u 1 \"src/**/*.css\" lib && copyfiles lib",
|
|
17
|
-
"coverage": "jest --coverage",
|
|
18
|
-
"fix": "run-s 'fix:**'",
|
|
19
|
-
"fix:code": "yarn lint:code --fix",
|
|
20
|
-
"fix:styles": "yarn lint:styles --fix",
|
|
21
|
-
"lint": "run-s 'lint:**'",
|
|
22
|
-
"lint-code-core": "eslint --ext .js,.jsx,.ts,.tsx",
|
|
23
|
-
"lint:code": "yarn lint-code-core .",
|
|
24
|
-
"lint:styles": "stylelint \"src/**/*.css\"",
|
|
25
|
-
"prepublishOnly": "yarn build",
|
|
26
|
-
"test": "jest",
|
|
27
|
-
"test:ci": "cross-env CI=true yarn test",
|
|
28
|
-
"test:ci-junit": "cross-env CI=true yarn test -- --coverage --reporters='default' --reporters='jest-junit' --coverageReporters='cobertura' --coverageReporters='html'"
|
|
29
|
-
},
|
|
30
|
-
"husky": {
|
|
31
|
-
"hooks": {
|
|
32
|
-
"pre-commit": "lint-staged",
|
|
33
|
-
"pre-push": "yarn test"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"lint-staged": {
|
|
37
|
-
"**/*.(j|t)s?(x)": [
|
|
38
|
-
"yarn fix:code"
|
|
39
|
-
],
|
|
40
|
-
"*.css": [
|
|
41
|
-
"stylelint --fix"
|
|
42
|
-
],
|
|
43
|
-
"package.json": [
|
|
44
|
-
"sort-package-json"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"stylelint": {
|
|
48
|
-
"extends": "stylelint-config-standard",
|
|
49
|
-
"rules": {
|
|
50
|
-
"import-notation": null,
|
|
51
|
-
"at-rule-no-unknown": [
|
|
52
|
-
true,
|
|
53
|
-
{
|
|
54
|
-
"ignoreAtRules": [
|
|
55
|
-
"import-glob"
|
|
56
|
-
]
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"media-feature-range-notation": null,
|
|
60
|
-
"property-no-vendor-prefix": null,
|
|
61
|
-
"selector-class-pattern": null,
|
|
62
|
-
"selector-not-notation": "simple"
|
|
63
|
-
},
|
|
64
|
-
"ignoreFiles": "src/**/*.{ts,tsx,js,jsx}"
|
|
65
|
-
},
|
|
66
|
-
"jest": {
|
|
67
|
-
"automock": false,
|
|
68
|
-
"collectCoverageFrom": [
|
|
69
|
-
"src/**/*.{ts,tsx,js,jsx}"
|
|
70
|
-
],
|
|
71
|
-
"coverageReporters": [
|
|
72
|
-
"cobertura",
|
|
73
|
-
"html"
|
|
74
|
-
],
|
|
75
|
-
"moduleNameMapper": {
|
|
76
|
-
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
|
77
|
-
"\\.(css|less)$": "identity-obj-proxy"
|
|
78
|
-
},
|
|
79
|
-
"preset": "ts-jest",
|
|
80
|
-
"setupFilesAfterEnv": [
|
|
81
|
-
"./src/setupTests.ts"
|
|
82
|
-
],
|
|
83
|
-
"testEnvironment": "jsdom"
|
|
84
|
-
},
|
|
85
|
-
"resolutions": {
|
|
86
|
-
"@sentry/browser": "^10.19.0",
|
|
87
|
-
"@types/node": "~20.19.0",
|
|
88
|
-
"@types/react": "^17.0.89",
|
|
89
|
-
"@types/react-router": "^5.1.11",
|
|
90
|
-
"kind-of": "^6.0.3",
|
|
91
|
-
"mixin-deep": "^1.3.2",
|
|
92
|
-
"set-value": "^2.0.1"
|
|
93
|
-
},
|
|
94
|
-
"dependencies": {
|
|
95
|
-
"@material-ui/core": "^4.12.4",
|
|
96
|
-
"@material-ui/icons": "^4.11.3",
|
|
97
|
-
"@material-ui/lab": "^4.0.0-alpha.57",
|
|
98
|
-
"@microsoft/applicationinsights-web": "^3.1.0",
|
|
99
|
-
"@redux-saga/core": "^1.3.0",
|
|
100
|
-
"@redux-saga/types": "^1.2.1",
|
|
101
|
-
"@sentry/react": "^10.19.0",
|
|
102
|
-
"@types/history": "^4.7.11",
|
|
103
|
-
"@types/lodash": "^4.17.20",
|
|
104
|
-
"@types/quill": "^1.3.10",
|
|
105
|
-
"@types/react-dom": "^17.0.26",
|
|
106
|
-
"@types/react-helmet": "^6.1.0",
|
|
107
|
-
"@types/react-modal": "^3.10.6",
|
|
108
|
-
"@types/react-redux": "^7.1.16",
|
|
109
|
-
"@types/react-router": "^5.1.11",
|
|
110
|
-
"@types/react-router-bootstrap": "~0.24.5",
|
|
111
|
-
"@types/react-router-dom": "^5.1.7",
|
|
112
|
-
"@types/react-table": "^6.8.7",
|
|
113
|
-
"@types/redux-logger": "3.0.12",
|
|
114
|
-
"bootstrap": "^4.6.0",
|
|
115
|
-
"compare-versions": "^3.6.0",
|
|
116
|
-
"connected-react-router": "^6.8.0",
|
|
117
|
-
"detect-browser": "^5.2.0",
|
|
118
|
-
"history": "^4.10.1",
|
|
119
|
-
"local-storage-fallback": "^4.1.2",
|
|
120
|
-
"lodash": "^4.17.21",
|
|
121
|
-
"memoize-one": "^6.0.0",
|
|
122
|
-
"moment": "^2.30.1",
|
|
123
|
-
"moment-timezone": "^0.6.0",
|
|
124
|
-
"parchment": "^1.1.4",
|
|
125
|
-
"pluralize": "^8.0.0",
|
|
126
|
-
"prop-types": "^15.8.1",
|
|
127
|
-
"query-string": "^6.13.8",
|
|
128
|
-
"quill": "^1.3.7",
|
|
129
|
-
"quill-blot-formatter": "purdue-tlt/quill-blot-formatter#a01562a213eb615abcdf2963457890e81ebc1ab3",
|
|
130
|
-
"react-bootstrap": "^1.6.8",
|
|
131
|
-
"react-ga4": "^2.1.0",
|
|
132
|
-
"react-helmet": "^6.1.0",
|
|
133
|
-
"react-modal": "^3.16.3",
|
|
134
|
-
"react-quill": "purdue-tlt/react-quill#fix/auto-focus",
|
|
135
|
-
"react-redux": "^7.2.9",
|
|
136
|
-
"react-router": "^5.3.4",
|
|
137
|
-
"react-router-bootstrap": "~0.25.0",
|
|
138
|
-
"react-router-dom": "^5.3.4",
|
|
139
|
-
"react-super-responsive-table": "^5.2.0",
|
|
140
|
-
"react-table": "^6.11.5",
|
|
141
|
-
"redux": "^4.2.1",
|
|
142
|
-
"redux-devtools-extension": "^2.13.9",
|
|
143
|
-
"redux-logger": "^3.0.6",
|
|
144
|
-
"redux-persist": "^6.0.0",
|
|
145
|
-
"redux-saga": "^1.3.0",
|
|
146
|
-
"studiokit-caliper-js": "1.0.26-alpha.4",
|
|
147
|
-
"tachyons": "^4.12.0",
|
|
148
|
-
"tslib": "^2.8.1",
|
|
149
|
-
"uuid": "^11.1.0"
|
|
150
|
-
},
|
|
151
|
-
"devDependencies": {
|
|
152
|
-
"@eslint/js": "^9.38.0",
|
|
153
|
-
"@redux-saga/testing-utils": "^1.1.5",
|
|
154
|
-
"@types/enzyme": "^3.10.19",
|
|
155
|
-
"@types/enzyme-adapter-react-16": "^1.0.9",
|
|
156
|
-
"@types/jest": "^30.0.0",
|
|
157
|
-
"@types/mockdate": "^3.0.0",
|
|
158
|
-
"@types/pluralize": "^0.0.33",
|
|
159
|
-
"@types/react": "^17.0.89",
|
|
160
|
-
"@typescript-eslint/parser": "^8.46.2",
|
|
161
|
-
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
162
|
-
"copyfiles": "^2.4.1",
|
|
163
|
-
"cross-env": "^7.0.3",
|
|
164
|
-
"enzyme": "^3.11.0",
|
|
165
|
-
"eslint": "^9.38.0",
|
|
166
|
-
"eslint-config-prettier": "^10.1.8",
|
|
167
|
-
"eslint-config-react-app": "^7.0.1",
|
|
168
|
-
"eslint-import-resolver-typescript": "^4.4.4",
|
|
169
|
-
"eslint-plugin-flowtype": "^8.0.3",
|
|
170
|
-
"eslint-plugin-import": "~2.32.0",
|
|
171
|
-
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
172
|
-
"eslint-plugin-prettier": "~5.3.1",
|
|
173
|
-
"eslint-plugin-react": "^7.37.5",
|
|
174
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
175
|
-
"globals": "^16.4.0",
|
|
176
|
-
"husky": "^4.3.8",
|
|
177
|
-
"identity-obj-proxy": "^3.0.0",
|
|
178
|
-
"jest": "^30.2.0",
|
|
179
|
-
"jest-each": "^30.2.0",
|
|
180
|
-
"jest-environment-jsdom": "^30.2.0",
|
|
181
|
-
"jest-fetch-mock": "^3.0.3",
|
|
182
|
-
"jest-junit": "^16.0.0",
|
|
183
|
-
"jest-util": "^30.2.0",
|
|
184
|
-
"jiti": "^2.6.1",
|
|
185
|
-
"lint-staged": "^10.5.3",
|
|
186
|
-
"mockdate": "^3.0.5",
|
|
187
|
-
"npm-run-all": "^4.1.5",
|
|
188
|
-
"prettier": "~3.6.2",
|
|
189
|
-
"react": "^17.0.2",
|
|
190
|
-
"react-dom": "^17.0.2",
|
|
191
|
-
"rimraf": "^3.0.2",
|
|
192
|
-
"sort-package-json": "^1.57.0",
|
|
193
|
-
"stylelint": "^16.25.0",
|
|
194
|
-
"stylelint-config-standard": "^39.0.1",
|
|
195
|
-
"ts-jest": "^29.4.5",
|
|
196
|
-
"typescript": "~5.9.3",
|
|
197
|
-
"typescript-eslint": "^8.46.2"
|
|
198
|
-
},
|
|
199
|
-
"peerDependencies": {
|
|
200
|
-
"@types/react": "^17.0.0",
|
|
201
|
-
"@types/react-redux": "^7.1.16",
|
|
202
|
-
"react": "^17.0.2",
|
|
203
|
-
"react-dom": "^17.0.1"
|
|
204
|
-
},
|
|
205
|
-
"peerDependenciesMeta": {
|
|
206
|
-
"@types/react": {
|
|
207
|
-
"optional": true
|
|
208
|
-
},
|
|
209
|
-
"@types/react-redux": {
|
|
210
|
-
"optional": true
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
"packageManager": "yarn@4.10.3"
|
|
214
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "studiokit-scaffolding-js",
|
|
3
|
+
"version": "7.0.12-next.1.7",
|
|
4
|
+
"description": "Common scaffolding for Studio apps at Purdue",
|
|
5
|
+
"repository": "https://gitlab.com/purdue-informatics/studiokit/studiokit-scaffolding-js",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"types": "lib/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"lib"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "yarn clean && tsc -p ./tsconfig.build.json && yarn copy",
|
|
14
|
+
"build:watch": "tsc -p ./tsconfig.build.json -w",
|
|
15
|
+
"clean": "rimraf ./lib",
|
|
16
|
+
"copy": "copyfiles -u 1 \"src/**/*.css\" lib && copyfiles lib",
|
|
17
|
+
"coverage": "jest --coverage",
|
|
18
|
+
"fix": "run-s 'fix:**'",
|
|
19
|
+
"fix:code": "yarn lint:code --fix",
|
|
20
|
+
"fix:styles": "yarn lint:styles --fix",
|
|
21
|
+
"lint": "run-s 'lint:**'",
|
|
22
|
+
"lint-code-core": "eslint --ext .js,.jsx,.ts,.tsx",
|
|
23
|
+
"lint:code": "yarn lint-code-core .",
|
|
24
|
+
"lint:styles": "stylelint \"src/**/*.css\"",
|
|
25
|
+
"prepublishOnly": "yarn build",
|
|
26
|
+
"test": "jest",
|
|
27
|
+
"test:ci": "cross-env CI=true yarn test",
|
|
28
|
+
"test:ci-junit": "cross-env CI=true yarn test -- --coverage --reporters='default' --reporters='jest-junit' --coverageReporters='cobertura' --coverageReporters='html'"
|
|
29
|
+
},
|
|
30
|
+
"husky": {
|
|
31
|
+
"hooks": {
|
|
32
|
+
"pre-commit": "lint-staged",
|
|
33
|
+
"pre-push": "yarn test"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"lint-staged": {
|
|
37
|
+
"**/*.(j|t)s?(x)": [
|
|
38
|
+
"yarn fix:code"
|
|
39
|
+
],
|
|
40
|
+
"*.css": [
|
|
41
|
+
"stylelint --fix"
|
|
42
|
+
],
|
|
43
|
+
"package.json": [
|
|
44
|
+
"sort-package-json"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
"stylelint": {
|
|
48
|
+
"extends": "stylelint-config-standard",
|
|
49
|
+
"rules": {
|
|
50
|
+
"import-notation": null,
|
|
51
|
+
"at-rule-no-unknown": [
|
|
52
|
+
true,
|
|
53
|
+
{
|
|
54
|
+
"ignoreAtRules": [
|
|
55
|
+
"import-glob"
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"media-feature-range-notation": null,
|
|
60
|
+
"property-no-vendor-prefix": null,
|
|
61
|
+
"selector-class-pattern": null,
|
|
62
|
+
"selector-not-notation": "simple"
|
|
63
|
+
},
|
|
64
|
+
"ignoreFiles": "src/**/*.{ts,tsx,js,jsx}"
|
|
65
|
+
},
|
|
66
|
+
"jest": {
|
|
67
|
+
"automock": false,
|
|
68
|
+
"collectCoverageFrom": [
|
|
69
|
+
"src/**/*.{ts,tsx,js,jsx}"
|
|
70
|
+
],
|
|
71
|
+
"coverageReporters": [
|
|
72
|
+
"cobertura",
|
|
73
|
+
"html"
|
|
74
|
+
],
|
|
75
|
+
"moduleNameMapper": {
|
|
76
|
+
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
|
|
77
|
+
"\\.(css|less)$": "identity-obj-proxy"
|
|
78
|
+
},
|
|
79
|
+
"preset": "ts-jest",
|
|
80
|
+
"setupFilesAfterEnv": [
|
|
81
|
+
"./src/setupTests.ts"
|
|
82
|
+
],
|
|
83
|
+
"testEnvironment": "jsdom"
|
|
84
|
+
},
|
|
85
|
+
"resolutions": {
|
|
86
|
+
"@sentry/browser": "^10.19.0",
|
|
87
|
+
"@types/node": "~20.19.0",
|
|
88
|
+
"@types/react": "^17.0.89",
|
|
89
|
+
"@types/react-router": "^5.1.11",
|
|
90
|
+
"kind-of": "^6.0.3",
|
|
91
|
+
"mixin-deep": "^1.3.2",
|
|
92
|
+
"set-value": "^2.0.1"
|
|
93
|
+
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@material-ui/core": "^4.12.4",
|
|
96
|
+
"@material-ui/icons": "^4.11.3",
|
|
97
|
+
"@material-ui/lab": "^4.0.0-alpha.57",
|
|
98
|
+
"@microsoft/applicationinsights-web": "^3.1.0",
|
|
99
|
+
"@redux-saga/core": "^1.3.0",
|
|
100
|
+
"@redux-saga/types": "^1.2.1",
|
|
101
|
+
"@sentry/react": "^10.19.0",
|
|
102
|
+
"@types/history": "^4.7.11",
|
|
103
|
+
"@types/lodash": "^4.17.20",
|
|
104
|
+
"@types/quill": "^1.3.10",
|
|
105
|
+
"@types/react-dom": "^17.0.26",
|
|
106
|
+
"@types/react-helmet": "^6.1.0",
|
|
107
|
+
"@types/react-modal": "^3.10.6",
|
|
108
|
+
"@types/react-redux": "^7.1.16",
|
|
109
|
+
"@types/react-router": "^5.1.11",
|
|
110
|
+
"@types/react-router-bootstrap": "~0.24.5",
|
|
111
|
+
"@types/react-router-dom": "^5.1.7",
|
|
112
|
+
"@types/react-table": "^6.8.7",
|
|
113
|
+
"@types/redux-logger": "3.0.12",
|
|
114
|
+
"bootstrap": "^4.6.0",
|
|
115
|
+
"compare-versions": "^3.6.0",
|
|
116
|
+
"connected-react-router": "^6.8.0",
|
|
117
|
+
"detect-browser": "^5.2.0",
|
|
118
|
+
"history": "^4.10.1",
|
|
119
|
+
"local-storage-fallback": "^4.1.2",
|
|
120
|
+
"lodash": "^4.17.21",
|
|
121
|
+
"memoize-one": "^6.0.0",
|
|
122
|
+
"moment": "^2.30.1",
|
|
123
|
+
"moment-timezone": "^0.6.0",
|
|
124
|
+
"parchment": "^1.1.4",
|
|
125
|
+
"pluralize": "^8.0.0",
|
|
126
|
+
"prop-types": "^15.8.1",
|
|
127
|
+
"query-string": "^6.13.8",
|
|
128
|
+
"quill": "^1.3.7",
|
|
129
|
+
"quill-blot-formatter": "purdue-tlt/quill-blot-formatter#a01562a213eb615abcdf2963457890e81ebc1ab3",
|
|
130
|
+
"react-bootstrap": "^1.6.8",
|
|
131
|
+
"react-ga4": "^2.1.0",
|
|
132
|
+
"react-helmet": "^6.1.0",
|
|
133
|
+
"react-modal": "^3.16.3",
|
|
134
|
+
"react-quill": "purdue-tlt/react-quill#fix/auto-focus",
|
|
135
|
+
"react-redux": "^7.2.9",
|
|
136
|
+
"react-router": "^5.3.4",
|
|
137
|
+
"react-router-bootstrap": "~0.25.0",
|
|
138
|
+
"react-router-dom": "^5.3.4",
|
|
139
|
+
"react-super-responsive-table": "^5.2.0",
|
|
140
|
+
"react-table": "^6.11.5",
|
|
141
|
+
"redux": "^4.2.1",
|
|
142
|
+
"redux-devtools-extension": "^2.13.9",
|
|
143
|
+
"redux-logger": "^3.0.6",
|
|
144
|
+
"redux-persist": "^6.0.0",
|
|
145
|
+
"redux-saga": "^1.3.0",
|
|
146
|
+
"studiokit-caliper-js": "1.0.26-alpha.4",
|
|
147
|
+
"tachyons": "^4.12.0",
|
|
148
|
+
"tslib": "^2.8.1",
|
|
149
|
+
"uuid": "^11.1.0"
|
|
150
|
+
},
|
|
151
|
+
"devDependencies": {
|
|
152
|
+
"@eslint/js": "^9.38.0",
|
|
153
|
+
"@redux-saga/testing-utils": "^1.1.5",
|
|
154
|
+
"@types/enzyme": "^3.10.19",
|
|
155
|
+
"@types/enzyme-adapter-react-16": "^1.0.9",
|
|
156
|
+
"@types/jest": "^30.0.0",
|
|
157
|
+
"@types/mockdate": "^3.0.0",
|
|
158
|
+
"@types/pluralize": "^0.0.33",
|
|
159
|
+
"@types/react": "^17.0.89",
|
|
160
|
+
"@typescript-eslint/parser": "^8.46.2",
|
|
161
|
+
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
162
|
+
"copyfiles": "^2.4.1",
|
|
163
|
+
"cross-env": "^7.0.3",
|
|
164
|
+
"enzyme": "^3.11.0",
|
|
165
|
+
"eslint": "^9.38.0",
|
|
166
|
+
"eslint-config-prettier": "^10.1.8",
|
|
167
|
+
"eslint-config-react-app": "^7.0.1",
|
|
168
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
169
|
+
"eslint-plugin-flowtype": "^8.0.3",
|
|
170
|
+
"eslint-plugin-import": "~2.32.0",
|
|
171
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
172
|
+
"eslint-plugin-prettier": "~5.3.1",
|
|
173
|
+
"eslint-plugin-react": "^7.37.5",
|
|
174
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
175
|
+
"globals": "^16.4.0",
|
|
176
|
+
"husky": "^4.3.8",
|
|
177
|
+
"identity-obj-proxy": "^3.0.0",
|
|
178
|
+
"jest": "^30.2.0",
|
|
179
|
+
"jest-each": "^30.2.0",
|
|
180
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
181
|
+
"jest-fetch-mock": "^3.0.3",
|
|
182
|
+
"jest-junit": "^16.0.0",
|
|
183
|
+
"jest-util": "^30.2.0",
|
|
184
|
+
"jiti": "^2.6.1",
|
|
185
|
+
"lint-staged": "^10.5.3",
|
|
186
|
+
"mockdate": "^3.0.5",
|
|
187
|
+
"npm-run-all": "^4.1.5",
|
|
188
|
+
"prettier": "~3.6.2",
|
|
189
|
+
"react": "^17.0.2",
|
|
190
|
+
"react-dom": "^17.0.2",
|
|
191
|
+
"rimraf": "^3.0.2",
|
|
192
|
+
"sort-package-json": "^1.57.0",
|
|
193
|
+
"stylelint": "^16.25.0",
|
|
194
|
+
"stylelint-config-standard": "^39.0.1",
|
|
195
|
+
"ts-jest": "^29.4.5",
|
|
196
|
+
"typescript": "~5.9.3",
|
|
197
|
+
"typescript-eslint": "^8.46.2"
|
|
198
|
+
},
|
|
199
|
+
"peerDependencies": {
|
|
200
|
+
"@types/react": "^17.0.0",
|
|
201
|
+
"@types/react-redux": "^7.1.16",
|
|
202
|
+
"react": "^17.0.2",
|
|
203
|
+
"react-dom": "^17.0.1"
|
|
204
|
+
},
|
|
205
|
+
"peerDependenciesMeta": {
|
|
206
|
+
"@types/react": {
|
|
207
|
+
"optional": true
|
|
208
|
+
},
|
|
209
|
+
"@types/react-redux": {
|
|
210
|
+
"optional": true
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"packageManager": "yarn@4.10.3"
|
|
214
|
+
}
|