use pnpm in package.json scripts

This commit is contained in:
Chris Grimmett 2024-03-29 20:43:38 -08:00
parent a55661164b
commit c291ef2fb4
1 changed files with 4 additions and 4 deletions

View File

@ -3,10 +3,10 @@
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev": "pnpm next dev",
"build": "pnpm next build",
"start": "pnpm next start",
"lint": "pnpm next lint",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {