UI: Updated msa web dependencies to latest version
This commit is contained in:
parent
4980601b44
commit
fa90548d63
@ -6,26 +6,26 @@
|
|||||||
"main": "server.ts",
|
"main": "server.ts",
|
||||||
"bin": "server.js",
|
"bin": "server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"pkg": "tsc && pkg -t node16-linux-x64,node16-win-x64 --out-path ./target ./target/src && node install.js",
|
"pkg": "tsc && pkg -t node18-linux-x64,node18-win-x64 --out-path ./target ./target/src && node install.js",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"start": "nodemon --watch '.' --ext 'ts' --exec 'ts-node server.ts'",
|
"start": "nodemon --watch '.' --ext 'ts' --exec 'ts-node server.ts'",
|
||||||
"start-prod": "nodemon --watch '.' --ext 'ts' --exec 'NODE_ENV=production ts-node server.ts'",
|
"start-prod": "nodemon --watch '.' --ext 'ts' --exec 'NODE_ENV=production ts-node server.ts'",
|
||||||
"build": "tsc"
|
"build": "tsc"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-sqs": "^3.121.0",
|
"@aws-sdk/client-sqs": "^3.682.0",
|
||||||
"@azure/service-bus": "^7.5.1",
|
"@azure/service-bus": "^7.9.5",
|
||||||
"@google-cloud/pubsub": "^4.3.3",
|
"@google-cloud/pubsub": "^4.8.0",
|
||||||
"amqplib": "^0.10.0",
|
"amqplib": "^0.10.4",
|
||||||
"config": "^3.3.7",
|
"config": "^3.3.12",
|
||||||
"express": "^4.18.1",
|
"express": "^4.21.1",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"kafkajs": "^2.1.0",
|
"kafkajs": "^2.2.4",
|
||||||
"long": "^5.2.0",
|
"long": "^5.2.3",
|
||||||
"uuid-parse": "^1.1.0",
|
"uuid-parse": "^1.1.0",
|
||||||
"uuid-random": "^1.3.2",
|
"uuid-random": "^1.3.2",
|
||||||
"winston": "^3.7.2",
|
"winston": "^3.16.0",
|
||||||
"winston-daily-rotate-file": "^4.7.1"
|
"winston-daily-rotate-file": "^5.0.0"
|
||||||
},
|
},
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"exclude": [
|
"exclude": [
|
||||||
@ -36,26 +36,20 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/amqplib": "^0.8.2",
|
"@types/amqplib": "^0.10.5",
|
||||||
"@types/config": "^0.0.41",
|
"@types/config": "^3.3.5",
|
||||||
"@types/express": "^4.17.13",
|
"@types/express": "^5.0.0",
|
||||||
"@types/node": "^18.0.1",
|
"@types/node": "~20.17.6",
|
||||||
"@types/uuid-parse": "^1.0.0",
|
"@types/uuid-parse": "^1.0.2",
|
||||||
"fs-extra": "^10.1.0",
|
"fs-extra": "^11.2.0",
|
||||||
"nodemon": "^2.0.16",
|
"nodemon": "^3.1.7",
|
||||||
"pkg": "^5.7.0",
|
"pkg": "^5.8.1",
|
||||||
"ts-node": "^10.8.1",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^4.7.4"
|
"typescript": "5.5.4"
|
||||||
},
|
},
|
||||||
"pkg": {
|
"pkg": {
|
||||||
"assets": [
|
"assets": [
|
||||||
"node_modules/config/**/*.*"
|
"node_modules/config/**/*.*"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"resolutions": {
|
|
||||||
"ansi-regex": "^5.0.1",
|
|
||||||
"color-string": "^1.5.5",
|
|
||||||
"minimist": "^1.2.6",
|
|
||||||
"node-fetch": "^2.6.7"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -52,7 +52,7 @@ export class AwsSqsTemplate implements IQueue {
|
|||||||
private queueAttributes: { [n: string]: string } = {
|
private queueAttributes: { [n: string]: string } = {
|
||||||
FifoQueue: 'true'
|
FifoQueue: 'true'
|
||||||
};
|
};
|
||||||
private timer: NodeJS.Timer;
|
private timer: NodeJS.Timeout;
|
||||||
|
|
||||||
name = 'AWS SQS';
|
name = 'AWS SQS';
|
||||||
|
|
||||||
|
|||||||
@ -57,7 +57,7 @@ export class ServiceBusTemplate implements IQueue {
|
|||||||
|
|
||||||
this.parseQueueProperties();
|
this.parseQueueProperties();
|
||||||
|
|
||||||
const listQueues = await this.serviceBusService.listQueues();
|
const listQueues = this.serviceBusService.listQueues();
|
||||||
for await (const queue of listQueues) {
|
for await (const queue of listQueues) {
|
||||||
this.queues.push(queue.name);
|
this.queues.push(queue.name);
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -6,22 +6,22 @@
|
|||||||
"main": "server.ts",
|
"main": "server.ts",
|
||||||
"bin": "server.js",
|
"bin": "server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"pkg": "tsc && pkg -t node16-linux-x64,node16-win-x64 --out-path ./target ./target/src && node install.js",
|
"pkg": "tsc && pkg -t node18-linux-x64,node18-win-x64 --out-path ./target ./target/src && node install.js",
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"start": "nodemon --watch '.' --ext 'ts' --exec 'WEB_FOLDER=./target/web ts-node server.ts'",
|
"start": "nodemon --watch '.' --ext 'ts' --exec 'WEB_FOLDER=./target/web ts-node server.ts'",
|
||||||
"start-prod": "nodemon --watch '.' --ext 'ts' --exec 'WEB_FOLDER=./target/web NODE_ENV=production ts-node server.ts'",
|
"start-prod": "nodemon --watch '.' --ext 'ts' --exec 'WEB_FOLDER=./target/web NODE_ENV=production ts-node server.ts'",
|
||||||
"build": "tsc"
|
"build": "tsc"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"compression": "^1.7.4",
|
"compression": "^1.7.5",
|
||||||
"config": "^3.3.7",
|
"config": "^3.3.12",
|
||||||
"connect-history-api-fallback": "^1.6.0",
|
"connect-history-api-fallback": "^1.6.0",
|
||||||
"express": "^4.18.1",
|
"express": "^4.21.1",
|
||||||
"http": "0.0.0",
|
"http": "0.0.0",
|
||||||
"http-proxy": "^1.18.1",
|
"http-proxy": "^1.18.1",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"winston": "^3.7.2",
|
"winston": "^3.16.0",
|
||||||
"winston-daily-rotate-file": "^4.7.1"
|
"winston-daily-rotate-file": "^5.0.0"
|
||||||
},
|
},
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"exclude": [
|
"exclude": [
|
||||||
@ -32,26 +32,21 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/compression": "^1.7.2",
|
"@types/compression": "^1.7.5",
|
||||||
"@types/config": "^0.0.41",
|
"@types/config": "^3.3.5",
|
||||||
"@types/connect-history-api-fallback": "^1.3.5",
|
"@types/connect-history-api-fallback": "^1.5.4",
|
||||||
"@types/express": "^4.17.13",
|
"@types/express": "^5.0.0",
|
||||||
"@types/http-proxy": "^1.17.9",
|
"@types/http-proxy": "^1.17.15",
|
||||||
"@types/node": "^18.0.0",
|
"@types/node": "~20.17.6",
|
||||||
"fs-extra": "^10.1.0",
|
"fs-extra": "^11.2.0",
|
||||||
"nodemon": "^2.0.16",
|
"nodemon": "^3.1.7",
|
||||||
"pkg": "^5.7.0",
|
"pkg": "^5.8.1",
|
||||||
"ts-node": "^10.8.1",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^4.7.4"
|
"typescript": "5.5.4"
|
||||||
},
|
},
|
||||||
"pkg": {
|
"pkg": {
|
||||||
"assets": [
|
"assets": [
|
||||||
"node_modules/config/**/*.*"
|
"node_modules/config/**/*.*"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"resolutions": {
|
|
||||||
"color-string": "^1.5.5",
|
|
||||||
"follow-redirects": "^1.14.8",
|
|
||||||
"minimist": "^1.2.6"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1971
msa/web-ui/yarn.lock
1971
msa/web-ui/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user