-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.07 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
63
64
65
66
67
68
69
70
{
"name": "ard-eventhub",
"version": "1.5.2",
"description": "ARD system to distribute real-time (live) metadata for primarily radio broadcasts.",
"main": "./src/ingest/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"docs:serve": "docsify serve . --port 3000",
"coreId": "node ./src/coreId/index.js",
"ingest:local": "nodemon -r dotenv/config ./src/ingest/index.js",
"ingest:cloud": "node -r dotenv/config ./src/ingest/index.js",
"ingest:test": "mocha test/ingest.test.js --timeout 15000 --exit -r dotenv/config",
"ingest:lint": "eslint src",
"docker:build": "docker build . -t swr/ard-eventhub",
"docker:run": "docker run --env-file .env -p 8080:8080 --name ard-eventhub swr/ard-eventhub",
"docker:scan": "yarn docker:build && docker scout quickview",
"docker:clean": "docker rm ard-eventhub",
"license": "yarn run license-compliance",
"test": "mocha test/example.test.js",
"reinstall": "rm -rf node_modules && rm yarn.lock && yarn"
},
"keywords": [
"ard",
"metadata",
"pubsub"
],
"author": "SWR Audio Lab <[email protected]>",
"license": "EUPL-1.2",
"dependencies": {
"@google-cloud/datastore": "7.5.1",
"@google-cloud/pubsub": "3.7.1",
"@google-cloud/secret-manager": "4.2.2",
"@swrlab/utils": "1.1.3",
"compression": "1.7.4",
"dd-trace": "4.11.1",
"dotenv": "16.3.1",
"express": "4.18.2",
"express-openapi-validator": "5.0.4",
"firebase-admin": "11.9.0",
"google-auth-library": "8.8.0",
"jsonwebtoken": "9.0.0",
"luxon": "3.3.0",
"slug": "8.2.2",
"swagger-ui-express": "4.6.3",
"uuid": "9.0.0",
"winston": "3.9.0"
},
"devDependencies": {
"@swrlab/eslint-plugin-swr": "^0.2.0",
"@swrlab/swr-prettier-config": "^0.2.0",
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"docsify-cli": "^4.4.4",
"eslint": "^8.43.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"license-compliance": "^2.0.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"got": "^11.8.6",
"strip-ansi": "^6.0.1"
},
"prettier": "@swrlab/swr-prettier-config"
}