-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.07 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "esup-otp-api",
"version": "2.3.0",
"description": "Multi-factor authentication API for ESUP",
"repository": {
"type": "git",
"url": "git://github.com/EsupPortail/esup-otp-api.git"
},
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@simplewebauthn/server": "13.x",
"crypto-random-string": "5.x",
"eta": "3.x",
"etag": "1.x",
"firebase-admin": "13.x",
"https-proxy-agent": "7.x",
"ip-location-api": "5.x",
"ldapts": "8.x",
"mongoose": "8.x",
"morgan": "1.x",
"mysql2": "3.x",
"node-device-detector": "2.x",
"nodemailer": "9.x",
"otpauth": "9.x",
"proxy-addr": "2.x",
"qrcode": "1.x",
"restify": "github:restify/node-restify#v11.2.0",
"restify-cors-middleware2": "2.x",
"socket.io": "4.x",
"socket.io-client": "4.x",
"swagger-ui-restify": "github:jamidon/swagger-ui-restify#b0933f72980dd4124f61cfbd6bd914c40ba48d81",
"undici": "7.x",
"winston": "3.x"
},
"overrides": {
"@scarf/scarf": "npm:dry-uninstall",
"firebase-admin": {
"@google-cloud/firestore": "npm:dry-uninstall",
"@google-cloud/storage": "npm:dry-uninstall",
"uuid": "14.x"
},
"restify": {
"find-my-way": "8.x",
"pino": "10.x",
"send": "0.x",
"uuid": "14.x"
}
},
"scripts": {
"start": "nohup node run &",
"test": "node --test --experimental-test-module-mocks ./test/test.js",
"coverage": "node --test --experimental-test-coverage ./test/test.js",
"lcov": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ./test/test.js # only works with node v21.2.0 or higher"
},
"devDependencies": {
"@eslint/js": "10.x",
"@types/etag": "1.x",
"@types/nodemailer": "7.x",
"@types/qrcode": "1.x",
"@types/restify": "8.x",
"@types/restify-errors": "4.x",
"@types/supertest": "6.x",
"eslint": "10.x",
"globals": "17.x",
"mongodb-memory-server": "10.x",
"nodemailer-mock": "2.x",
"supertest": "7.x"
},
"scarfSettings": {
"enabled": false
}
}