diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index 8b3ed1b2..00000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -16.19.1 diff --git a/package.json b/package.json index 1020e2c4..870e855e 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,29 @@ "version": "0.1.0", "private": true, "type": "module", + "engines": { + "node": ">=20.12.2" + }, + "packageManager": "pnpm@9.0.6", + "scripts": { + "start": "vite", + "build": "tsc && vite build", + "test": "cypress run && vitest run", + "test:cypress:firefox": "cypress run --browser firefox", + "test:vitest": "vitest run", + "test:vitest:watch": "vitest watch", + "check": "biome check ./ --apply", + "lint": "biome lint ./ --apply", + "format": "biome format ./ --apply" + }, + "browserslist": { + "production": [">0.2%", "not dead", "not op_mini all"], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.5.2", "@fortawesome/free-brands-svg-icons": "^6.5.2", @@ -32,25 +55,6 @@ "vite": "^5.2.10", "web-vitals": "^3.0.0" }, - "scripts": { - "start": "vite", - "build": "tsc && vite build", - "test": "cypress run && vitest run", - "test:cypress:firefox": "cypress run --browser firefox", - "test:vitest": "vitest run", - "test:vitest:watch": "vitest watch", - "check": "biome check ./ --apply", - "lint": "biome lint ./ --apply", - "format": "biome format ./ --apply" - }, - "browserslist": { - "production": [">0.2%", "not dead", "not op_mini all"], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - }, "devDependencies": { "@biomejs/biome": "1.7.1", "@testing-library/dom": "^10.0.0", @@ -60,6 +64,5 @@ "@vitejs/plugin-react": "^4.2.1", "cypress": "12.8.1", "vitest": "^1.5.1" - }, - "packageManager": "pnpm@9.0.6" + } }