-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vite done * pr review change done * Update prod.yml --------- Co-authored-by: CodedThemes <[email protected]>
- Loading branch information
1 parent
ffa6c9f
commit f47873d
Showing
148 changed files
with
10,480 additions
and
17,947 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
REACT_APP_VERSION = v2.0.0 | ||
VITE_APP_VERSION = v3.0.0 | ||
GENERATE_SOURCEMAP = false | ||
|
||
## Public URL | ||
PUBLIC_URL = https://codedthemes.com/demos/admin-templates/datta-able/react/free/ | ||
PUBLIC_URL = https://codedthemes.com/demos/admin-templates/datta-able/react/free/ | ||
VITE_APP_BASE_NAME= demos/admin-templates/datta-able/react/free | ||
|
||
## Google Map Key | ||
VITE_APP_GOOGLE_MAPS_API_KEY= | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
|
||
# production | ||
/build | ||
/dist | ||
|
||
# misc | ||
.DS_Store | ||
|
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.1.1.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Title --> | ||
<title>Welcome | Datta Able Free React Hooks + Admin Template</title> | ||
|
||
<!-- Meta --> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=0, minimal-ui" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta | ||
name="description" | ||
content="Datta able react with webpack admin template made using bootstrap 5 and it has huge amount of ready made feature, UI components, pages which completely fulfills any dashboard needs." | ||
/> | ||
<meta | ||
name="keywords" | ||
content="Admin templates, Bootstrap Admin templates, React, Webpack, bootstrap 5, Dashboard, Dashboard Templates, sass admin templates, html admin templates, Responsive, Bootstrap Admin templates free download, React Admin templates free download,premium Bootstrap Admin templates,premium React Admin templates download" | ||
/> | ||
<meta name="author" content="Codedthemes" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<!-- Favicon & Manifest --> | ||
<link rel="icon" href="/favicon.ico" /> | ||
|
||
<!-- Google Fonts Style --> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script type="module" src="/src/index.jsx"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "esnext", | ||
"module": "commonjs", | ||
"baseUrl": "src" | ||
}, | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"compilerOptions": { | ||
"composite": true, | ||
"module": "ESNext", | ||
"moduleResolution": "Node", | ||
"allowSyntheticDefaultImports": true | ||
}, | ||
"include": ["vite.config.mjs"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,41 @@ | ||
{ | ||
"name": "datta-able-free-react-admin-template", | ||
"version": "2.0.0", | ||
"private": false, | ||
"homepage": "https://codedthemes.com/demos/admin-templates/datta-able/react/free/", | ||
"license": "MIT", | ||
"name": "datta-able-react-hook-reactstrap-js", | ||
"version": "3.0.0", | ||
"private": true, | ||
"scripts": { | ||
"start": "vite", | ||
"build": "node --max-old-space-size=4096 node_modules/vite/bin/vite.js build", | ||
"preview": "vite preview", | ||
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"", | ||
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"", | ||
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"" | ||
}, | ||
"dependencies": { | ||
"@reduxjs/toolkit": "^1.9.5", | ||
"@tanem/react-nprogress": "^5.0.42", | ||
"@testing-library/jest-dom": "^5.16.5", | ||
"@testing-library/react": "^14.0.0", | ||
"@testing-library/user-event": "^14.4.3", | ||
"axios": "^1.4.0", | ||
"axios-mock-adapter": "^1.21.4", | ||
"bootstrap": "^5.3.0", | ||
"@originjs/vite-plugin-commonjs": "^1.0.3", | ||
"@react-google-maps/api": "^2.19.3", | ||
"@tanem/react-nprogress": "^5.0.51", | ||
"@testing-library/jest-dom": "^6.4.2", | ||
"@testing-library/react": "^15.0.2", | ||
"@testing-library/user-event": "^14.5.2", | ||
"@vitejs/plugin-react": "^4.2.1", | ||
"bootstrap": "^5.3.3", | ||
"chance": "^1.1.11", | ||
"formik": "^2.4.1", | ||
"jquery": "^3.7.0", | ||
"jsonwebtoken": "^9.0.0", | ||
"d3": "^7.9.0", | ||
"formik": "^2.4.5", | ||
"jquery": "^3.7.1", | ||
"process": "^0.11.10", | ||
"react": "^18.2.0", | ||
"react-app-polyfill": "^3.0.0", | ||
"react-bootstrap": "^2.7.4", | ||
"react-bootstrap": "^2.10.2", | ||
"react-copy-to-clipboard": "^5.1.0", | ||
"react-dom": "^18.2.0", | ||
"react-google-maps": "^9.4.5", | ||
"react-icons": "^4.9.0", | ||
"react-nvd3": "^0.5.7", | ||
"react-google-charts": "^4.0.1", | ||
"react-icons": "^5.0.1", | ||
"react-perfect-scrollbar": "^1.5.8", | ||
"react-redux": "^8.1.0", | ||
"react-router-dom": "^6.12.1", | ||
"react-scripts": "5.0.1", | ||
"redux": "^4.2.1", | ||
"redux-form": "^8.3.10", | ||
"rodal": "^2.0.1", | ||
"sass": "^1.63.3", | ||
"styled-components": "^5.3.11", | ||
"web-vitals": "^3.3.2", | ||
"yup": "^1.2.0" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
"react-router-dom": "^6.22.3", | ||
"vite": "^5.2.0", | ||
"vite-jsconfig-paths": "^2.0.1", | ||
"web-vitals": "^3.5.2", | ||
"yup": "^1.4.0" | ||
}, | ||
"overrides": { | ||
"autoprefixer": "10.4.5" | ||
|
@@ -60,22 +53,24 @@ | |
] | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.21.4", | ||
"@babel/eslint-parser": "^7.21.3", | ||
"@babel/core": "^7.24.4", | ||
"@babel/eslint-parser": "^7.24.1", | ||
"@babel/plugin-proposal-private-property-in-object": "^7.21.11", | ||
"@babel/preset-react": "^7.18.6", | ||
"@babel/preset-react": "^7.24.1", | ||
"env-cmd": "^10.1.0", | ||
"eslint": "^8.38.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-config-react-app": "^7.0.1", | ||
"eslint-plugin-flowtype": "^8.0.3", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-jsx-a11y": "^6.7.1", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-react": "^7.32.2", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-jsx-a11y": "^6.8.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-react": "^7.34.1", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"immutable": "^4.3.0", | ||
"prettier": "2.8.8", | ||
"react-error-overlay": "6.0.11" | ||
} | ||
"immutable": "^4.3.5", | ||
"prettier": "3.2.5", | ||
"react-error-overlay": "6.0.11", | ||
"sass": "^1.75.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import React from 'react'; | ||
import { BrowserRouter } from 'react-router-dom'; | ||
|
||
import routes, { renderRoutes } from './routes'; | ||
|
||
const App = () => { | ||
return <BrowserRouter basename={import.meta.env.VITE_APP_BASE_NAME}>{renderRoutes(routes)}</BrowserRouter>; | ||
}; | ||
|
||
export default App; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.