Commits on Source (5)
-
Tadeusz Miesiąc authored821ac306
-
Tadeusz Miesiąc authored7ba61a1d
-
Tadeusz Miesiąc authored00006678
-
Tadeusz Miesiąc authored5435ce93
-
Tadeusz Miesiąc authored
Feature/setup redux async See merge request !16
18e5b773
Showing
- .eslintrc.json 9 additions, 1 deletion.eslintrc.json
- next-env.d.ts 1 addition, 0 deletionsnext-env.d.ts
- package-lock.json 321 additions, 2209 deletionspackage-lock.json
- package.json 7 additions, 1 deletionpackage.json
- pages/_app.tsx 10 additions, 0 deletionspages/_app.tsx
- pages/redux-api-poc.tsx 28 additions, 0 deletionspages/redux-api-poc.tsx
- src/components/AppWrapper/AppWrapper.component.tsx 11 additions, 0 deletionssrc/components/AppWrapper/AppWrapper.component.tsx
- src/components/AppWrapper/index.ts 1 addition, 0 deletionssrc/components/AppWrapper/index.ts
- src/components/FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx 1 addition, 1 deletion...FunctionalArea/TopBar/UserAvatar/UserAvatar.component.tsx
- src/constants/.gitkeep 0 additions, 0 deletionssrc/constants/.gitkeep
- src/constants/api.ts 1 addition, 0 deletionssrc/constants/api.ts
- src/models/disease.ts 9 additions, 0 deletionssrc/models/disease.ts
- src/models/organism.ts 9 additions, 0 deletionssrc/models/organism.ts
- src/models/project.ts 47 additions, 0 deletionssrc/models/project.ts
- src/redux/hooks/useAppDispatch.ts 4 additions, 0 deletionssrc/redux/hooks/useAppDispatch.ts
- src/redux/hooks/useAppSelector.ts 6 additions, 0 deletionssrc/redux/hooks/useAppSelector.ts
- src/redux/project/project.reducers.ts 10 additions, 0 deletionssrc/redux/project/project.reducers.ts
- src/redux/project/project.slice.ts 20 additions, 0 deletionssrc/redux/project/project.slice.ts
- src/redux/project/project.thunks.ts 16 additions, 0 deletionssrc/redux/project/project.thunks.ts
- src/redux/project/project.types.ts 7 additions, 0 deletionssrc/redux/project/project.types.ts
This diff is collapsed.
... | ... | @@ -28,23 +28,29 @@ |
}, | ||
"dependencies": { | ||
"@next/font": "^13.5.2", | ||
"@reduxjs/toolkit": "^1.9.6", | ||
"@types/node": "20.6.2", | ||
"@types/react": "18.2.21", | ||
"@types/react-dom": "18.2.7", | ||
"autoprefixer": "10.4.15", | ||
"axios": "^1.5.1", | ||
"eslint-config-next": "13.4.19", | ||
"next": "13.4.19", | ||
"postcss": "8.4.29", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-redux": "^8.1.2", | ||
"tailwind-merge": "^1.14.0", | ||
"tailwindcss": "3.3.3" | ||
"tailwindcss": "3.3.3", | ||
"zod": "^3.22.2" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^17.7.1", | ||
"@commitlint/config-conventional": "^17.7.0", | ||
"@testing-library/jest-dom": "^6.1.3", | ||
"@testing-library/react": "^14.0.0", | ||
"@types/jest": "^29.5.5", | ||
"@types/react-redux": "^7.1.26", | ||
"@typescript-eslint/eslint-plugin": "^6.7.0", | ||
"@typescript-eslint/parser": "^6.7.0", | ||
"cypress": "^13.2.0", | ||
... | ... |
pages/_app.tsx
0 → 100644
pages/redux-api-poc.tsx
0 → 100644
src/components/AppWrapper/index.ts
0 → 100644
src/constants/.gitkeep
deleted
100644 → 0
src/constants/api.ts
0 → 100644
src/models/disease.ts
0 → 100644
src/models/organism.ts
0 → 100644
src/models/project.ts
0 → 100644
src/redux/hooks/useAppDispatch.ts
0 → 100644
src/redux/hooks/useAppSelector.ts
0 → 100644
src/redux/project/project.reducers.ts
0 → 100644
src/redux/project/project.slice.ts
0 → 100644
src/redux/project/project.thunks.ts
0 → 100644
src/redux/project/project.types.ts
0 → 100644