Skip to content

Commit 5330d19

Browse files
committed
chore/fix: major update/fixes - frontend added
1 parent 68ab055 commit 5330d19

File tree

255 files changed

+16647
-1702
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+16647
-1702
lines changed

client/.eslintrc.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"ignorePatterns": ["src/components/ui/**"],
3+
"extends": [
4+
"next/core-web-vitals",
5+
"standard",
6+
"plugin:tailwindcss/recommended",
7+
"prettier"
8+
],
9+
"rules": {
10+
"camelcase": "off",
11+
"no-unused-vars": "off",
12+
"tailwindcss/no-custom-classname": "off"
13+
}
14+
}

client/components.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/app/globals.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils"
16+
}
17+
}

client/next-env.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/basic-features/typescript for more information.

client/next.config.mjs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {};
3+
4+
export default nextConfig;

client/package.json

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"name": "client",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next start",
9+
"lint": "next lint"
10+
},
11+
"dependencies": {
12+
"@heroicons/react": "^2.1.3",
13+
"@hookform/resolvers": "^3.3.4",
14+
"@radix-ui/react-avatar": "^1.0.4",
15+
"@radix-ui/react-dialog": "^1.0.5",
16+
"@radix-ui/react-dropdown-menu": "^2.0.6",
17+
"@radix-ui/react-icons": "^1.3.0",
18+
"@radix-ui/react-label": "^2.0.2",
19+
"@radix-ui/react-menubar": "^1.0.4",
20+
"@radix-ui/react-select": "^2.0.0",
21+
"@radix-ui/react-slot": "^1.0.2",
22+
"@radix-ui/react-tabs": "^1.0.4",
23+
"@reduxjs/toolkit": "^2.1.0",
24+
"async-mutex": "^0.4.1",
25+
"axios": "^1.6.7",
26+
"class-variance-authority": "^0.7.0",
27+
"clsx": "^2.1.1",
28+
"cookies-next": "^4.1.1",
29+
"date-fns": "^3.6.0",
30+
"lucide-react": "^0.378.0",
31+
"next": "14.1.4",
32+
"next-themes": "^0.3.0",
33+
"react": "^18",
34+
"react-dom": "^18",
35+
"react-hook-form": "^7.50.1",
36+
"react-redux": "^9.1.0",
37+
"react-select": "^5.8.0",
38+
"react-toastify": "^10.0.4",
39+
"tailwind-merge": "^2.3.0",
40+
"tailwindcss-animate": "^1.0.7",
41+
"zod": "^3.22.4"
42+
},
43+
"devDependencies": {
44+
"@types/node": "^20",
45+
"@types/react": "^18",
46+
"@types/react-dom": "^18",
47+
"autoprefixer": "^10.0.1",
48+
"eslint": "^8",
49+
"eslint-config-next": "14.1.4",
50+
"eslint-config-prettier": "^9.1.0",
51+
"eslint-config-standard": "^17.1.0",
52+
"eslint-plugin-tailwindcss": "^3.14.1",
53+
"postcss": "^8",
54+
"prettier": "^3.2.4",
55+
"sharp": "^0.33.2",
56+
"tailwindcss": "^3.3.0",
57+
"typescript": "^5"
58+
}
59+
}

0 commit comments

Comments
 (0)