Skip to content

Commit

Permalink
chore: updated deps and fixed minor errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SameerJadav committed Nov 1, 2023
1 parent 74ad6eb commit f6d054a
Show file tree
Hide file tree
Showing 32 changed files with 955 additions and 893 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require("path")
const path = require("path");

/** @type {import("eslint").Linter.Config} */
const config = {
Expand Down Expand Up @@ -30,6 +30,6 @@ const config = {
],
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
},
}
};

module.exports = config
module.exports = config;
11 changes: 11 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store
node_modules
/build
/.next
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
6 changes: 3 additions & 3 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
*
* Example(unix system): SKIP_ENV_VALIDATION=1 pnpm run dev
*/
await import("./src/env.mjs")
await import("./src/env.mjs");

/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
swcMinify: true,
typescript: { ignoreBuildErrors: true },
eslint: { ignoreDuringBuilds: true },
}
};

export default config
export default config;
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,48 @@
"scripts": {
"build": "prisma generate && next build",
"dev": "prisma generate && next dev",
"lint": "next lint",
"lint": "prettier --check . && next lint",
"start": "next start --port 5000",
"preview": "pnpm run build && pnpm run start",
"postinstall": "prisma generate",
"typecheck": "tsc --noEmit",
"typecheck-lint": "pnpm run lint && pnpm run typecheck"
"format": "prettier --write ."
},
"dependencies": {
"@clerk/nextjs": "^4.23.5",
"@formkit/auto-animate": "^0.7.0",
"@prisma/client": "^5.2.0",
"@radix-ui/colors": "^2.1.0",
"@clerk/nextjs": "^4.26.1",
"@formkit/auto-animate": "^0.8.0",
"@prisma/client": "^5.5.2",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@t3-oss/env-nextjs": "^0.6.1",
"@tanstack/react-query": "^4.33.0",
"@vercel/analytics": "^1.0.2",
"axios": "^1.5.0",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^5.4.3",
"@vercel/analytics": "^1.1.1",
"axios": "^1.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"next": "^13.4.19",
"next": "^14.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.2"
"tailwind-merge": "^2.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@clerk/types": "^3.51.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/eslint": "^8.44.2",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-next": "^13.4.19",
"postcss": "^8.4.29",
"@clerk/types": "^3.57.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/eslint": "^8.44.6",
"@types/node": "^20.8.10",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"prisma": "^5.2.0",
"tailwindcss": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"prisma": "^5.5.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
}
}
Loading

1 comment on commit f6d054a

@vercel
Copy link

@vercel vercel bot commented on f6d054a Nov 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.