add node as dev depend until µws supports node 23

the arch package for node has been node 23 and µws still does not support it so this is an intirim workaround.
This commit is contained in:
Holly Stubbs 2024-12-16 10:59:34 +00:00
parent b809e6a5e0
commit 959320f060
2 changed files with 26 additions and 0 deletions

View file

@ -26,6 +26,7 @@
"@types/node": "^22.10.2", "@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3", "@vercel/ncc": "^0.38.3",
"check-outdated": "^2.12.0", "check-outdated": "^2.12.0",
"node": "^22.12.0",
"nodemon": "^3.1.9", "nodemon": "^3.1.9",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"terser": "^5.37.0", "terser": "^5.37.0",
@ -2255,6 +2256,30 @@
"integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
"dev": true "dev": true
}, },
"node_modules/node": {
"version": "22.12.0",
"resolved": "https://registry.npmjs.org/node/-/node-22.12.0.tgz",
"integrity": "sha512-Tg4X/MMYSfFNt18iNyqI5TTHvzhqi7A3e11BXRb085L7e5RYfC9PjsJhsvUB7SNwoyI7GCJhfFR73UAzRi6/cg==",
"dev": true,
"hasInstallScript": true,
"license": "ISC",
"dependencies": {
"node-bin-setup": "^1.0.0"
},
"bin": {
"node": "bin/node"
},
"engines": {
"npm": ">=5.0.0"
}
},
"node_modules/node-bin-setup": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/node-bin-setup/-/node-bin-setup-1.1.3.tgz",
"integrity": "sha512-opgw9iSCAzT2+6wJOETCpeRYAQxSopqQ2z+N6BXwIMsQQ7Zj5M8MaafQY8JMlolRR6R1UXg2WmhKp0p9lSOivg==",
"dev": true,
"license": "ISC"
},
"node_modules/nodemon": { "node_modules/nodemon": {
"version": "3.1.9", "version": "3.1.9",
"resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz", "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz",

View file

@ -29,6 +29,7 @@
"@types/node": "^22.10.2", "@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3", "@vercel/ncc": "^0.38.3",
"check-outdated": "^2.12.0", "check-outdated": "^2.12.0",
"node": "^22.12.0",
"nodemon": "^3.1.9", "nodemon": "^3.1.9",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"terser": "^5.37.0", "terser": "^5.37.0",