Skip to content

Commit

Permalink
VF-149 Oppdater Node til nyeste stabile versjon 20.12.2 (LTS) (#290)
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
phibkro authored May 2, 2024
1 parent 02be7b7 commit 750ca93
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 22 deletions.
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

45 changes: 24 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -60,6 +64,5 @@
"@vitejs/plugin-react": "^4.2.1",
"cypress": "12.8.1",
"vitest": "^1.5.1"
},
"packageManager": "[email protected]"
}
}

0 comments on commit 750ca93

Please sign in to comment.