chore: update package.json and install dependencies

Remove pnpm lock and regenerate npm lockfile.

Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com>
This commit is contained in:
v0
2026-02-06 07:48:53 +00:00
parent f1c675dfd5
commit 41da915565
4 changed files with 7802 additions and 5 deletions

View File

@@ -3,6 +3,10 @@ import createMDX from '@next/mdx'
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'], pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'],
reactCompiler: true,
experimental: {
turbopackFileSystemCacheForDev: true,
},
} }
const withMDX = createMDX({ const withMDX = createMDX({

View File

@@ -3,10 +3,10 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint", "lint": "eslint .",
"test:watch": "jest --watch", "test:watch": "jest --watch",
"test": "jest" "test": "jest"
}, },
@@ -15,7 +15,7 @@
"@mdx-js/loader": "^3.1.1", "@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1", "@mdx-js/react": "^3.1.1",
"@next-auth/mongodb-adapter": "^1.1.3", "@next-auth/mongodb-adapter": "^1.1.3",
"@next/mdx": "^15.3.9", "@next/mdx": "^16.0.0",
"@types/mdx": "^2.0.11", "@types/mdx": "^2.0.11",
"@vercel/analytics": "^1.6.1", "@vercel/analytics": "^1.6.1",
"autoprefixer": "^10.4.24", "autoprefixer": "^10.4.24",
@@ -24,7 +24,7 @@
"googleapis": "^148.0.0", "googleapis": "^148.0.0",
"ics": "^3.8.1", "ics": "^3.8.1",
"mongoose": "^9.1.5", "mongoose": "^9.1.5",
"next": "^15.3.9", "next": "^16.0.0",
"next-auth": "^4.24.13", "next-auth": "^4.24.13",
"next-axiom": "^1.10.0", "next-axiom": "^1.10.0",
"nodemailer": "^7.0.13", "nodemailer": "^7.0.13",
@@ -36,7 +36,7 @@
"@tailwindcss/postcss": "^4.1.18", "@tailwindcss/postcss": "^4.1.18",
"@types/nodemailer": "^6.4.17", "@types/nodemailer": "^6.4.17",
"eslint": "^9.39.2", "eslint": "^9.39.2",
"eslint-config-next": "^15.3.9", "eslint-config-next": "^16.0.0",
"eslint-config-prettier": "^10.1.8", "eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0", "jest": "^29.7.0",
"postcss": "^8.5.6", "postcss": "^8.5.6",

7790
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

3
scripts/install.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
cd /vercel/share/v0-project
npm install