-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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": "@dmgt-tech/the-usher-server",
"version": "2.6.1",
"description": "The Usher Authorization Server",
"engines": {
"node": ">=18"
},
"main": "the-usher.js",
"scripts": {
"test": "mocha --exit --file test/*",
"start": "nodemon -L --watch the-usher-openapi-spec.yaml --watch ./ --watch ../database/layer the-usher.js",
"debug": "nodemon -L --watch the-usher-openapi-spec.yaml --watch ./src --watch ./the-usher.js --watch ../database/layer --inspect=0.0.0.0:9229 the-usher.js"
},
"repository": {
"type": "git",
"url": "https://github.com/DMGT-TECH/the-usher-server.git",
"directory": "server"
},
"author": "",
"license": "MIT",
"dependencies": {
"cors": "2.8.5",
"database": "file:../database/",
"dataframe-js": "1.4.4",
"dotenv": "16.4.5",
"express": "4.21.2",
"express-jwt": "8.4.1",
"express-winston": "4.2.0",
"helmet": "7.1.0",
"http-errors": "2.0.0",
"js-yaml": "4.1.0",
"jwks-rsa": "3.1.0",
"moment": "2.30.1",
"oas-tools": "2.2.2",
"pem-jwk": "2.0.0",
"serverless-http": "3.1.0",
"winston": "3.14.2",
"winston-aws-cloudwatch": "3.0.0"
},
"devDependencies": {
"mocha": "^10.7.3",
"node-fetch": "2.7.0",
"nodemon": "3.1.7"
}
}