From 63c60117007d8717cfbb4d58c5bf47160a257445 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Thu, 15 Sep 2022 12:45:31 +0000 Subject: [PATCH] PR-051500: adding history to dependencies. --- package-lock.json | 21 +++++++++++++++++++-- package.json | 1 + 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0d9d7b3..4804982 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aleleba/create-react-ssr", - "version": "3.5.0", + "version": "3.5.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aleleba/create-react-ssr", - "version": "3.5.0", + "version": "3.5.1", "license": "MIT", "dependencies": { "@babel/register": "^7.18.9", @@ -14,6 +14,7 @@ "dotenv": "^16.0.2", "express": "^4.18.1", "helmet": "^6.0.0", + "history": "^5.3.0", "ignore-styles": "^5.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -7851,6 +7852,14 @@ "node": ">=14.0.0" } }, + "node_modules/history": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", + "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", + "dependencies": { + "@babel/runtime": "^7.7.6" + } + }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", @@ -21337,6 +21346,14 @@ "resolved": "https://registry.npmjs.org/helmet/-/helmet-6.0.0.tgz", "integrity": "sha512-FO9RpR1wNJepH/GbLPQVtkE2eESglXL641p7SdyoT4LngHFJcZheHMoyUcjCZF4qpuMMO1u5q6RK0l9Ux8JBcg==" }, + "history": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", + "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", + "requires": { + "@babel/runtime": "^7.7.6" + } + }, "hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", diff --git a/package.json b/package.json index 974207d..8434b27 100644 --- a/package.json +++ b/package.json @@ -36,6 +36,7 @@ "dotenv": "^16.0.2", "express": "^4.18.1", "helmet": "^6.0.0", + "history": "^5.3.0", "ignore-styles": "^5.0.1", "react": "^18.2.0", "react-dom": "^18.2.0",