-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tpen3-services",
"version": "0.0.0",
"description": "TPEN3 Services for data interaction.",
"type": "module",
"keywords": [
"rerum",
"annotation",
"iiif",
"repository",
"digital scholarship",
"digital humanities",
"cultural heritage",
"nodejs",
"mongodb"
],
"homepage": "https://t-pen.org/TPEN3",
"license": "CC-BY",
"author": "Research Computing Group <research.computing@slu.edu> (https://slu.edu)",
"repository": "github:CenterForDigitalHumanities/rerum_server_nodejs",
"scripts": {
"start": "node ./bin/tpen3_services.mjs",
"dev": "nodemon ./bin/tpen3_services.mjs",
"allTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"unitTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t _unit",
"E2Etests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t e2e ",
"existsTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t exists_unit ",
"functionsTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t functions_unit ",
"dbTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t db ",
"authTest": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t auth_test ",
"userClassTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t user_class ",
"importTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t importTests ",
"inviteMemberTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t inviteMemberTests "
},
"dependencies": {
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"express": "^4.21.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"express-urlrewrite": "^2.0.3",
"http-errors": "^2.0.0",
"manifesto.js": "^4.2.21",
"mariadb": "^3.4.0",
"mongodb": "^6.12.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.16"
},
"devDependencies": {
"@jest-mock/express": "^2.1.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-esm-transformer": "^1.0.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=22.12.0"
}
}