-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* chore: 🔧 specify node version in package json instead of .nvmrc * refactor: ♻️ reorganize package.json for readability * chore: 🔧 update minimum node version from 16 to 18 * chore: ⬆️ bump node version to 20 (LTS) * chore: ⬆️ sync pnpm version with main
- Loading branch information
Showing
2 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,29 @@ | |
"version": "0.1.0", | ||
"private": true, | ||
"type": "module", | ||
"engines": { | ||
"node": ">=20.12.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"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": "[email protected]" | ||
} | ||
} |