From 78cb6b52571a5562cd14b38326ed877180003cc8 Mon Sep 17 00:00:00 2001 From: Kevin De Porre Date: Thu, 12 Dec 2024 10:31:57 +0100 Subject: [PATCH] order scripts in package.json alphabetically --- examples/nextjs/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index cd230b73bf..a320bb7cf8 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -8,11 +8,11 @@ "scripts": { "backend:up": "PROJECT_NAME=nextjs-example pnpm -C ../../ run example-backend:up && pnpm db:migrate", "backend:down": "PROJECT_NAME=nextjs-example pnpm -C ../../ run example-backend:down", + "build": "next build", "db:migrate": "dotenv -e ../../.env.dev -- pnpm exec pg-migrations apply --directory ./db/migrations", "dev": "next dev --turbo -p 5173", - "build": "next build", - "start": "next start", "format": "eslint . --fix", + "start": "next start", "stylecheck": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "typecheck": "tsc --noEmit" },