diff --git a/backend/node_modules/.bin/nodemon b/backend/node_modules/.bin/nodemon deleted file mode 100644 index c477a189..00000000 --- a/backend/node_modules/.bin/nodemon +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") - -case `uname` in - *CYGWIN*|*MINGW*|*MSYS*) - if command -v cygpath > /dev/null 2>&1; then - basedir=`cygpath -w "$basedir"` - fi - ;; -esac - -if [ -x "$basedir/node" ]; then - exec "$basedir/node" "$basedir/../nodemon/bin/nodemon.js" "$@" -else - exec node "$basedir/../nodemon/bin/nodemon.js" "$@" -fi diff --git a/backend/node_modules/.bin/nodemon.cmd b/backend/node_modules/.bin/nodemon.cmd deleted file mode 100644 index 55acf8a4..00000000 --- a/backend/node_modules/.bin/nodemon.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\nodemon\bin\nodemon.js" %* diff --git a/backend/node_modules/.bin/nodemon.ps1 b/backend/node_modules/.bin/nodemon.ps1 deleted file mode 100644 index d4e3f5d4..00000000 --- a/backend/node_modules/.bin/nodemon.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } else { - & "$basedir/node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } else { - & "node$exe" "$basedir/../nodemon/bin/nodemon.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/backend/node_modules/.bin/nodetouch b/backend/node_modules/.bin/nodetouch deleted file mode 100644 index 3e146b41..00000000 --- a/backend/node_modules/.bin/nodetouch +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") - -case `uname` in - *CYGWIN*|*MINGW*|*MSYS*) - if command -v cygpath > /dev/null 2>&1; then - basedir=`cygpath -w "$basedir"` - fi - ;; -esac - -if [ -x "$basedir/node" ]; then - exec "$basedir/node" "$basedir/../touch/bin/nodetouch.js" "$@" -else - exec node "$basedir/../touch/bin/nodetouch.js" "$@" -fi diff --git a/backend/node_modules/.bin/nodetouch.cmd b/backend/node_modules/.bin/nodetouch.cmd deleted file mode 100644 index 8298b918..00000000 --- a/backend/node_modules/.bin/nodetouch.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\touch\bin\nodetouch.js" %* diff --git a/backend/node_modules/.bin/nodetouch.ps1 b/backend/node_modules/.bin/nodetouch.ps1 deleted file mode 100644 index 5f68b4cb..00000000 --- a/backend/node_modules/.bin/nodetouch.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } else { - & "$basedir/node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } else { - & "node$exe" "$basedir/../touch/bin/nodetouch.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/backend/node_modules/.bin/semver b/backend/node_modules/.bin/semver deleted file mode 100644 index 97c53279..00000000 --- a/backend/node_modules/.bin/semver +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") - -case `uname` in - *CYGWIN*|*MINGW*|*MSYS*) - if command -v cygpath > /dev/null 2>&1; then - basedir=`cygpath -w "$basedir"` - fi - ;; -esac - -if [ -x "$basedir/node" ]; then - exec "$basedir/node" "$basedir/../semver/bin/semver.js" "$@" -else - exec node "$basedir/../semver/bin/semver.js" "$@" -fi diff --git a/backend/node_modules/.bin/semver.cmd b/backend/node_modules/.bin/semver.cmd deleted file mode 100644 index 9913fa9d..00000000 --- a/backend/node_modules/.bin/semver.cmd +++ /dev/null @@ -1,17 +0,0 @@ -@ECHO off -GOTO start -:find_dp0 -SET dp0=%~dp0 -EXIT /b -:start -SETLOCAL -CALL :find_dp0 - -IF EXIST "%dp0%\node.exe" ( - SET "_prog=%dp0%\node.exe" -) ELSE ( - SET "_prog=node" - SET PATHEXT=%PATHEXT:;.JS;=;% -) - -endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\semver\bin\semver.js" %* diff --git a/backend/node_modules/.bin/semver.ps1 b/backend/node_modules/.bin/semver.ps1 deleted file mode 100644 index 314717ad..00000000 --- a/backend/node_modules/.bin/semver.ps1 +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env pwsh -$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent - -$exe="" -if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { - # Fix case when both the Windows and Linux builds of Node - # are installed in the same directory - $exe=".exe" -} -$ret=0 -if (Test-Path "$basedir/node$exe") { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args - } else { - & "$basedir/node$exe" "$basedir/../semver/bin/semver.js" $args - } - $ret=$LASTEXITCODE -} else { - # Support pipeline input - if ($MyInvocation.ExpectingInput) { - $input | & "node$exe" "$basedir/../semver/bin/semver.js" $args - } else { - & "node$exe" "$basedir/../semver/bin/semver.js" $args - } - $ret=$LASTEXITCODE -} -exit $ret diff --git a/node_modules/.bin/nodemon b/node_modules/.bin/nodemon new file mode 120000 index 00000000..1056ddc1 --- /dev/null +++ b/node_modules/.bin/nodemon @@ -0,0 +1 @@ +../nodemon/bin/nodemon.js \ No newline at end of file diff --git a/node_modules/.bin/nodetouch b/node_modules/.bin/nodetouch new file mode 120000 index 00000000..3409fdb7 --- /dev/null +++ b/node_modules/.bin/nodetouch @@ -0,0 +1 @@ +../touch/bin/nodetouch.js \ No newline at end of file diff --git a/node_modules/.bin/semver b/node_modules/.bin/semver new file mode 120000 index 00000000..5aaadf42 --- /dev/null +++ b/node_modules/.bin/semver @@ -0,0 +1 @@ +../semver/bin/semver.js \ No newline at end of file diff --git a/backend/node_modules/anymatch/LICENSE b/node_modules/anymatch/LICENSE similarity index 100% rename from backend/node_modules/anymatch/LICENSE rename to node_modules/anymatch/LICENSE diff --git a/backend/node_modules/anymatch/README.md b/node_modules/anymatch/README.md similarity index 100% rename from backend/node_modules/anymatch/README.md rename to node_modules/anymatch/README.md diff --git a/backend/node_modules/anymatch/index.d.ts b/node_modules/anymatch/index.d.ts similarity index 100% rename from backend/node_modules/anymatch/index.d.ts rename to node_modules/anymatch/index.d.ts diff --git a/backend/node_modules/anymatch/index.js b/node_modules/anymatch/index.js similarity index 100% rename from backend/node_modules/anymatch/index.js rename to node_modules/anymatch/index.js diff --git a/backend/node_modules/anymatch/package.json b/node_modules/anymatch/package.json similarity index 100% rename from backend/node_modules/anymatch/package.json rename to node_modules/anymatch/package.json diff --git a/backend/node_modules/balanced-match/.github/FUNDING.yml b/node_modules/balanced-match/.github/FUNDING.yml similarity index 100% rename from backend/node_modules/balanced-match/.github/FUNDING.yml rename to node_modules/balanced-match/.github/FUNDING.yml diff --git a/backend/node_modules/balanced-match/LICENSE.md b/node_modules/balanced-match/LICENSE.md similarity index 100% rename from backend/node_modules/balanced-match/LICENSE.md rename to node_modules/balanced-match/LICENSE.md diff --git a/backend/node_modules/balanced-match/README.md b/node_modules/balanced-match/README.md similarity index 100% rename from backend/node_modules/balanced-match/README.md rename to node_modules/balanced-match/README.md diff --git a/backend/node_modules/balanced-match/index.js b/node_modules/balanced-match/index.js similarity index 100% rename from backend/node_modules/balanced-match/index.js rename to node_modules/balanced-match/index.js diff --git a/backend/node_modules/balanced-match/package.json b/node_modules/balanced-match/package.json similarity index 100% rename from backend/node_modules/balanced-match/package.json rename to node_modules/balanced-match/package.json diff --git a/backend/node_modules/binary-extensions/binary-extensions.json b/node_modules/binary-extensions/binary-extensions.json similarity index 100% rename from backend/node_modules/binary-extensions/binary-extensions.json rename to node_modules/binary-extensions/binary-extensions.json diff --git a/backend/node_modules/binary-extensions/binary-extensions.json.d.ts b/node_modules/binary-extensions/binary-extensions.json.d.ts similarity index 100% rename from backend/node_modules/binary-extensions/binary-extensions.json.d.ts rename to node_modules/binary-extensions/binary-extensions.json.d.ts diff --git a/backend/node_modules/binary-extensions/index.d.ts b/node_modules/binary-extensions/index.d.ts similarity index 100% rename from backend/node_modules/binary-extensions/index.d.ts rename to node_modules/binary-extensions/index.d.ts diff --git a/backend/node_modules/binary-extensions/index.js b/node_modules/binary-extensions/index.js similarity index 100% rename from backend/node_modules/binary-extensions/index.js rename to node_modules/binary-extensions/index.js diff --git a/backend/node_modules/binary-extensions/license b/node_modules/binary-extensions/license similarity index 100% rename from backend/node_modules/binary-extensions/license rename to node_modules/binary-extensions/license diff --git a/backend/node_modules/binary-extensions/package.json b/node_modules/binary-extensions/package.json similarity index 100% rename from backend/node_modules/binary-extensions/package.json rename to node_modules/binary-extensions/package.json diff --git a/backend/node_modules/binary-extensions/readme.md b/node_modules/binary-extensions/readme.md similarity index 100% rename from backend/node_modules/binary-extensions/readme.md rename to node_modules/binary-extensions/readme.md diff --git a/backend/node_modules/brace-expansion/LICENSE b/node_modules/brace-expansion/LICENSE similarity index 100% rename from backend/node_modules/brace-expansion/LICENSE rename to node_modules/brace-expansion/LICENSE diff --git a/backend/node_modules/brace-expansion/README.md b/node_modules/brace-expansion/README.md similarity index 100% rename from backend/node_modules/brace-expansion/README.md rename to node_modules/brace-expansion/README.md diff --git a/backend/node_modules/brace-expansion/index.js b/node_modules/brace-expansion/index.js similarity index 100% rename from backend/node_modules/brace-expansion/index.js rename to node_modules/brace-expansion/index.js diff --git a/backend/node_modules/brace-expansion/package.json b/node_modules/brace-expansion/package.json similarity index 100% rename from backend/node_modules/brace-expansion/package.json rename to node_modules/brace-expansion/package.json diff --git a/backend/node_modules/braces/LICENSE b/node_modules/braces/LICENSE similarity index 100% rename from backend/node_modules/braces/LICENSE rename to node_modules/braces/LICENSE diff --git a/backend/node_modules/braces/README.md b/node_modules/braces/README.md similarity index 100% rename from backend/node_modules/braces/README.md rename to node_modules/braces/README.md diff --git a/backend/node_modules/braces/index.js b/node_modules/braces/index.js similarity index 100% rename from backend/node_modules/braces/index.js rename to node_modules/braces/index.js diff --git a/backend/node_modules/braces/lib/compile.js b/node_modules/braces/lib/compile.js similarity index 100% rename from backend/node_modules/braces/lib/compile.js rename to node_modules/braces/lib/compile.js diff --git a/backend/node_modules/braces/lib/constants.js b/node_modules/braces/lib/constants.js similarity index 100% rename from backend/node_modules/braces/lib/constants.js rename to node_modules/braces/lib/constants.js diff --git a/backend/node_modules/braces/lib/expand.js b/node_modules/braces/lib/expand.js similarity index 100% rename from backend/node_modules/braces/lib/expand.js rename to node_modules/braces/lib/expand.js diff --git a/backend/node_modules/braces/lib/parse.js b/node_modules/braces/lib/parse.js similarity index 100% rename from backend/node_modules/braces/lib/parse.js rename to node_modules/braces/lib/parse.js diff --git a/backend/node_modules/braces/lib/stringify.js b/node_modules/braces/lib/stringify.js similarity index 100% rename from backend/node_modules/braces/lib/stringify.js rename to node_modules/braces/lib/stringify.js diff --git a/backend/node_modules/braces/lib/utils.js b/node_modules/braces/lib/utils.js similarity index 100% rename from backend/node_modules/braces/lib/utils.js rename to node_modules/braces/lib/utils.js diff --git a/backend/node_modules/braces/package.json b/node_modules/braces/package.json similarity index 100% rename from backend/node_modules/braces/package.json rename to node_modules/braces/package.json diff --git a/backend/node_modules/chokidar/LICENSE b/node_modules/chokidar/LICENSE similarity index 100% rename from backend/node_modules/chokidar/LICENSE rename to node_modules/chokidar/LICENSE diff --git a/backend/node_modules/chokidar/README.md b/node_modules/chokidar/README.md similarity index 100% rename from backend/node_modules/chokidar/README.md rename to node_modules/chokidar/README.md diff --git a/backend/node_modules/chokidar/index.js b/node_modules/chokidar/index.js similarity index 100% rename from backend/node_modules/chokidar/index.js rename to node_modules/chokidar/index.js diff --git a/backend/node_modules/chokidar/lib/constants.js b/node_modules/chokidar/lib/constants.js similarity index 100% rename from backend/node_modules/chokidar/lib/constants.js rename to node_modules/chokidar/lib/constants.js diff --git a/backend/node_modules/chokidar/lib/fsevents-handler.js b/node_modules/chokidar/lib/fsevents-handler.js similarity index 100% rename from backend/node_modules/chokidar/lib/fsevents-handler.js rename to node_modules/chokidar/lib/fsevents-handler.js diff --git a/backend/node_modules/chokidar/lib/nodefs-handler.js b/node_modules/chokidar/lib/nodefs-handler.js similarity index 100% rename from backend/node_modules/chokidar/lib/nodefs-handler.js rename to node_modules/chokidar/lib/nodefs-handler.js diff --git a/backend/node_modules/chokidar/package.json b/node_modules/chokidar/package.json similarity index 100% rename from backend/node_modules/chokidar/package.json rename to node_modules/chokidar/package.json diff --git a/backend/node_modules/chokidar/types/index.d.ts b/node_modules/chokidar/types/index.d.ts similarity index 100% rename from backend/node_modules/chokidar/types/index.d.ts rename to node_modules/chokidar/types/index.d.ts diff --git a/backend/node_modules/concat-map/.travis.yml b/node_modules/concat-map/.travis.yml similarity index 100% rename from backend/node_modules/concat-map/.travis.yml rename to node_modules/concat-map/.travis.yml diff --git a/backend/node_modules/concat-map/LICENSE b/node_modules/concat-map/LICENSE similarity index 100% rename from backend/node_modules/concat-map/LICENSE rename to node_modules/concat-map/LICENSE diff --git a/backend/node_modules/concat-map/README.markdown b/node_modules/concat-map/README.markdown similarity index 100% rename from backend/node_modules/concat-map/README.markdown rename to node_modules/concat-map/README.markdown diff --git a/backend/node_modules/concat-map/example/map.js b/node_modules/concat-map/example/map.js similarity index 100% rename from backend/node_modules/concat-map/example/map.js rename to node_modules/concat-map/example/map.js diff --git a/backend/node_modules/concat-map/index.js b/node_modules/concat-map/index.js similarity index 100% rename from backend/node_modules/concat-map/index.js rename to node_modules/concat-map/index.js diff --git a/backend/node_modules/concat-map/package.json b/node_modules/concat-map/package.json similarity index 100% rename from backend/node_modules/concat-map/package.json rename to node_modules/concat-map/package.json diff --git a/backend/node_modules/concat-map/test/map.js b/node_modules/concat-map/test/map.js similarity index 100% rename from backend/node_modules/concat-map/test/map.js rename to node_modules/concat-map/test/map.js diff --git a/backend/node_modules/fill-range/LICENSE b/node_modules/fill-range/LICENSE similarity index 100% rename from backend/node_modules/fill-range/LICENSE rename to node_modules/fill-range/LICENSE diff --git a/backend/node_modules/fill-range/README.md b/node_modules/fill-range/README.md similarity index 100% rename from backend/node_modules/fill-range/README.md rename to node_modules/fill-range/README.md diff --git a/backend/node_modules/fill-range/index.js b/node_modules/fill-range/index.js similarity index 100% rename from backend/node_modules/fill-range/index.js rename to node_modules/fill-range/index.js diff --git a/backend/node_modules/fill-range/package.json b/node_modules/fill-range/package.json similarity index 100% rename from backend/node_modules/fill-range/package.json rename to node_modules/fill-range/package.json diff --git a/backend/node_modules/glob-parent/CHANGELOG.md b/node_modules/glob-parent/CHANGELOG.md similarity index 100% rename from backend/node_modules/glob-parent/CHANGELOG.md rename to node_modules/glob-parent/CHANGELOG.md diff --git a/backend/node_modules/glob-parent/LICENSE b/node_modules/glob-parent/LICENSE similarity index 100% rename from backend/node_modules/glob-parent/LICENSE rename to node_modules/glob-parent/LICENSE diff --git a/backend/node_modules/glob-parent/README.md b/node_modules/glob-parent/README.md similarity index 100% rename from backend/node_modules/glob-parent/README.md rename to node_modules/glob-parent/README.md diff --git a/backend/node_modules/glob-parent/index.js b/node_modules/glob-parent/index.js similarity index 100% rename from backend/node_modules/glob-parent/index.js rename to node_modules/glob-parent/index.js diff --git a/backend/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json similarity index 100% rename from backend/node_modules/glob-parent/package.json rename to node_modules/glob-parent/package.json diff --git a/backend/node_modules/has-flag/index.js b/node_modules/has-flag/index.js similarity index 100% rename from backend/node_modules/has-flag/index.js rename to node_modules/has-flag/index.js diff --git a/backend/node_modules/has-flag/license b/node_modules/has-flag/license similarity index 100% rename from backend/node_modules/has-flag/license rename to node_modules/has-flag/license diff --git a/backend/node_modules/has-flag/package.json b/node_modules/has-flag/package.json similarity index 100% rename from backend/node_modules/has-flag/package.json rename to node_modules/has-flag/package.json diff --git a/backend/node_modules/has-flag/readme.md b/node_modules/has-flag/readme.md similarity index 100% rename from backend/node_modules/has-flag/readme.md rename to node_modules/has-flag/readme.md diff --git a/backend/node_modules/ignore-by-default/LICENSE b/node_modules/ignore-by-default/LICENSE similarity index 100% rename from backend/node_modules/ignore-by-default/LICENSE rename to node_modules/ignore-by-default/LICENSE diff --git a/backend/node_modules/ignore-by-default/README.md b/node_modules/ignore-by-default/README.md similarity index 100% rename from backend/node_modules/ignore-by-default/README.md rename to node_modules/ignore-by-default/README.md diff --git a/backend/node_modules/ignore-by-default/index.js b/node_modules/ignore-by-default/index.js similarity index 100% rename from backend/node_modules/ignore-by-default/index.js rename to node_modules/ignore-by-default/index.js diff --git a/backend/node_modules/ignore-by-default/package.json b/node_modules/ignore-by-default/package.json similarity index 100% rename from backend/node_modules/ignore-by-default/package.json rename to node_modules/ignore-by-default/package.json diff --git a/backend/node_modules/is-binary-path/index.d.ts b/node_modules/is-binary-path/index.d.ts similarity index 100% rename from backend/node_modules/is-binary-path/index.d.ts rename to node_modules/is-binary-path/index.d.ts diff --git a/backend/node_modules/is-binary-path/index.js b/node_modules/is-binary-path/index.js similarity index 100% rename from backend/node_modules/is-binary-path/index.js rename to node_modules/is-binary-path/index.js diff --git a/backend/node_modules/is-binary-path/license b/node_modules/is-binary-path/license similarity index 100% rename from backend/node_modules/is-binary-path/license rename to node_modules/is-binary-path/license diff --git a/backend/node_modules/is-binary-path/package.json b/node_modules/is-binary-path/package.json similarity index 100% rename from backend/node_modules/is-binary-path/package.json rename to node_modules/is-binary-path/package.json diff --git a/backend/node_modules/is-binary-path/readme.md b/node_modules/is-binary-path/readme.md similarity index 100% rename from backend/node_modules/is-binary-path/readme.md rename to node_modules/is-binary-path/readme.md diff --git a/backend/node_modules/is-extglob/LICENSE b/node_modules/is-extglob/LICENSE similarity index 100% rename from backend/node_modules/is-extglob/LICENSE rename to node_modules/is-extglob/LICENSE diff --git a/backend/node_modules/is-extglob/README.md b/node_modules/is-extglob/README.md similarity index 100% rename from backend/node_modules/is-extglob/README.md rename to node_modules/is-extglob/README.md diff --git a/backend/node_modules/is-extglob/index.js b/node_modules/is-extglob/index.js similarity index 100% rename from backend/node_modules/is-extglob/index.js rename to node_modules/is-extglob/index.js diff --git a/backend/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json similarity index 100% rename from backend/node_modules/is-extglob/package.json rename to node_modules/is-extglob/package.json diff --git a/backend/node_modules/is-glob/LICENSE b/node_modules/is-glob/LICENSE similarity index 100% rename from backend/node_modules/is-glob/LICENSE rename to node_modules/is-glob/LICENSE diff --git a/backend/node_modules/is-glob/README.md b/node_modules/is-glob/README.md similarity index 100% rename from backend/node_modules/is-glob/README.md rename to node_modules/is-glob/README.md diff --git a/backend/node_modules/is-glob/index.js b/node_modules/is-glob/index.js similarity index 100% rename from backend/node_modules/is-glob/index.js rename to node_modules/is-glob/index.js diff --git a/backend/node_modules/is-glob/package.json b/node_modules/is-glob/package.json similarity index 100% rename from backend/node_modules/is-glob/package.json rename to node_modules/is-glob/package.json diff --git a/backend/node_modules/is-number/LICENSE b/node_modules/is-number/LICENSE similarity index 100% rename from backend/node_modules/is-number/LICENSE rename to node_modules/is-number/LICENSE diff --git a/backend/node_modules/is-number/README.md b/node_modules/is-number/README.md similarity index 100% rename from backend/node_modules/is-number/README.md rename to node_modules/is-number/README.md diff --git a/backend/node_modules/is-number/index.js b/node_modules/is-number/index.js similarity index 100% rename from backend/node_modules/is-number/index.js rename to node_modules/is-number/index.js diff --git a/backend/node_modules/is-number/package.json b/node_modules/is-number/package.json similarity index 100% rename from backend/node_modules/is-number/package.json rename to node_modules/is-number/package.json diff --git a/backend/node_modules/minimatch/LICENSE b/node_modules/minimatch/LICENSE similarity index 100% rename from backend/node_modules/minimatch/LICENSE rename to node_modules/minimatch/LICENSE diff --git a/backend/node_modules/minimatch/README.md b/node_modules/minimatch/README.md similarity index 100% rename from backend/node_modules/minimatch/README.md rename to node_modules/minimatch/README.md diff --git a/backend/node_modules/minimatch/minimatch.js b/node_modules/minimatch/minimatch.js similarity index 100% rename from backend/node_modules/minimatch/minimatch.js rename to node_modules/minimatch/minimatch.js diff --git a/backend/node_modules/minimatch/package.json b/node_modules/minimatch/package.json similarity index 100% rename from backend/node_modules/minimatch/package.json rename to node_modules/minimatch/package.json diff --git a/backend/node_modules/nodemon/.prettierrc.json b/node_modules/nodemon/.prettierrc.json similarity index 100% rename from backend/node_modules/nodemon/.prettierrc.json rename to node_modules/nodemon/.prettierrc.json diff --git a/backend/node_modules/nodemon/LICENSE b/node_modules/nodemon/LICENSE similarity index 100% rename from backend/node_modules/nodemon/LICENSE rename to node_modules/nodemon/LICENSE diff --git a/backend/node_modules/nodemon/README.md b/node_modules/nodemon/README.md similarity index 100% rename from backend/node_modules/nodemon/README.md rename to node_modules/nodemon/README.md diff --git a/backend/node_modules/nodemon/bin/nodemon.js b/node_modules/nodemon/bin/nodemon.js old mode 100644 new mode 100755 similarity index 100% rename from backend/node_modules/nodemon/bin/nodemon.js rename to node_modules/nodemon/bin/nodemon.js diff --git a/backend/node_modules/nodemon/bin/windows-kill.exe b/node_modules/nodemon/bin/windows-kill.exe similarity index 100% rename from backend/node_modules/nodemon/bin/windows-kill.exe rename to node_modules/nodemon/bin/windows-kill.exe diff --git a/backend/node_modules/nodemon/doc/cli/authors.txt b/node_modules/nodemon/doc/cli/authors.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/authors.txt rename to node_modules/nodemon/doc/cli/authors.txt diff --git a/backend/node_modules/nodemon/doc/cli/config.txt b/node_modules/nodemon/doc/cli/config.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/config.txt rename to node_modules/nodemon/doc/cli/config.txt diff --git a/backend/node_modules/nodemon/doc/cli/help.txt b/node_modules/nodemon/doc/cli/help.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/help.txt rename to node_modules/nodemon/doc/cli/help.txt diff --git a/backend/node_modules/nodemon/doc/cli/logo.txt b/node_modules/nodemon/doc/cli/logo.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/logo.txt rename to node_modules/nodemon/doc/cli/logo.txt diff --git a/backend/node_modules/nodemon/doc/cli/options.txt b/node_modules/nodemon/doc/cli/options.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/options.txt rename to node_modules/nodemon/doc/cli/options.txt diff --git a/backend/node_modules/nodemon/doc/cli/topics.txt b/node_modules/nodemon/doc/cli/topics.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/topics.txt rename to node_modules/nodemon/doc/cli/topics.txt diff --git a/backend/node_modules/nodemon/doc/cli/usage.txt b/node_modules/nodemon/doc/cli/usage.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/usage.txt rename to node_modules/nodemon/doc/cli/usage.txt diff --git a/backend/node_modules/nodemon/doc/cli/whoami.txt b/node_modules/nodemon/doc/cli/whoami.txt similarity index 100% rename from backend/node_modules/nodemon/doc/cli/whoami.txt rename to node_modules/nodemon/doc/cli/whoami.txt diff --git a/backend/node_modules/nodemon/index.d.ts b/node_modules/nodemon/index.d.ts similarity index 100% rename from backend/node_modules/nodemon/index.d.ts rename to node_modules/nodemon/index.d.ts diff --git a/backend/node_modules/nodemon/jsconfig.json b/node_modules/nodemon/jsconfig.json similarity index 100% rename from backend/node_modules/nodemon/jsconfig.json rename to node_modules/nodemon/jsconfig.json diff --git a/backend/node_modules/nodemon/lib/cli/index.js b/node_modules/nodemon/lib/cli/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/cli/index.js rename to node_modules/nodemon/lib/cli/index.js diff --git a/backend/node_modules/nodemon/lib/cli/parse.js b/node_modules/nodemon/lib/cli/parse.js similarity index 100% rename from backend/node_modules/nodemon/lib/cli/parse.js rename to node_modules/nodemon/lib/cli/parse.js diff --git a/backend/node_modules/nodemon/lib/config/command.js b/node_modules/nodemon/lib/config/command.js similarity index 100% rename from backend/node_modules/nodemon/lib/config/command.js rename to node_modules/nodemon/lib/config/command.js diff --git a/backend/node_modules/nodemon/lib/config/defaults.js b/node_modules/nodemon/lib/config/defaults.js similarity index 100% rename from backend/node_modules/nodemon/lib/config/defaults.js rename to node_modules/nodemon/lib/config/defaults.js diff --git a/backend/node_modules/nodemon/lib/config/exec.js b/node_modules/nodemon/lib/config/exec.js similarity index 100% rename from backend/node_modules/nodemon/lib/config/exec.js rename to node_modules/nodemon/lib/config/exec.js diff --git a/backend/node_modules/nodemon/lib/config/index.js b/node_modules/nodemon/lib/config/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/config/index.js rename to node_modules/nodemon/lib/config/index.js diff --git a/backend/node_modules/nodemon/lib/config/load.js b/node_modules/nodemon/lib/config/load.js similarity index 100% rename from backend/node_modules/nodemon/lib/config/load.js rename to node_modules/nodemon/lib/config/load.js diff --git a/backend/node_modules/nodemon/lib/help/index.js b/node_modules/nodemon/lib/help/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/help/index.js rename to node_modules/nodemon/lib/help/index.js diff --git a/backend/node_modules/nodemon/lib/index.js b/node_modules/nodemon/lib/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/index.js rename to node_modules/nodemon/lib/index.js diff --git a/backend/node_modules/nodemon/lib/monitor/index.js b/node_modules/nodemon/lib/monitor/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/monitor/index.js rename to node_modules/nodemon/lib/monitor/index.js diff --git a/backend/node_modules/nodemon/lib/monitor/match.js b/node_modules/nodemon/lib/monitor/match.js similarity index 100% rename from backend/node_modules/nodemon/lib/monitor/match.js rename to node_modules/nodemon/lib/monitor/match.js diff --git a/backend/node_modules/nodemon/lib/monitor/run.js b/node_modules/nodemon/lib/monitor/run.js similarity index 100% rename from backend/node_modules/nodemon/lib/monitor/run.js rename to node_modules/nodemon/lib/monitor/run.js diff --git a/backend/node_modules/nodemon/lib/monitor/signals.js b/node_modules/nodemon/lib/monitor/signals.js similarity index 100% rename from backend/node_modules/nodemon/lib/monitor/signals.js rename to node_modules/nodemon/lib/monitor/signals.js diff --git a/backend/node_modules/nodemon/lib/monitor/watch.js b/node_modules/nodemon/lib/monitor/watch.js similarity index 100% rename from backend/node_modules/nodemon/lib/monitor/watch.js rename to node_modules/nodemon/lib/monitor/watch.js diff --git a/backend/node_modules/nodemon/lib/nodemon.js b/node_modules/nodemon/lib/nodemon.js similarity index 100% rename from backend/node_modules/nodemon/lib/nodemon.js rename to node_modules/nodemon/lib/nodemon.js diff --git a/backend/node_modules/nodemon/lib/rules/add.js b/node_modules/nodemon/lib/rules/add.js similarity index 100% rename from backend/node_modules/nodemon/lib/rules/add.js rename to node_modules/nodemon/lib/rules/add.js diff --git a/backend/node_modules/nodemon/lib/rules/index.js b/node_modules/nodemon/lib/rules/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/rules/index.js rename to node_modules/nodemon/lib/rules/index.js diff --git a/backend/node_modules/nodemon/lib/rules/parse.js b/node_modules/nodemon/lib/rules/parse.js similarity index 100% rename from backend/node_modules/nodemon/lib/rules/parse.js rename to node_modules/nodemon/lib/rules/parse.js diff --git a/backend/node_modules/nodemon/lib/spawn.js b/node_modules/nodemon/lib/spawn.js similarity index 100% rename from backend/node_modules/nodemon/lib/spawn.js rename to node_modules/nodemon/lib/spawn.js diff --git a/backend/node_modules/nodemon/lib/utils/bus.js b/node_modules/nodemon/lib/utils/bus.js similarity index 100% rename from backend/node_modules/nodemon/lib/utils/bus.js rename to node_modules/nodemon/lib/utils/bus.js diff --git a/backend/node_modules/nodemon/lib/utils/clone.js b/node_modules/nodemon/lib/utils/clone.js similarity index 100% rename from backend/node_modules/nodemon/lib/utils/clone.js rename to node_modules/nodemon/lib/utils/clone.js diff --git a/backend/node_modules/nodemon/lib/utils/colour.js b/node_modules/nodemon/lib/utils/colour.js similarity index 100% rename from backend/node_modules/nodemon/lib/utils/colour.js rename to node_modules/nodemon/lib/utils/colour.js diff --git a/backend/node_modules/nodemon/lib/utils/index.js b/node_modules/nodemon/lib/utils/index.js similarity index 100% rename from backend/node_modules/nodemon/lib/utils/index.js rename to node_modules/nodemon/lib/utils/index.js diff --git a/backend/node_modules/nodemon/lib/utils/log.js b/node_modules/nodemon/lib/utils/log.js similarity index 100% rename from backend/node_modules/nodemon/lib/utils/log.js rename to node_modules/nodemon/lib/utils/log.js diff --git a/backend/node_modules/nodemon/lib/utils/merge.js b/node_modules/nodemon/lib/utils/merge.js similarity index 100% rename from backend/node_modules/nodemon/lib/utils/merge.js rename to node_modules/nodemon/lib/utils/merge.js diff --git a/backend/node_modules/nodemon/lib/version.js b/node_modules/nodemon/lib/version.js similarity index 100% rename from backend/node_modules/nodemon/lib/version.js rename to node_modules/nodemon/lib/version.js diff --git a/backend/node_modules/nodemon/package.json b/node_modules/nodemon/package.json similarity index 100% rename from backend/node_modules/nodemon/package.json rename to node_modules/nodemon/package.json diff --git a/backend/node_modules/normalize-path/LICENSE b/node_modules/normalize-path/LICENSE similarity index 100% rename from backend/node_modules/normalize-path/LICENSE rename to node_modules/normalize-path/LICENSE diff --git a/backend/node_modules/normalize-path/README.md b/node_modules/normalize-path/README.md similarity index 100% rename from backend/node_modules/normalize-path/README.md rename to node_modules/normalize-path/README.md diff --git a/backend/node_modules/normalize-path/index.js b/node_modules/normalize-path/index.js similarity index 100% rename from backend/node_modules/normalize-path/index.js rename to node_modules/normalize-path/index.js diff --git a/backend/node_modules/normalize-path/package.json b/node_modules/normalize-path/package.json similarity index 100% rename from backend/node_modules/normalize-path/package.json rename to node_modules/normalize-path/package.json diff --git a/backend/node_modules/picomatch/CHANGELOG.md b/node_modules/picomatch/CHANGELOG.md similarity index 100% rename from backend/node_modules/picomatch/CHANGELOG.md rename to node_modules/picomatch/CHANGELOG.md diff --git a/backend/node_modules/picomatch/LICENSE b/node_modules/picomatch/LICENSE similarity index 100% rename from backend/node_modules/picomatch/LICENSE rename to node_modules/picomatch/LICENSE diff --git a/backend/node_modules/picomatch/README.md b/node_modules/picomatch/README.md similarity index 100% rename from backend/node_modules/picomatch/README.md rename to node_modules/picomatch/README.md diff --git a/backend/node_modules/picomatch/index.js b/node_modules/picomatch/index.js similarity index 100% rename from backend/node_modules/picomatch/index.js rename to node_modules/picomatch/index.js diff --git a/backend/node_modules/picomatch/lib/constants.js b/node_modules/picomatch/lib/constants.js similarity index 100% rename from backend/node_modules/picomatch/lib/constants.js rename to node_modules/picomatch/lib/constants.js diff --git a/backend/node_modules/picomatch/lib/parse.js b/node_modules/picomatch/lib/parse.js similarity index 100% rename from backend/node_modules/picomatch/lib/parse.js rename to node_modules/picomatch/lib/parse.js diff --git a/backend/node_modules/picomatch/lib/picomatch.js b/node_modules/picomatch/lib/picomatch.js similarity index 100% rename from backend/node_modules/picomatch/lib/picomatch.js rename to node_modules/picomatch/lib/picomatch.js diff --git a/backend/node_modules/picomatch/lib/scan.js b/node_modules/picomatch/lib/scan.js similarity index 100% rename from backend/node_modules/picomatch/lib/scan.js rename to node_modules/picomatch/lib/scan.js diff --git a/backend/node_modules/picomatch/lib/utils.js b/node_modules/picomatch/lib/utils.js similarity index 100% rename from backend/node_modules/picomatch/lib/utils.js rename to node_modules/picomatch/lib/utils.js diff --git a/backend/node_modules/picomatch/package.json b/node_modules/picomatch/package.json similarity index 100% rename from backend/node_modules/picomatch/package.json rename to node_modules/picomatch/package.json diff --git a/backend/node_modules/pstree.remy/.travis.yml b/node_modules/pstree.remy/.travis.yml similarity index 100% rename from backend/node_modules/pstree.remy/.travis.yml rename to node_modules/pstree.remy/.travis.yml diff --git a/backend/node_modules/pstree.remy/LICENSE b/node_modules/pstree.remy/LICENSE similarity index 100% rename from backend/node_modules/pstree.remy/LICENSE rename to node_modules/pstree.remy/LICENSE diff --git a/backend/node_modules/pstree.remy/README.md b/node_modules/pstree.remy/README.md similarity index 100% rename from backend/node_modules/pstree.remy/README.md rename to node_modules/pstree.remy/README.md diff --git a/backend/node_modules/pstree.remy/lib/index.js b/node_modules/pstree.remy/lib/index.js similarity index 100% rename from backend/node_modules/pstree.remy/lib/index.js rename to node_modules/pstree.remy/lib/index.js diff --git a/backend/node_modules/pstree.remy/lib/tree.js b/node_modules/pstree.remy/lib/tree.js similarity index 100% rename from backend/node_modules/pstree.remy/lib/tree.js rename to node_modules/pstree.remy/lib/tree.js diff --git a/backend/node_modules/pstree.remy/lib/utils.js b/node_modules/pstree.remy/lib/utils.js similarity index 100% rename from backend/node_modules/pstree.remy/lib/utils.js rename to node_modules/pstree.remy/lib/utils.js diff --git a/backend/node_modules/pstree.remy/package.json b/node_modules/pstree.remy/package.json similarity index 100% rename from backend/node_modules/pstree.remy/package.json rename to node_modules/pstree.remy/package.json diff --git a/backend/node_modules/pstree.remy/tests/fixtures/index.js b/node_modules/pstree.remy/tests/fixtures/index.js similarity index 100% rename from backend/node_modules/pstree.remy/tests/fixtures/index.js rename to node_modules/pstree.remy/tests/fixtures/index.js diff --git a/backend/node_modules/pstree.remy/tests/fixtures/out1 b/node_modules/pstree.remy/tests/fixtures/out1 similarity index 100% rename from backend/node_modules/pstree.remy/tests/fixtures/out1 rename to node_modules/pstree.remy/tests/fixtures/out1 diff --git a/backend/node_modules/pstree.remy/tests/fixtures/out2 b/node_modules/pstree.remy/tests/fixtures/out2 similarity index 100% rename from backend/node_modules/pstree.remy/tests/fixtures/out2 rename to node_modules/pstree.remy/tests/fixtures/out2 diff --git a/backend/node_modules/pstree.remy/tests/index.test.js b/node_modules/pstree.remy/tests/index.test.js similarity index 100% rename from backend/node_modules/pstree.remy/tests/index.test.js rename to node_modules/pstree.remy/tests/index.test.js diff --git a/backend/node_modules/readdirp/LICENSE b/node_modules/readdirp/LICENSE similarity index 100% rename from backend/node_modules/readdirp/LICENSE rename to node_modules/readdirp/LICENSE diff --git a/backend/node_modules/readdirp/README.md b/node_modules/readdirp/README.md similarity index 100% rename from backend/node_modules/readdirp/README.md rename to node_modules/readdirp/README.md diff --git a/backend/node_modules/readdirp/index.d.ts b/node_modules/readdirp/index.d.ts similarity index 100% rename from backend/node_modules/readdirp/index.d.ts rename to node_modules/readdirp/index.d.ts diff --git a/backend/node_modules/readdirp/index.js b/node_modules/readdirp/index.js similarity index 100% rename from backend/node_modules/readdirp/index.js rename to node_modules/readdirp/index.js diff --git a/backend/node_modules/readdirp/package.json b/node_modules/readdirp/package.json similarity index 100% rename from backend/node_modules/readdirp/package.json rename to node_modules/readdirp/package.json diff --git a/backend/node_modules/semver/LICENSE b/node_modules/semver/LICENSE similarity index 100% rename from backend/node_modules/semver/LICENSE rename to node_modules/semver/LICENSE diff --git a/backend/node_modules/semver/README.md b/node_modules/semver/README.md similarity index 100% rename from backend/node_modules/semver/README.md rename to node_modules/semver/README.md diff --git a/backend/node_modules/semver/bin/semver.js b/node_modules/semver/bin/semver.js old mode 100644 new mode 100755 similarity index 100% rename from backend/node_modules/semver/bin/semver.js rename to node_modules/semver/bin/semver.js diff --git a/backend/node_modules/semver/classes/comparator.js b/node_modules/semver/classes/comparator.js similarity index 100% rename from backend/node_modules/semver/classes/comparator.js rename to node_modules/semver/classes/comparator.js diff --git a/backend/node_modules/semver/classes/index.js b/node_modules/semver/classes/index.js similarity index 100% rename from backend/node_modules/semver/classes/index.js rename to node_modules/semver/classes/index.js diff --git a/backend/node_modules/semver/classes/range.js b/node_modules/semver/classes/range.js similarity index 100% rename from backend/node_modules/semver/classes/range.js rename to node_modules/semver/classes/range.js diff --git a/backend/node_modules/semver/classes/semver.js b/node_modules/semver/classes/semver.js similarity index 100% rename from backend/node_modules/semver/classes/semver.js rename to node_modules/semver/classes/semver.js diff --git a/backend/node_modules/semver/functions/clean.js b/node_modules/semver/functions/clean.js similarity index 100% rename from backend/node_modules/semver/functions/clean.js rename to node_modules/semver/functions/clean.js diff --git a/backend/node_modules/semver/functions/cmp.js b/node_modules/semver/functions/cmp.js similarity index 100% rename from backend/node_modules/semver/functions/cmp.js rename to node_modules/semver/functions/cmp.js diff --git a/backend/node_modules/semver/functions/coerce.js b/node_modules/semver/functions/coerce.js similarity index 100% rename from backend/node_modules/semver/functions/coerce.js rename to node_modules/semver/functions/coerce.js diff --git a/backend/node_modules/semver/functions/compare-build.js b/node_modules/semver/functions/compare-build.js similarity index 100% rename from backend/node_modules/semver/functions/compare-build.js rename to node_modules/semver/functions/compare-build.js diff --git a/backend/node_modules/semver/functions/compare-loose.js b/node_modules/semver/functions/compare-loose.js similarity index 100% rename from backend/node_modules/semver/functions/compare-loose.js rename to node_modules/semver/functions/compare-loose.js diff --git a/backend/node_modules/semver/functions/compare.js b/node_modules/semver/functions/compare.js similarity index 100% rename from backend/node_modules/semver/functions/compare.js rename to node_modules/semver/functions/compare.js diff --git a/backend/node_modules/semver/functions/diff.js b/node_modules/semver/functions/diff.js similarity index 100% rename from backend/node_modules/semver/functions/diff.js rename to node_modules/semver/functions/diff.js diff --git a/backend/node_modules/semver/functions/eq.js b/node_modules/semver/functions/eq.js similarity index 100% rename from backend/node_modules/semver/functions/eq.js rename to node_modules/semver/functions/eq.js diff --git a/backend/node_modules/semver/functions/gt.js b/node_modules/semver/functions/gt.js similarity index 100% rename from backend/node_modules/semver/functions/gt.js rename to node_modules/semver/functions/gt.js diff --git a/backend/node_modules/semver/functions/gte.js b/node_modules/semver/functions/gte.js similarity index 100% rename from backend/node_modules/semver/functions/gte.js rename to node_modules/semver/functions/gte.js diff --git a/backend/node_modules/semver/functions/inc.js b/node_modules/semver/functions/inc.js similarity index 100% rename from backend/node_modules/semver/functions/inc.js rename to node_modules/semver/functions/inc.js diff --git a/backend/node_modules/semver/functions/lt.js b/node_modules/semver/functions/lt.js similarity index 100% rename from backend/node_modules/semver/functions/lt.js rename to node_modules/semver/functions/lt.js diff --git a/backend/node_modules/semver/functions/lte.js b/node_modules/semver/functions/lte.js similarity index 100% rename from backend/node_modules/semver/functions/lte.js rename to node_modules/semver/functions/lte.js diff --git a/backend/node_modules/semver/functions/major.js b/node_modules/semver/functions/major.js similarity index 100% rename from backend/node_modules/semver/functions/major.js rename to node_modules/semver/functions/major.js diff --git a/backend/node_modules/semver/functions/minor.js b/node_modules/semver/functions/minor.js similarity index 100% rename from backend/node_modules/semver/functions/minor.js rename to node_modules/semver/functions/minor.js diff --git a/backend/node_modules/semver/functions/neq.js b/node_modules/semver/functions/neq.js similarity index 100% rename from backend/node_modules/semver/functions/neq.js rename to node_modules/semver/functions/neq.js diff --git a/backend/node_modules/semver/functions/parse.js b/node_modules/semver/functions/parse.js similarity index 100% rename from backend/node_modules/semver/functions/parse.js rename to node_modules/semver/functions/parse.js diff --git a/backend/node_modules/semver/functions/patch.js b/node_modules/semver/functions/patch.js similarity index 100% rename from backend/node_modules/semver/functions/patch.js rename to node_modules/semver/functions/patch.js diff --git a/backend/node_modules/semver/functions/prerelease.js b/node_modules/semver/functions/prerelease.js similarity index 100% rename from backend/node_modules/semver/functions/prerelease.js rename to node_modules/semver/functions/prerelease.js diff --git a/backend/node_modules/semver/functions/rcompare.js b/node_modules/semver/functions/rcompare.js similarity index 100% rename from backend/node_modules/semver/functions/rcompare.js rename to node_modules/semver/functions/rcompare.js diff --git a/backend/node_modules/semver/functions/rsort.js b/node_modules/semver/functions/rsort.js similarity index 100% rename from backend/node_modules/semver/functions/rsort.js rename to node_modules/semver/functions/rsort.js diff --git a/backend/node_modules/semver/functions/satisfies.js b/node_modules/semver/functions/satisfies.js similarity index 100% rename from backend/node_modules/semver/functions/satisfies.js rename to node_modules/semver/functions/satisfies.js diff --git a/backend/node_modules/semver/functions/sort.js b/node_modules/semver/functions/sort.js similarity index 100% rename from backend/node_modules/semver/functions/sort.js rename to node_modules/semver/functions/sort.js diff --git a/backend/node_modules/semver/functions/valid.js b/node_modules/semver/functions/valid.js similarity index 100% rename from backend/node_modules/semver/functions/valid.js rename to node_modules/semver/functions/valid.js diff --git a/backend/node_modules/semver/index.js b/node_modules/semver/index.js similarity index 100% rename from backend/node_modules/semver/index.js rename to node_modules/semver/index.js diff --git a/backend/node_modules/semver/internal/constants.js b/node_modules/semver/internal/constants.js similarity index 100% rename from backend/node_modules/semver/internal/constants.js rename to node_modules/semver/internal/constants.js diff --git a/backend/node_modules/semver/internal/debug.js b/node_modules/semver/internal/debug.js similarity index 100% rename from backend/node_modules/semver/internal/debug.js rename to node_modules/semver/internal/debug.js diff --git a/backend/node_modules/semver/internal/identifiers.js b/node_modules/semver/internal/identifiers.js similarity index 100% rename from backend/node_modules/semver/internal/identifiers.js rename to node_modules/semver/internal/identifiers.js diff --git a/backend/node_modules/semver/internal/lrucache.js b/node_modules/semver/internal/lrucache.js similarity index 100% rename from backend/node_modules/semver/internal/lrucache.js rename to node_modules/semver/internal/lrucache.js diff --git a/backend/node_modules/semver/internal/parse-options.js b/node_modules/semver/internal/parse-options.js similarity index 100% rename from backend/node_modules/semver/internal/parse-options.js rename to node_modules/semver/internal/parse-options.js diff --git a/backend/node_modules/semver/internal/re.js b/node_modules/semver/internal/re.js similarity index 100% rename from backend/node_modules/semver/internal/re.js rename to node_modules/semver/internal/re.js diff --git a/backend/node_modules/semver/package.json b/node_modules/semver/package.json similarity index 100% rename from backend/node_modules/semver/package.json rename to node_modules/semver/package.json diff --git a/backend/node_modules/semver/preload.js b/node_modules/semver/preload.js similarity index 100% rename from backend/node_modules/semver/preload.js rename to node_modules/semver/preload.js diff --git a/backend/node_modules/semver/range.bnf b/node_modules/semver/range.bnf similarity index 100% rename from backend/node_modules/semver/range.bnf rename to node_modules/semver/range.bnf diff --git a/backend/node_modules/semver/ranges/gtr.js b/node_modules/semver/ranges/gtr.js similarity index 100% rename from backend/node_modules/semver/ranges/gtr.js rename to node_modules/semver/ranges/gtr.js diff --git a/backend/node_modules/semver/ranges/intersects.js b/node_modules/semver/ranges/intersects.js similarity index 100% rename from backend/node_modules/semver/ranges/intersects.js rename to node_modules/semver/ranges/intersects.js diff --git a/backend/node_modules/semver/ranges/ltr.js b/node_modules/semver/ranges/ltr.js similarity index 100% rename from backend/node_modules/semver/ranges/ltr.js rename to node_modules/semver/ranges/ltr.js diff --git a/backend/node_modules/semver/ranges/max-satisfying.js b/node_modules/semver/ranges/max-satisfying.js similarity index 100% rename from backend/node_modules/semver/ranges/max-satisfying.js rename to node_modules/semver/ranges/max-satisfying.js diff --git a/backend/node_modules/semver/ranges/min-satisfying.js b/node_modules/semver/ranges/min-satisfying.js similarity index 100% rename from backend/node_modules/semver/ranges/min-satisfying.js rename to node_modules/semver/ranges/min-satisfying.js diff --git a/backend/node_modules/semver/ranges/min-version.js b/node_modules/semver/ranges/min-version.js similarity index 100% rename from backend/node_modules/semver/ranges/min-version.js rename to node_modules/semver/ranges/min-version.js diff --git a/backend/node_modules/semver/ranges/outside.js b/node_modules/semver/ranges/outside.js similarity index 100% rename from backend/node_modules/semver/ranges/outside.js rename to node_modules/semver/ranges/outside.js diff --git a/backend/node_modules/semver/ranges/simplify.js b/node_modules/semver/ranges/simplify.js similarity index 100% rename from backend/node_modules/semver/ranges/simplify.js rename to node_modules/semver/ranges/simplify.js diff --git a/backend/node_modules/semver/ranges/subset.js b/node_modules/semver/ranges/subset.js similarity index 100% rename from backend/node_modules/semver/ranges/subset.js rename to node_modules/semver/ranges/subset.js diff --git a/backend/node_modules/semver/ranges/to-comparators.js b/node_modules/semver/ranges/to-comparators.js similarity index 100% rename from backend/node_modules/semver/ranges/to-comparators.js rename to node_modules/semver/ranges/to-comparators.js diff --git a/backend/node_modules/semver/ranges/valid.js b/node_modules/semver/ranges/valid.js similarity index 100% rename from backend/node_modules/semver/ranges/valid.js rename to node_modules/semver/ranges/valid.js diff --git a/backend/node_modules/simple-update-notifier/LICENSE b/node_modules/simple-update-notifier/LICENSE similarity index 100% rename from backend/node_modules/simple-update-notifier/LICENSE rename to node_modules/simple-update-notifier/LICENSE diff --git a/backend/node_modules/simple-update-notifier/README.md b/node_modules/simple-update-notifier/README.md similarity index 100% rename from backend/node_modules/simple-update-notifier/README.md rename to node_modules/simple-update-notifier/README.md diff --git a/backend/node_modules/simple-update-notifier/build/index.d.ts b/node_modules/simple-update-notifier/build/index.d.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/build/index.d.ts rename to node_modules/simple-update-notifier/build/index.d.ts diff --git a/backend/node_modules/simple-update-notifier/build/index.js b/node_modules/simple-update-notifier/build/index.js similarity index 99% rename from backend/node_modules/simple-update-notifier/build/index.js rename to node_modules/simple-update-notifier/build/index.js index 090f9df6..d7c3cde2 100644 --- a/backend/node_modules/simple-update-notifier/build/index.js +++ b/node_modules/simple-update-notifier/build/index.js @@ -7,59 +7,59 @@ var path = require('path'); var fs = require('fs'); var https = require('https'); -/****************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global Reflect, Promise */ - - -function __awaiter(thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -} - -function __generator(thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (g && (g = 0, op[0] && (_ = 0)), _) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } +/****************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ +/* global Reflect, Promise */ + + +function __awaiter(thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +} + +function __generator(thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (g && (g = 0, op[0] && (_ = 0)), _) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } } var packageJson = process$1.env.npm_package_json; diff --git a/backend/node_modules/simple-update-notifier/package.json b/node_modules/simple-update-notifier/package.json similarity index 100% rename from backend/node_modules/simple-update-notifier/package.json rename to node_modules/simple-update-notifier/package.json diff --git a/backend/node_modules/simple-update-notifier/src/borderedText.ts b/node_modules/simple-update-notifier/src/borderedText.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/borderedText.ts rename to node_modules/simple-update-notifier/src/borderedText.ts diff --git a/backend/node_modules/simple-update-notifier/src/cache.spec.ts b/node_modules/simple-update-notifier/src/cache.spec.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/cache.spec.ts rename to node_modules/simple-update-notifier/src/cache.spec.ts diff --git a/backend/node_modules/simple-update-notifier/src/cache.ts b/node_modules/simple-update-notifier/src/cache.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/cache.ts rename to node_modules/simple-update-notifier/src/cache.ts diff --git a/backend/node_modules/simple-update-notifier/src/getDistVersion.spec.ts b/node_modules/simple-update-notifier/src/getDistVersion.spec.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/getDistVersion.spec.ts rename to node_modules/simple-update-notifier/src/getDistVersion.spec.ts diff --git a/backend/node_modules/simple-update-notifier/src/getDistVersion.ts b/node_modules/simple-update-notifier/src/getDistVersion.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/getDistVersion.ts rename to node_modules/simple-update-notifier/src/getDistVersion.ts diff --git a/backend/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts b/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts rename to node_modules/simple-update-notifier/src/hasNewVersion.spec.ts diff --git a/backend/node_modules/simple-update-notifier/src/hasNewVersion.ts b/node_modules/simple-update-notifier/src/hasNewVersion.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/hasNewVersion.ts rename to node_modules/simple-update-notifier/src/hasNewVersion.ts diff --git a/backend/node_modules/simple-update-notifier/src/index.spec.ts b/node_modules/simple-update-notifier/src/index.spec.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/index.spec.ts rename to node_modules/simple-update-notifier/src/index.spec.ts diff --git a/backend/node_modules/simple-update-notifier/src/index.ts b/node_modules/simple-update-notifier/src/index.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/index.ts rename to node_modules/simple-update-notifier/src/index.ts diff --git a/backend/node_modules/simple-update-notifier/src/isNpmOrYarn.ts b/node_modules/simple-update-notifier/src/isNpmOrYarn.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/isNpmOrYarn.ts rename to node_modules/simple-update-notifier/src/isNpmOrYarn.ts diff --git a/backend/node_modules/simple-update-notifier/src/types.ts b/node_modules/simple-update-notifier/src/types.ts similarity index 100% rename from backend/node_modules/simple-update-notifier/src/types.ts rename to node_modules/simple-update-notifier/src/types.ts diff --git a/backend/node_modules/supports-color/browser.js b/node_modules/supports-color/browser.js similarity index 100% rename from backend/node_modules/supports-color/browser.js rename to node_modules/supports-color/browser.js diff --git a/backend/node_modules/supports-color/index.js b/node_modules/supports-color/index.js similarity index 100% rename from backend/node_modules/supports-color/index.js rename to node_modules/supports-color/index.js diff --git a/backend/node_modules/supports-color/license b/node_modules/supports-color/license similarity index 100% rename from backend/node_modules/supports-color/license rename to node_modules/supports-color/license diff --git a/backend/node_modules/supports-color/package.json b/node_modules/supports-color/package.json similarity index 100% rename from backend/node_modules/supports-color/package.json rename to node_modules/supports-color/package.json diff --git a/backend/node_modules/supports-color/readme.md b/node_modules/supports-color/readme.md similarity index 100% rename from backend/node_modules/supports-color/readme.md rename to node_modules/supports-color/readme.md diff --git a/backend/node_modules/to-regex-range/LICENSE b/node_modules/to-regex-range/LICENSE similarity index 100% rename from backend/node_modules/to-regex-range/LICENSE rename to node_modules/to-regex-range/LICENSE diff --git a/backend/node_modules/to-regex-range/README.md b/node_modules/to-regex-range/README.md similarity index 100% rename from backend/node_modules/to-regex-range/README.md rename to node_modules/to-regex-range/README.md diff --git a/backend/node_modules/to-regex-range/index.js b/node_modules/to-regex-range/index.js similarity index 100% rename from backend/node_modules/to-regex-range/index.js rename to node_modules/to-regex-range/index.js diff --git a/backend/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json similarity index 100% rename from backend/node_modules/to-regex-range/package.json rename to node_modules/to-regex-range/package.json diff --git a/backend/node_modules/touch/LICENSE b/node_modules/touch/LICENSE similarity index 100% rename from backend/node_modules/touch/LICENSE rename to node_modules/touch/LICENSE diff --git a/backend/node_modules/touch/README.md b/node_modules/touch/README.md similarity index 100% rename from backend/node_modules/touch/README.md rename to node_modules/touch/README.md diff --git a/backend/node_modules/touch/bin/nodetouch.js b/node_modules/touch/bin/nodetouch.js old mode 100644 new mode 100755 similarity index 100% rename from backend/node_modules/touch/bin/nodetouch.js rename to node_modules/touch/bin/nodetouch.js diff --git a/backend/node_modules/touch/index.js b/node_modules/touch/index.js similarity index 100% rename from backend/node_modules/touch/index.js rename to node_modules/touch/index.js diff --git a/backend/node_modules/touch/package.json b/node_modules/touch/package.json similarity index 100% rename from backend/node_modules/touch/package.json rename to node_modules/touch/package.json diff --git a/backend/node_modules/undefsafe/.github/workflows/release.yml b/node_modules/undefsafe/.github/workflows/release.yml similarity index 100% rename from backend/node_modules/undefsafe/.github/workflows/release.yml rename to node_modules/undefsafe/.github/workflows/release.yml diff --git a/backend/node_modules/undefsafe/.jscsrc b/node_modules/undefsafe/.jscsrc similarity index 100% rename from backend/node_modules/undefsafe/.jscsrc rename to node_modules/undefsafe/.jscsrc diff --git a/backend/node_modules/undefsafe/.jshintrc b/node_modules/undefsafe/.jshintrc similarity index 100% rename from backend/node_modules/undefsafe/.jshintrc rename to node_modules/undefsafe/.jshintrc diff --git a/backend/node_modules/undefsafe/.travis.yml b/node_modules/undefsafe/.travis.yml similarity index 100% rename from backend/node_modules/undefsafe/.travis.yml rename to node_modules/undefsafe/.travis.yml diff --git a/backend/node_modules/undefsafe/LICENSE b/node_modules/undefsafe/LICENSE similarity index 100% rename from backend/node_modules/undefsafe/LICENSE rename to node_modules/undefsafe/LICENSE diff --git a/backend/node_modules/undefsafe/README.md b/node_modules/undefsafe/README.md similarity index 100% rename from backend/node_modules/undefsafe/README.md rename to node_modules/undefsafe/README.md diff --git a/backend/node_modules/undefsafe/example.js b/node_modules/undefsafe/example.js similarity index 100% rename from backend/node_modules/undefsafe/example.js rename to node_modules/undefsafe/example.js diff --git a/backend/node_modules/undefsafe/lib/undefsafe.js b/node_modules/undefsafe/lib/undefsafe.js similarity index 100% rename from backend/node_modules/undefsafe/lib/undefsafe.js rename to node_modules/undefsafe/lib/undefsafe.js diff --git a/backend/node_modules/undefsafe/package.json b/node_modules/undefsafe/package.json similarity index 100% rename from backend/node_modules/undefsafe/package.json rename to node_modules/undefsafe/package.json