updated npm packages

This commit is contained in:
Siavash Sameni
2025-12-16 10:15:01 +04:00
parent 4c67bf3a15
commit cf76322008
3 changed files with 3186 additions and 713 deletions

View File

@@ -1,10 +1,6 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
// Skip ESLint during production builds (Vercel) we can fix lint later
eslint: {
ignoreDuringBuilds: true,
},
// Produce a self-contained server bundle at .next/standalone // Produce a self-contained server bundle at .next/standalone
output: 'standalone', output: 'standalone',
images: { images: {

3861
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,28 +9,28 @@
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"@headlessui/react": "^2.2.7", "@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0", "@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.85.5", "@tanstack/react-query": "^5.90.12",
"@web3-react/core": "^8.2.3", "@web3-react/core": "^8.2.3",
"@web3-react/injected-connector": "^6.0.7", "@web3-react/injected-connector": "^6.0.7",
"@web3modal/wagmi": "^5.1.11", "@web3modal/wagmi": "^5.1.11",
"framer-motion": "^12.23.12", "framer-motion": "^12.23.26",
"next": "15.5.0", "next": "^16.0.10",
"react": "19.1.0", "react": "^19.2.3",
"react-dom": "19.1.0", "react-dom": "^19.2.3",
"viem": "^2.35.1", "viem": "^2.42.1",
"wagmi": "^2.16.5" "wagmi": "^3.1.0"
}, },
"devDependencies": { "devDependencies": {
"@eslint/eslintrc": "^3", "@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20", "@types/node": "^25.0.2",
"@types/react": "^19", "@types/react": "^19.2.7",
"@types/react-dom": "^19", "@types/react-dom": "^19.2.3",
"eslint": "^9", "eslint": "^9.39.2",
"eslint-config-next": "15.5.0", "eslint-config-next": "^16.0.10",
"tailwindcss": "^4", "tailwindcss": "^4.1.18",
"typescript": "^5" "typescript": "^5.9.3"
} }
} }