-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 KB
/
package.json
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
{
"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 <[email protected]> (https://slu.edu)",
"repository": "github:CenterForDigitalHumanities/rerum_server_nodejs",
"scripts": {
"start": "node ./bin/rerum_v1.js",
"test": "jest",
"runtest": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~4.3.4",
"dotenv": "~16.3.1",
"express": "^4.20.0",
"express-oauth2-jwt-bearer": "~1.6.0",
"express-urlrewrite": "~2.0.0",
"http-errors": "~2.0.0",
"mongodb": "~6.3.0",
"morgan": "~1.10.0"
},
"devDependencies": {
"@jest-mock/express": "^2.0.2",
"jest": "^29.7.0",
"supertest": "^6.2.2"
}
}