diff --git a/examples/authentication/regular-web-app/package-lock.json b/examples/authentication/regular-web-app/package-lock.json index 1855ac1..f030cdb 100644 --- a/examples/authentication/regular-web-app/package-lock.json +++ b/examples/authentication/regular-web-app/package-lock.json @@ -8,7 +8,7 @@ "name": "haste-regular-web-app-auth-example", "version": "0.0.0", "dependencies": { - "@hastearcade/haste-express": "1.0.0-next.2", + "@hastearcade/haste-express": "1.0.0-next.4", "cookie-parser": "~1.4.4", "debug": "~2.6.9", "dotenv": "^10.0.0", @@ -23,14 +23,15 @@ } }, "node_modules/@hastearcade/haste-express": { - "version": "1.0.0-next.2", - "resolved": "https://registry.npmjs.org/@hastearcade/haste-express/-/haste-express-1.0.0-next.2.tgz", - "integrity": "sha512-q7wsDgOO/0iTOWTfkq2dxPllbcqdPVzX9KAdemgjubfwYw86/PJozXHm7DTTnAItDFdiQPDpG2KIGy3vqllkEg==", + "version": "1.0.0-next.4", + "resolved": "https://registry.npmjs.org/@hastearcade/haste-express/-/haste-express-1.0.0-next.4.tgz", + "integrity": "sha512-2H6safD9I03nwB0bMScX/m1wq9Fk+sEthuSvr2ig0oIJkgVDWuFFiuykYhmpziYM0/KKSi4P6j+OocFWePk+AA==", "dependencies": { "dotenv": "^10.0.0", "express": "^4.17.1", "passport": "^0.5.0", - "passport-auth0": "^1.4.1" + "passport-auth0": "^1.4.1", + "uuid": "^8.3.2" } }, "node_modules/@hastearcade/haste-express/node_modules/body-parser": { @@ -1355,6 +1356,14 @@ "node": ">= 0.4.0" } }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", @@ -1421,14 +1430,15 @@ }, "dependencies": { "@hastearcade/haste-express": { - "version": "1.0.0-next.2", - "resolved": "https://registry.npmjs.org/@hastearcade/haste-express/-/haste-express-1.0.0-next.2.tgz", - "integrity": "sha512-q7wsDgOO/0iTOWTfkq2dxPllbcqdPVzX9KAdemgjubfwYw86/PJozXHm7DTTnAItDFdiQPDpG2KIGy3vqllkEg==", + "version": "1.0.0-next.4", + "resolved": "https://registry.npmjs.org/@hastearcade/haste-express/-/haste-express-1.0.0-next.4.tgz", + "integrity": "sha512-2H6safD9I03nwB0bMScX/m1wq9Fk+sEthuSvr2ig0oIJkgVDWuFFiuykYhmpziYM0/KKSi4P6j+OocFWePk+AA==", "requires": { "dotenv": "^10.0.0", "express": "^4.17.1", "passport": "^0.5.0", - "passport-auth0": "^1.4.1" + "passport-auth0": "^1.4.1", + "uuid": "^8.3.2" }, "dependencies": { "body-parser": { @@ -2446,6 +2456,11 @@ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", diff --git a/examples/authentication/regular-web-app/package.json b/examples/authentication/regular-web-app/package.json index d09d417..8c6ce7a 100644 --- a/examples/authentication/regular-web-app/package.json +++ b/examples/authentication/regular-web-app/package.json @@ -6,7 +6,7 @@ "start": "node ./bin/www.js" }, "dependencies": { - "@hastearcade/haste-express": "1.0.0-next.2", + "@hastearcade/haste-express": "1.0.0-next.4", "cookie-parser": "~1.4.4", "debug": "~2.6.9", "dotenv": "^10.0.0",