Skip to content

Commit

Permalink
Feat; impelement coupons' functionaties (#109)
Browse files Browse the repository at this point in the history
implement coupons table

fix build & lint error's

fix testing errors

rebase from develop
  • Loading branch information
wayneleon1 authored and niyobern committed Jul 25, 2024
1 parent a81ebd7 commit 550e053
Show file tree
Hide file tree
Showing 28 changed files with 1,692 additions and 213 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ module.exports = {
'react/self-closing-comp': 0,
'react/jsx-props-no-spreading': 0,
'@typescript-eslint/no-explicit-any': 0,
'jsx-a11y/label-has-associated-control': 0,
'jsx-a11y/control-has-associated-label': 0,
'react/no-array-index-key': 0,
'no-nested-ternary': 0,
'no-param-reassign': [
'error',
{ props: true, ignorePropertyModificationsFor: ['state'] },
Expand Down
81 changes: 29 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,14 @@
"dependencies": {
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@reduxjs/toolkit": "^2.2.5",
"@reduxjs/toolkit": "^2.2.6",
"@testing-library/user-event": "^14.5.2",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/swiper": "^6.0.0",
"axios": "^1.7.2",
"axios-mock-adapter": "^1.22.0",
"chart.js": "^4.4.3",
"chart.js": "^4.4.3",
"date-fns": "^3.6.0",
"cloudinary": "^2.2.0",
"cloudinary-core": "^2.13.1",
"date-fns": "^3.6.0",
Expand Down Expand Up @@ -59,7 +57,7 @@
"yup": "^1.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.12",
Expand All @@ -68,7 +66,7 @@
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.2.22",
"@types/react-dom": "^18.3.0",
"@types/react-simple-maps": "^3.0.4",
"@types/react-slider": "^1.3.6",
"@types/redux-mock-store": "^1.0.6",
Expand All @@ -88,6 +86,7 @@
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.5",
Expand All @@ -99,7 +98,6 @@
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^1.6.0",
"husky": "^8.0.0"
"vitest": "^1.6.0"
}
}
Loading

0 comments on commit 550e053

Please sign in to comment.