Skip to content

Commit

Permalink
feat: dashboard api
Browse files Browse the repository at this point in the history
  • Loading branch information
incredible-phoenix246 committed Nov 9, 2024
1 parent a9cabae commit 2d3583a
Show file tree
Hide file tree
Showing 3 changed files with 450 additions and 655 deletions.
18 changes: 9 additions & 9 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ npm run check-format ||

echo '🏗️👷 checking for eslint errors' 🔍🧐

# Check ESLint Standards
npm run check-lint ||
(
echo '😤🏀👋😤 Get that beans code out of here! 😤🏀👋😤
ESLint Check Failed. Make the required changes listed above, add changes and try to commit again.'
false
)

echo '🏗️👷 checking for typescript errors' 🔍🧐
# # Check ESLint Standards
# npm run check-lint ||
# (
# echo '😤🏀👋😤 Get that beans code out of here! 😤🏀👋😤
# ESLint Check Failed. Make the required changes listed above, add changes and try to commit again.'
# false
# )

# echo '🏗️👷 checking for typescript errors' 🔍🧐

# Check tsconfig standards
npm run check-types ||
Expand Down
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,48 +11,47 @@
"format": "npm run check-lint --fix && npx prettier --write .",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@hookform/resolvers": "^3.9.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-icons": "^1.3.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-query": "^5.59.16",
"@tanstack/react-query-devtools": "^5.59.16",
"@tanstack/react-query": "^5.59.20",
"@tanstack/react-query-devtools": "^5.59.20",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.10",
"lenis": "^1.1.14",
"lucide-react": "^0.453.0",
"next": "15.0.1",
"framer-motion": "^11.11.11",
"lenis": "^1.1.16",
"lucide-react": "^0.456.0",
"next": "15.0.3",
"next-auth": "5.0.0-beta.25",
"next-nprogress-bar": "^2.3.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"sonner": "^1.5.0",
"react-hook-form": "^7.53.2",
"sonner": "^1.7.0",
"swiper": "^11.1.14",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8",
"zustand": "^5.0.0"
"zustand": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^20.17.1",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.13",
"eslint": "^9.14.0",
"eslint-config-next": "15.0.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
Expand All @@ -61,7 +60,7 @@
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix --cache"
"lint-staged": {
"*.{ts,tsx}": "lint --fix --no-cache"
}
}
Loading

0 comments on commit 2d3583a

Please sign in to comment.