forked from CenterForDigitalHumanities/rerum_server_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
55
56
57
58
{
"name": "rerum_server_nodejs",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"description": "Rerum API v1 server for storing and querying JSON-LD objects, annotations, and IIIF data.",
"bin": {
"rerum_server_nodejs": "./bin/rerum_v1.js"
},
"keywords": [
"rerum",
"api",
"jsonld",
"annotation",
"iiif",
"repository",
"digital scholarship",
"digital humanities",
"cultural heritage",
"nodejs",
"mongodb"
],
"homepage": "https://store.rerum.io",
"license": "MIT",
"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"
},
"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"
}
}