Skip to content

Commit

Permalink
v-2.0.0 initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shafiqhammad5 committed Feb 9, 2025
1 parent 833120c commit 46e698e
Show file tree
Hide file tree
Showing 437 changed files with 11,372 additions and 7,689 deletions.
16 changes: 16 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
];

export default eslintConfig;
4 changes: 0 additions & 4 deletions next.config.mjs

This file was deleted.

14 changes: 14 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
return config;
},
};

export default nextConfig;
43 changes: 29 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "free-nextjs-admin-dashboard",
"version": "1.3.5",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,24 +9,39 @@
"lint": "next lint"
},
"dependencies": {
"apexcharts": "^3.45.2",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@react-jvectormap/core": "^1.0.4",
"@react-jvectormap/world": "^1.1.2",
"@tailwindcss/forms": "^0.5.9",
"apexcharts": "^4.3.0",
"autoprefixer": "^10.4.20",
"flatpickr": "^4.6.13",
"jsvectormap": "^1.6.0",
"next": "^14.2.4",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-dom": "^18"
"next": "15.1.3",
"react": "^19.0.0",
"react-apexcharts": "^1.7.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-flatpickr": "^3.10.13",
"swiper": "^11.2.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-flatpickr": "^3.8.11",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
Expand Down
Binary file removed public/images/best-value-banner.png
Binary file not shown.
18 changes: 5 additions & 13 deletions public/images/brand/brand-01.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 9 additions & 3 deletions public/images/brand/brand-02.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 4 additions & 10 deletions public/images/brand/brand-03.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 25 additions & 3 deletions public/images/brand/brand-04.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 5 additions & 10 deletions public/images/brand/brand-05.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/images/brand/brand-06.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/images/brand/brand-07.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 46e698e

Please sign in to comment.