Updating dependencies

This commit is contained in:
Fabian Stamm 2019-12-16 14:34:52 +01:00
parent 22dabae8ef
commit 93a6358a67
2 changed files with 66 additions and 66 deletions

6
package-lock.json generated
View File

@ -5,9 +5,9 @@
"requires": true, "requires": true,
"dependencies": { "dependencies": {
"@hibas123/config": { "@hibas123/config": {
"version": "1.0.3", "version": "1.0.5",
"resolved": "https://registry.npmjs.org/@hibas123/config/-/config-1.0.3.tgz", "resolved": "https://registry.npmjs.org/@hibas123/config/-/config-1.0.5.tgz",
"integrity": "sha512-CRiFT3EmjOYOShB5fF813lOdCTuCSlvNCUgv/FZMG0ZSJ5iUHRqDmXLvdpliYVVSowW7KzKFM9BpTK1W0GMGNQ==", "integrity": "sha512-KXgjrhFtcpptP1+x1KEtc8w3oaHyVZGCAaDFKxiJyOBIFySDyN41wbC1DFhk/Fk59eGMxIc0dAF16pkznTRnPQ==",
"requires": { "requires": {
"ini": "^1.3.5" "ini": "^1.3.5"
} }

View File

@ -1,63 +1,63 @@
{ {
"name": "open_auth_service", "name": "open_auth_service",
"version": "1.0.0", "version": "1.0.0",
"main": "lib/index.js", "main": "lib/index.js",
"author": "Fabian Stamm <dev@fabianstamm.de>", "author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"start": "node lib/index.js", "start": "node lib/index.js",
"build-doc": "apidoc -i src/ -p apidoc/", "build-doc": "apidoc -i src/ -p apidoc/",
"build-ts": "tsc", "build-ts": "tsc",
"build": "tsc && cd views && npm run build && cd ..", "build": "tsc && cd views && npm run build && cd ..",
"build-server": "tsc", "build-server": "tsc",
"watch-ts": "tsc -w", "watch-ts": "tsc -w",
"watch-views": "cd views && npm run watch", "watch-views": "cd views && npm run watch",
"watch-node": "nodemon --ignore ./views lib/index.js", "watch-node": "nodemon --ignore ./views lib/index.js",
"watch": "concurrently \"npm:watch-*\"" "watch": "concurrently \"npm:watch-*\""
}, },
"devDependencies": { "devDependencies": {
"@types/body-parser": "^1.17.1", "@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1", "@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.2", "@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0", "@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2", "@types/express": "^4.17.2",
"@types/i18n": "^0.8.6", "@types/i18n": "^0.8.6",
"@types/ini": "^1.3.30", "@types/ini": "^1.3.30",
"@types/jsonwebtoken": "^8.3.5", "@types/jsonwebtoken": "^8.3.5",
"@types/mongodb": "^3.3.13", "@types/mongodb": "^3.3.13",
"@types/node": "^12.12.18", "@types/node": "^12.12.18",
"@types/node-rsa": "^1.0.0", "@types/node-rsa": "^1.0.0",
"@types/qrcode": "^1.3.4", "@types/qrcode": "^1.3.4",
"@types/speakeasy": "^2.0.5", "@types/speakeasy": "^2.0.5",
"@types/uuid": "^3.4.6", "@types/uuid": "^3.4.6",
"apidoc": "^0.19.0", "apidoc": "^0.19.0",
"concurrently": "^5.0.1", "concurrently": "^5.0.1",
"nodemon": "^2.0.2", "nodemon": "^2.0.2",
"speakeasy": "^2.0.0", "speakeasy": "^2.0.0",
"typescript": "^3.7.3" "typescript": "^3.7.3"
}, },
"dependencies": { "dependencies": {
"@hibas123/config": "^1.0.3", "@hibas123/config": "^1.0.5",
"@hibas123/nodelogging": "^2.1.2", "@hibas123/nodelogging": "^2.1.2",
"@hibas123/nodeloggingserver_client": "^1.1.2", "@hibas123/nodeloggingserver_client": "^1.1.2",
"@hibas123/openauth-views": "file:../Views", "@hibas123/openauth-views": "file:../Views",
"@hibas123/safe_mongo": "^1.6.1", "@hibas123/safe_mongo": "^1.6.1",
"body-parser": "^1.19.0", "body-parser": "^1.19.0",
"compression": "^1.7.4", "compression": "^1.7.4",
"cookie-parser": "^1.4.4", "cookie-parser": "^1.4.4",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"express": "^4.17.1", "express": "^4.17.1",
"handlebars": "^4.5.3", "handlebars": "^4.5.3",
"i18n": "^0.8.4", "i18n": "^0.8.4",
"ini": "^1.3.5", "ini": "^1.3.5",
"jsonwebtoken": "^8.5.1", "jsonwebtoken": "^8.5.1",
"moment": "^2.24.0", "moment": "^2.24.0",
"mongodb": "^3.4.0", "mongodb": "^3.4.0",
"node-rsa": "^1.0.7", "node-rsa": "^1.0.7",
"qrcode": "^1.4.4", "qrcode": "^1.4.4",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"u2f": "^0.1.3", "u2f": "^0.1.3",
"uuid": "^3.3.3" "uuid": "^3.3.3"
} }
} }