Skip to content

Commit

Permalink
lots of work on the admin ui
Browse files Browse the repository at this point in the history
  • Loading branch information
shadrach-tayo committed Oct 4, 2024
1 parent e80aa3e commit 731c48d
Show file tree
Hide file tree
Showing 66 changed files with 6,782 additions and 461 deletions.
12 changes: 11 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
{
"extends": "next/core-web-vitals"
"extends": "next/core-web-vitals",
"plugins": ["react-refresh"],
"rules": {
"react-refresh/only-export-components": "warn"
},
"ignorePatterns": [
"dist",
".eslintrc.cjs",
"src/components/ui",
"tailwind.config.js"
]
}
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"request": "launch",
"name": "Next.js Dev start",
"skipFiles": [
"<node_internals>/**"
],
"command": "npm run dev"
}
]
}
2,049 changes: 1,868 additions & 181 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 19 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,40 @@
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@tabler/icons-react": "^3.19.0",
"@tanstack/react-query": "^5.54.1",
"@tanstack/react-table": "^8.20.5",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"lucide-react": "^0.438.0",
"next": "^14.2.7",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-resizable-panels": "^2.1.2",
"recharts": "^2.12.7",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-radix": "^3.0.4"
"tailwindcss-radix": "^3.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@radix-ui/colors": "^3.0.0",
Expand All @@ -34,6 +51,7 @@
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"eslint-plugin-react-refresh": "^0.4.12",
"postcss": "^8",
"sass": "^1.78.0",
"tailwindcss": "^3.4.1",
Expand Down
Loading

0 comments on commit 731c48d

Please sign in to comment.