diff --git a/package.json b/package.json index c6f4981..20c0632 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,12 @@ "scripts": { "dev": "next dev", "build": "next build", + "build:dev": "NEXT_NODE_ENV=development next build", + "build:prod": "NEXT_NODE_ENV=production next build", + "start:dev": "NEXT_NODE_ENV=development next start", + "start:prod": "NEXT_NODE_ENV=production next start", + "test": "vitest --watch --passWithNoTests --coverage", + "test:ci": "vitest --ci --passWithNoTests", "start": "next start", "lint": "next lint" },