-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "rerum_server_nodejs",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "Rerum API server for database access.",
"keywords": [
"rerum",
"annotation",
"iiif",
"repository",
"digital scholarship",
"digital humanities",
"cultural heritage",
"nodejs",
"mongodb"
],
"homepage": "https://store.rerum.io",
"license": "UNLICENSED",
"author": "Research Computing Group <research.computing@slu.edu> (https://slu.edu)",
"repository": "github:CenterForDigitalHumanities/rerum_server_nodejs",
"engines": {
"node": ">=24.14.0",
"npm": ">=11.0.0"
},
"scripts": {
"start": "node ./bin/rerum_v1.js",
"test": "jest",
"runtest": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"cookie-parser": "~1.4.7",
"cors": "^2.8.6",
"debug": "~4.4.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-oauth2-jwt-bearer": "^1.7.4",
"express-urlrewrite": "~2.0.3",
"mongodb": "^7.1.0",
"morgan": "~1.10.1"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"jest": "^30.3.0",
"supertest": "^7.2.2"
}
}