Added Linting and Formating

This commit is contained in:
Ahmad 2024-02-15 20:27:24 -05:00
parent 817cd7f92d
commit d5631b309a
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
4 changed files with 950 additions and 422 deletions

View file

@ -7,7 +7,9 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
"postinstall": "prisma generate",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@clerk/nextjs": "^4.29.3",
@ -45,8 +47,14 @@
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"@next/eslint-plugin-next": "^14.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"postcss": "^8",
"prisma": "^5.9.1",
"tailwindcss": "^3.3.0",