From 30e6d3040b8b7671e4429289cb4e813762fe7fb3 Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Thu, 29 May 2025 09:47:27 -0600 Subject: [PATCH] Update package.json --- web/package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/package.json b/web/package.json index 68664cffc..8962ef34c 100644 --- a/web/package.json +++ b/web/package.json @@ -5,11 +5,13 @@ "scripts": { "dev": "next dev --turbo", "build": "npm run lint:biome && next build", + "build:skip-lint": "next build", "start": "next start", "lint": "npx biome check && next lint", "lint:biome": "npx biome check", "lint:eslint": "next lint", "lint:ci": "npx biome check", + "lint:fix": "npx biome check --write", "test": "vitest", "test:watch": "vitest --watch", "test:ui": "vitest --ui",