Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: "22"
node-version: "24"
- name: Cache node modules
uses: actions/cache@master
env:
Expand All @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
node-version:
- 22
- 24
machines:
- vlcdhp02
runs-on: ${{ matrix.machines }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd_prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: "22"
node-version: "24"

# Speed up subsequent runs with caching
- name: Cache node modules
Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
node-version:
- 22
- 24
machines:
- vlcdhprdp02
runs-on: ${{ matrix.machines }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ To stop the application, kill or exit the process via your shell (<kbd>CTRL + C<
The developers in the Research Computing Group at Saint Louis University authored and maintain this service.
Neither specific warranty or rights are associated with RERUM; registering and contributing implies only those rights
each object asserts about itself. We welcome sister instances of RERUM, ports to other languages, package managers, builds, etc.
[Contributions](#-contributors-) to this repository will be accepted as pull requests.
[Contributions](#-contributors-) to this repository will be accepted as pull requests.
166 changes: 79 additions & 87 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"author": "Research Computing Group <[email protected]> (https://slu.edu)",
"repository": "github:CenterForDigitalHumanities/rerum_server_nodejs",
"engines": {
"node": ">=22.20.0"
"node": ">=24.12.0",
"npm": ">=11.7.0"
},
"scripts": {
"start": "node ./bin/rerum_v1.js",
Expand All @@ -32,15 +33,15 @@
"cors": "^2.8.5",
"debug": "~4.4.3",
"dotenv": "~17.2.3",
"express": "^5.1.0",
"express": "^5.2.1",
"express-oauth2-jwt-bearer": "~1.7.1",
"express-urlrewrite": "~2.0.3",
"mongodb": "~6.20.0",
"mongodb": "^7.0.0",
"morgan": "~1.10.1"
},
"devDependencies": {
"jest": "^30.2.0",
"@jest/globals": "^30.2.0",
"jest": "^30.2.0",
"supertest": "^7.1.4"
}
}
Loading