Skip to content

Commit

Permalink
order scripts in package.json alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-dp committed Dec 12, 2024
1 parent e9e0625 commit 78cb6b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit 78cb6b5

Please sign in to comment.