Project initialize
parents
Showing
.env
0 → 100644
.eslintcache
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.husky/pre-commit
0 → 100755
.nvmrc
0 → 100644
README.md
0 → 100644
jsconfig.json
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
{ | |||
"name": "baitussalam-dashboard", | |||
"version": "0.1.0", | |||
"private": true, | |||
"dependencies": { | |||
"@reduxjs/toolkit": "^1.9.5", | |||
"@testing-library/jest-dom": "^5.16.5", | |||
"@testing-library/react": "^13.4.0", | |||
"@testing-library/user-event": "^13.5.0", | |||
"antd": "^5.8.1", | |||
"axios": "^1.4.0", | |||
"react": "^18.2.0", | |||
"react-dom": "^18.2.0", | |||
"react-hook-form": "^7.36.0", | |||
"react-redux": "^8.1.2", | |||
"react-router-dom": "^6.14.2", | |||
"react-scripts": "5.0.1", | |||
"redux-thunk": "^2.4.1", | |||
"web-vitals": "^2.1.4" | |||
}, | |||
"scripts": { | |||
"start": "react-scripts start", | |||
"build": "react-scripts build", | |||
"test": "react-scripts test", | |||
"eject": "react-scripts eject", | |||
"prepare": "husky install" | |||
}, | |||
"lint-staged": { | |||
"*.js": "eslint --cache --fix", | |||
"*.{js,json,css}": "prettier --write" | |||
}, | |||
"eslintConfig": { | |||
"extends": [ | |||
"react-app", | |||
"react-app/jest" | |||
] | |||
}, | |||
"browserslist": { | |||
"production": [ | |||
">0.2%", | |||
"not dead", | |||
"not op_mini all" | |||
], | |||
"development": [ | |||
"last 1 chrome version", | |||
"last 1 firefox version", | |||
"last 1 safari version" | |||
] | |||
}, | |||
"devDependencies": { | |||
"eslint": "^8.23.1", | |||
"eslint-config-airbnb": "^19.0.4", | |||
"eslint-plugin-import": "^2.26.0", | |||
"eslint-plugin-jsx-a11y": "^6.6.1", | |||
"eslint-plugin-react": "^7.31.8", | |||
"eslint-plugin-react-hooks": "^4.6.0", | |||
"husky": "^8.0.1", | |||
"lint-staged": "^13.0.3", | |||
"postcss": "^8.4.16", | |||
"prettier": "^2.7.1", | |||
"tailwindcss": "^3.1.8" | |||
} | |||
} |
public/favicon.ico
0 → 100644
3.78 KB
public/index.html
0 → 100644
public/logo192.png
0 → 100644
5.22 KB
public/logo512.png
0 → 100644
9.44 KB
public/manifest.json
0 → 100644
public/robots.txt
0 → 100644
src/App.css
0 → 100644
src/App.js
0 → 100644
src/App.test.js
0 → 100644
src/components/index.js
0 → 100644
src/constants/index.js
0 → 100644
src/index.css
0 → 100644
src/index.js
0 → 100644
src/logo.svg
0 → 100644
src/pages/Dashboard.js
0 → 100644
src/pages/Login.js
0 → 100644
src/pages/index.js
0 → 100644
src/redux/actions/index.js
0 → 100644
src/redux/reducers/index.js
0 → 100644
src/redux/store/index.js
0 → 100644
src/reportWebVitals.js
0 → 100644
src/routes/index.js
0 → 100644
src/setupTests.js
0 → 100644
src/utils/index.js
0 → 100644