Files
Alexander Brandon Coles 1e4d633fa0 Allow npm 11 alongside npm 10
Node 24 ships npm 11, which the previous `^10.9.8` range rejected with
an EBADENGINE warning.
2026-06-07 21:44:36 +01:00

23 lines
604 B
JSON

{
"name": "openproject",
"version": "0.1.0",
"scripts": {
"postinstall": "cd frontend && npm install",
"test": "cd frontend && npm test && cd ..",
"tslint_typechecks": "cd frontend && npm run tslint_typechecks && cd ..",
"serve": "cd frontend && npm run serve",
"serve:public": "cd frontend && ./node_modules/.bin/ng serve --host 0.0.0.0"
},
"private": true,
"engines": {
"node": "^22.22.3 || ^24.15.0",
"npm": "^10.9.8 || ^11.0.0"
},
"devDependencies": {
"@redocly/cli": "^2.17.0"
},
"dependencies": {
"@xeokit/xeokit-gltf-to-xkt": "^1.3.1"
}
}