Add node/npm version config to package.json

This commit is contained in:
issy 2025-12-15 18:12:51 +00:00
parent 39af85625e
commit 85940f4de2
2 changed files with 14 additions and 0 deletions

4
web/package-lock.json generated
View File

@ -118,6 +118,10 @@
"typescript": "^5.8.2", "typescript": "^5.8.2",
"vite": "^6.2.0", "vite": "^6.2.0",
"vitest": "^3.0.7" "vitest": "^3.0.7"
},
"engines": {
"node": "20.19.6",
"npm": "10.8.2"
} }
}, },
"node_modules/@aashutoshrathi/word-wrap": { "node_modules/@aashutoshrathi/word-wrap": {

View File

@ -3,6 +3,16 @@
"private": true, "private": true,
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"packageManager": "npm@10.8.2",
"engineStrict": true,
"engines": {
"node": "20.19.6",
"npm": "10.8.2"
},
"volta": {
"node": "20.19.6",
"npm": "10.8.2"
},
"scripts": { "scripts": {
"dev": "vite --host", "dev": "vite --host",
"build": "tsc && vite build --base=/BASE_PATH/", "build": "tsc && vite build --base=/BASE_PATH/",