Skip to content

Commit 3afd8c4

Browse files
committed
Fix the dependencies and dev dependencies to reflect actually what is what.
move fetchwmg for testing and fetchmock to dev dependencies nanoid code replacement, schema code replacement fixes. add delete Schema hook. add invalidation + typescript typing to the custom query schemas hooks. Replace redux schema instances Migrate Diff of the Schema to use React query Pages Fixes and retaining old functionalities Remove Schema code reducers + Fix all the tests for Schema + add TODO comments for missing functionalities Nuke All redux related code Redux package deprication TopicForm import fix Fix eslint bugs Add hook tests suites for schemas
1 parent 4a3c424 commit 3afd8c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1207
-1206
lines changed

frontend/package.json

+9-12
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,13 @@
88
"@hookform/error-message": "^2.0.0",
99
"@hookform/resolvers": "^2.7.1",
1010
"@microsoft/fetch-event-source": "^2.0.1",
11-
"@reduxjs/toolkit": "^1.8.3",
1211
"@szhsin/react-menu": "^3.5.3",
1312
"@tanstack/react-query": "^4.0.5",
1413
"@tanstack/react-table": "^8.5.10",
15-
"@testing-library/react": "^14.0.0",
16-
"@types/testing-library__jest-dom": "^5.14.5",
1714
"ace-builds": "^1.7.1",
1815
"ajv": "^8.6.3",
1916
"ajv-formats": "^2.1.1",
2017
"classnames": "^2.2.6",
21-
"fetch-mock": "^9.11.0",
22-
"jest": "^29.4.3",
23-
"jest-watch-typeahead": "^2.2.2",
2418
"json-schema-faker": "^0.5.6",
2519
"jsonpath-plus": "^7.2.0",
2620
"lodash": "^4.17.21",
@@ -35,15 +29,10 @@
3529
"react-hot-toast": "^2.4.0",
3630
"react-is": "^18.2.0",
3731
"react-multi-select-component": "^4.3.3",
38-
"react-redux": "^8.0.2",
3932
"react-router-dom": "^6.3.0",
40-
"redux": "^4.2.0",
4133
"sass": "^1.52.3",
4234
"styled-components": "^5.3.1",
4335
"use-debounce": "^9.0.3",
44-
"vite": "^4.5.2",
45-
"vite-tsconfig-paths": "^4.0.2",
46-
"whatwg-fetch": "^3.6.2",
4736
"yup": "^1.0.0",
4837
"zustand": "^4.1.1"
4938
},
@@ -82,6 +71,8 @@
8271
"@types/styled-components": "^5.1.13",
8372
"@typescript-eslint/eslint-plugin": "^5.29.0",
8473
"@typescript-eslint/parser": "^5.29.0",
74+
"vite": "^4.5.2",
75+
"vite-tsconfig-paths": "^4.0.2",
8576
"@vitejs/plugin-react-swc": "^3.0.0",
8677
"dotenv": "^16.0.1",
8778
"eslint": "^8.3.0",
@@ -96,6 +87,10 @@
9687
"eslint-plugin-prettier": "^4.0.0",
9788
"eslint-plugin-react": "^7.30.1",
9889
"eslint-plugin-react-hooks": "^4.5.0",
90+
"@testing-library/react": "^14.0.0",
91+
"@types/testing-library__jest-dom": "^5.14.5",
92+
"jest": "^29.4.3",
93+
"jest-watch-typeahead": "^2.2.2",
9994
"jest-environment-jsdom": "^29.4.3",
10095
"jest-sonar-reporter": "^2.0.0",
10196
"jest-styled-components": "^7.1.1",
@@ -105,7 +100,9 @@
105100
"ts-prune": "^0.10.3",
106101
"typescript": "^4.7.4",
107102
"vite-plugin-checker": "^0.6.4",
108-
"vite-plugin-ejs": "^1.6.4"
103+
"vite-plugin-ejs": "^1.6.4",
104+
"fetch-mock": "^9.11.0",
105+
"whatwg-fetch": "^3.6.2"
109106
},
110107
"engines": {
111108
"node": "v18.17.1",

0 commit comments

Comments
 (0)