From 6a5cb8918c538fbdf472f60fd915162932d835d6 Mon Sep 17 00:00:00 2001 From: Alex Varchuk Date: Tue, 6 Sep 2022 18:05:08 +0300 Subject: [PATCH] chore: try return deleted dependencies --- cli/npm-shrinkwrap.json | 40 ++++++++++++++++++++++++++++++++++++++++ cli/package.json | 2 ++ 2 files changed, 42 insertions(+) diff --git a/cli/npm-shrinkwrap.json b/cli/npm-shrinkwrap.json index 548c3b50..42b184a0 100644 --- a/cli/npm-shrinkwrap.json +++ b/cli/npm-shrinkwrap.json @@ -26,6 +26,8 @@ "redoc-cli": "index.js" }, "devDependencies": { + "@types/chokidar": "^2.1.3", + "@types/handlebars": "^4.1.0", "@types/mkdirp": "^1.0.1" }, "engines": { @@ -258,6 +260,26 @@ "node": ">=6" } }, + "node_modules/@types/chokidar": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@types/chokidar/-/chokidar-2.1.3.tgz", + "integrity": "sha512-6qK3xoLLAhQVTucQGHTySwOVA1crHRXnJeLwqK6KIFkkKa2aoMFXh+WEi8PotxDtvN6MQJLyYN9ag9P6NLV81w==", + "deprecated": "This is a stub types definition. chokidar provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "chokidar": "*" + } + }, + "node_modules/@types/handlebars": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.1.0.tgz", + "integrity": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==", + "deprecated": "This is a stub types definition. handlebars provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "handlebars": "*" + } + }, "node_modules/@types/json-schema": { "version": "7.0.9", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", @@ -3331,6 +3353,24 @@ "defer-to-connect": "^1.0.1" } }, + "@types/chokidar": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@types/chokidar/-/chokidar-2.1.3.tgz", + "integrity": "sha512-6qK3xoLLAhQVTucQGHTySwOVA1crHRXnJeLwqK6KIFkkKa2aoMFXh+WEi8PotxDtvN6MQJLyYN9ag9P6NLV81w==", + "dev": true, + "requires": { + "chokidar": "*" + } + }, + "@types/handlebars": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.1.0.tgz", + "integrity": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==", + "dev": true, + "requires": { + "handlebars": "*" + } + }, "@types/json-schema": { "version": "7.0.9", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", diff --git a/cli/package.json b/cli/package.json index 2f2cb564..3aa8604e 100644 --- a/cli/package.json +++ b/cli/package.json @@ -28,6 +28,8 @@ "access": "public" }, "devDependencies": { + "@types/chokidar": "^2.1.3", + "@types/handlebars": "^4.1.0", "@types/mkdirp": "^1.0.1" } }