mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 16:42:56 +00:00
refactor: update dependencies
This commit is contained in:
48
package.json
48
package.json
@@ -25,7 +25,7 @@
|
||||
"preversion": "npm run prepublishOnly",
|
||||
"push": "git push && git push origin \"v$npm_package_version\"",
|
||||
"start": "NODE_CONFIG_ENV=elasticsearch ALLOW_NO_TRANSPORT=true node ./lib/cli.js",
|
||||
"start-debug": "STAPPS_LOG_LEVEL=31 NODE_CONFIG_ENV=elasticsearch ALLOW_NO_TRANSPORT=true node ./lib/cli.js --require ts-node/register",
|
||||
"start-debug": "STAPPS_LOG_LEVEL=31 NODE_CONFIG_ENV=elasticsearch ALLOW_NO_TRANSPORT=true node ./lib/cli.js --require ts-node/register",
|
||||
"test": "npm run test-unit && npm run test-integration",
|
||||
"test-unit": "env NODE_CONFIG_ENV=elasticsearch ALLOW_NO_TRANSPORT=true STAPPS_LOG_LEVEL=0 nyc mocha --require ts-node/register --exit 'test/**/*.spec.ts'",
|
||||
"test-integration": "sudo docker-compose -f integration-test.yml pull && sudo docker-compose -f integration-test.yml up --build --abort-on-container-exit --exit-code-from apicli",
|
||||
@@ -33,37 +33,37 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@elastic/elasticsearch": "5.6.22",
|
||||
"@openstapps/core": "0.53.0",
|
||||
"@openstapps/core-tools": "0.25.0",
|
||||
"@openstapps/logger": "0.7.0",
|
||||
"@openstapps/core": "0.56.0",
|
||||
"@openstapps/core-tools": "0.28.0",
|
||||
"@openstapps/logger": "0.8.0",
|
||||
"@types/express-prometheus-middleware": "1.2.1",
|
||||
"@types/node": "14.17.27",
|
||||
"@types/node": "14.18.0",
|
||||
"config": "3.3.6",
|
||||
"cors": "2.8.5",
|
||||
"express": "4.17.1",
|
||||
"express": "4.17.2",
|
||||
"express-prometheus-middleware": "1.2.0",
|
||||
"express-promise-router": "4.1.0",
|
||||
"got": "11.8.2",
|
||||
"express-promise-router": "4.1.1",
|
||||
"got": "11.8.3",
|
||||
"moment": "2.29.1",
|
||||
"morgan": "1.10.0",
|
||||
"nock": "13.1.4",
|
||||
"nock": "13.2.1",
|
||||
"node-cache": "5.1.2",
|
||||
"node-cron": "3.0.0",
|
||||
"nodemailer": "6.7.0",
|
||||
"prom-client": "13.2.0",
|
||||
"nodemailer": "6.7.2",
|
||||
"prom-client": "14.0.1",
|
||||
"promise-queue": "2.2.5",
|
||||
"ts-node": "10.3.0",
|
||||
"ts-node": "10.4.0",
|
||||
"uuid": "8.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@openstapps/configuration": "0.28.1",
|
||||
"@openstapps/es-mapping-generator": "0.0.3",
|
||||
"@testdeck/mocha": "0.1.2",
|
||||
"@types/chai": "4.2.22",
|
||||
"@openstapps/configuration": "0.29.0",
|
||||
"@openstapps/es-mapping-generator": "0.0.4",
|
||||
"@testdeck/mocha": "0.2.0",
|
||||
"@types/chai": "4.3.0",
|
||||
"@types/chai-as-promised": "7.1.4",
|
||||
"@types/config": "0.0.39",
|
||||
"@types/config": "0.0.40",
|
||||
"@types/cors": "2.8.12",
|
||||
"@types/elasticsearch": "5.0.38",
|
||||
"@types/elasticsearch": "5.0.40",
|
||||
"@types/express": "4.17.13",
|
||||
"@types/geojson": "1.0.6",
|
||||
"@types/mocha": "9.0.0",
|
||||
@@ -73,7 +73,7 @@
|
||||
"@types/promise-queue": "2.2.0",
|
||||
"@types/sinon-express-mock": "1.3.9",
|
||||
"@types/supertest": "2.0.11",
|
||||
"@types/uuid": "8.3.1",
|
||||
"@types/uuid": "8.3.3",
|
||||
"chai": "4.3.4",
|
||||
"chai-as-promised": "7.1.1",
|
||||
"conventional-changelog-cli": "2.1.1",
|
||||
@@ -82,13 +82,13 @@
|
||||
"mocked-env": "1.3.5",
|
||||
"nyc": "15.1.0",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"redoc-cli": "0.13.0",
|
||||
"redoc-cli": "0.13.2",
|
||||
"rimraf": "3.0.2",
|
||||
"sinon": "11.1.2",
|
||||
"sinon-express-mock": "2.2.1",
|
||||
"supertest": "6.1.6",
|
||||
"tslint": "6.1.3",
|
||||
"typedoc": "0.22.6",
|
||||
"typedoc": "0.22.10",
|
||||
"typescript": "3.9.10"
|
||||
},
|
||||
"nyc": {
|
||||
@@ -101,11 +101,11 @@
|
||||
"extension": [
|
||||
".ts"
|
||||
],
|
||||
"functions": 85,
|
||||
"functions": 95,
|
||||
"include": [
|
||||
"src"
|
||||
],
|
||||
"lines": 85,
|
||||
"lines": 95,
|
||||
"reporter": [
|
||||
"html",
|
||||
"text-summary"
|
||||
@@ -113,6 +113,6 @@
|
||||
"require": [
|
||||
"ts-node/register"
|
||||
],
|
||||
"statements": 85
|
||||
"statements": 95
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user