forked from CenterForDigitalHumanities/rerum_server_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
48
49
50
51
52
53
54
{
"name": "rerum_server_nodejs",
"type": "module",
"version": "0.0.0",
"main": "./app.js",
"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": {
"type": "git",
"url": "git+https://github.com/CenterForDigitalHumanities/rerum_server_nodejs.git"
},
"bugs": {
"url": "https://github.com/CenterForDigitalHumanities/rerum_server_nodejs/issues"
},
"engines": {
"node": ">=24.12.0",
"npm": ">=11.7.0"
},
"main": "index.js",
"scripts": {
"start": "node ./bin/rerum_v1.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"runtest": "npm test"
},
"dependencies": {
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~4.4.3",
"dotenv": "~17.2.3",
"express": "^5.2.1",
"express-oauth2-jwt-bearer": "~1.7.1",
"express-urlrewrite": "~2.0.3",
"mongodb": "^7.0.0",
"morgan": "~1.10.1"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"jest": "^30.2.0",
"supertest": "^7.1.4"
}
}