diff --git a/app/dockerfile b/app/dockerfile new file mode 100644 index 0000000..d7ad1df --- /dev/null +++ b/app/dockerfile @@ -0,0 +1,25 @@ +# Stage 1: Build +FROM node:18 AS builder + +WORKDIR /app + +COPY . . + +# Install dependencies with legacy peer deps to avoid version conflicts +RUN npm install --legacy-peer-deps && npm run build + +# Stage 2: Serve with Nginx +FROM nginx:alpine + +# Remove default nginx static files +RUN rm -rf /usr/share/nginx/html/* + +# Copy built files from builder +COPY --from=builder /app/dist /usr/share/nginx/html + +# Copy custom Nginx config if needed +# COPY nginx.conf /etc/nginx/nginx.conf + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/index.html b/app/index.html similarity index 100% rename from index.html rename to app/index.html diff --git a/node_modules/.bin/esbuild b/app/node_modules/.bin/esbuild similarity index 100% rename from node_modules/.bin/esbuild rename to app/node_modules/.bin/esbuild diff --git a/node_modules/.bin/esbuild.cmd b/app/node_modules/.bin/esbuild.cmd similarity index 100% rename from node_modules/.bin/esbuild.cmd rename to app/node_modules/.bin/esbuild.cmd diff --git a/node_modules/.bin/esbuild.ps1 b/app/node_modules/.bin/esbuild.ps1 similarity index 100% rename from node_modules/.bin/esbuild.ps1 rename to app/node_modules/.bin/esbuild.ps1 diff --git a/node_modules/.bin/nanoid b/app/node_modules/.bin/nanoid similarity index 100% rename from node_modules/.bin/nanoid rename to app/node_modules/.bin/nanoid diff --git a/node_modules/.bin/nanoid.cmd b/app/node_modules/.bin/nanoid.cmd similarity index 100% rename from node_modules/.bin/nanoid.cmd rename to app/node_modules/.bin/nanoid.cmd diff --git a/node_modules/.bin/nanoid.ps1 b/app/node_modules/.bin/nanoid.ps1 similarity index 100% rename from node_modules/.bin/nanoid.ps1 rename to app/node_modules/.bin/nanoid.ps1 diff --git a/node_modules/.bin/rollup b/app/node_modules/.bin/rollup similarity index 100% rename from node_modules/.bin/rollup rename to app/node_modules/.bin/rollup diff --git a/node_modules/.bin/rollup.cmd b/app/node_modules/.bin/rollup.cmd similarity index 100% rename from node_modules/.bin/rollup.cmd rename to app/node_modules/.bin/rollup.cmd diff --git a/node_modules/.bin/rollup.ps1 b/app/node_modules/.bin/rollup.ps1 similarity index 100% rename from node_modules/.bin/rollup.ps1 rename to app/node_modules/.bin/rollup.ps1 diff --git a/node_modules/.bin/vite b/app/node_modules/.bin/vite similarity index 100% rename from node_modules/.bin/vite rename to app/node_modules/.bin/vite diff --git a/node_modules/.bin/vite.cmd b/app/node_modules/.bin/vite.cmd similarity index 100% rename from node_modules/.bin/vite.cmd rename to app/node_modules/.bin/vite.cmd diff --git a/node_modules/.bin/vite.ps1 b/app/node_modules/.bin/vite.ps1 similarity index 100% rename from node_modules/.bin/vite.ps1 rename to app/node_modules/.bin/vite.ps1 diff --git a/node_modules/.package-lock.json b/app/node_modules/.package-lock.json similarity index 100% rename from node_modules/.package-lock.json rename to app/node_modules/.package-lock.json diff --git a/node_modules/.vite/deps/_metadata.json b/app/node_modules/.vite/deps/_metadata.json similarity index 100% rename from node_modules/.vite/deps/_metadata.json rename to app/node_modules/.vite/deps/_metadata.json diff --git a/node_modules/.vite/deps/package.json b/app/node_modules/.vite/deps/package.json similarity index 100% rename from node_modules/.vite/deps/package.json rename to app/node_modules/.vite/deps/package.json diff --git a/node_modules/@esbuild/win32-x64/README.md b/app/node_modules/@esbuild/win32-x64/README.md similarity index 100% rename from node_modules/@esbuild/win32-x64/README.md rename to app/node_modules/@esbuild/win32-x64/README.md diff --git a/node_modules/@esbuild/win32-x64/esbuild.exe b/app/node_modules/@esbuild/win32-x64/esbuild.exe similarity index 100% rename from node_modules/@esbuild/win32-x64/esbuild.exe rename to app/node_modules/@esbuild/win32-x64/esbuild.exe diff --git a/node_modules/@esbuild/win32-x64/package.json b/app/node_modules/@esbuild/win32-x64/package.json similarity index 100% rename from node_modules/@esbuild/win32-x64/package.json rename to app/node_modules/@esbuild/win32-x64/package.json diff --git a/node_modules/@rollup/rollup-win32-x64-msvc/README.md b/app/node_modules/@rollup/rollup-win32-x64-msvc/README.md similarity index 100% rename from node_modules/@rollup/rollup-win32-x64-msvc/README.md rename to app/node_modules/@rollup/rollup-win32-x64-msvc/README.md diff --git a/node_modules/@rollup/rollup-win32-x64-msvc/package.json b/app/node_modules/@rollup/rollup-win32-x64-msvc/package.json similarity index 100% rename from node_modules/@rollup/rollup-win32-x64-msvc/package.json rename to app/node_modules/@rollup/rollup-win32-x64-msvc/package.json diff --git a/node_modules/@rollup/rollup-win32-x64-msvc/rollup.win32-x64-msvc.node b/app/node_modules/@rollup/rollup-win32-x64-msvc/rollup.win32-x64-msvc.node similarity index 100% rename from node_modules/@rollup/rollup-win32-x64-msvc/rollup.win32-x64-msvc.node rename to app/node_modules/@rollup/rollup-win32-x64-msvc/rollup.win32-x64-msvc.node diff --git a/node_modules/@types/estree/LICENSE b/app/node_modules/@types/estree/LICENSE similarity index 100% rename from node_modules/@types/estree/LICENSE rename to app/node_modules/@types/estree/LICENSE diff --git a/node_modules/@types/estree/README.md b/app/node_modules/@types/estree/README.md similarity index 100% rename from node_modules/@types/estree/README.md rename to app/node_modules/@types/estree/README.md diff --git a/node_modules/@types/estree/flow.d.ts b/app/node_modules/@types/estree/flow.d.ts similarity index 100% rename from node_modules/@types/estree/flow.d.ts rename to app/node_modules/@types/estree/flow.d.ts diff --git a/node_modules/@types/estree/index.d.ts b/app/node_modules/@types/estree/index.d.ts similarity index 100% rename from node_modules/@types/estree/index.d.ts rename to app/node_modules/@types/estree/index.d.ts diff --git a/node_modules/@types/estree/package.json b/app/node_modules/@types/estree/package.json similarity index 100% rename from node_modules/@types/estree/package.json rename to app/node_modules/@types/estree/package.json diff --git a/node_modules/esbuild/LICENSE.md b/app/node_modules/esbuild/LICENSE.md similarity index 100% rename from node_modules/esbuild/LICENSE.md rename to app/node_modules/esbuild/LICENSE.md diff --git a/node_modules/esbuild/README.md b/app/node_modules/esbuild/README.md similarity index 100% rename from node_modules/esbuild/README.md rename to app/node_modules/esbuild/README.md diff --git a/node_modules/esbuild/bin/esbuild b/app/node_modules/esbuild/bin/esbuild similarity index 100% rename from node_modules/esbuild/bin/esbuild rename to app/node_modules/esbuild/bin/esbuild diff --git a/node_modules/esbuild/install.js b/app/node_modules/esbuild/install.js similarity index 100% rename from node_modules/esbuild/install.js rename to app/node_modules/esbuild/install.js diff --git a/node_modules/esbuild/lib/main.d.ts b/app/node_modules/esbuild/lib/main.d.ts similarity index 100% rename from node_modules/esbuild/lib/main.d.ts rename to app/node_modules/esbuild/lib/main.d.ts diff --git a/node_modules/esbuild/lib/main.js b/app/node_modules/esbuild/lib/main.js similarity index 100% rename from node_modules/esbuild/lib/main.js rename to app/node_modules/esbuild/lib/main.js diff --git a/node_modules/esbuild/package.json b/app/node_modules/esbuild/package.json similarity index 100% rename from node_modules/esbuild/package.json rename to app/node_modules/esbuild/package.json diff --git a/node_modules/fdir/LICENSE b/app/node_modules/fdir/LICENSE similarity index 100% rename from node_modules/fdir/LICENSE rename to app/node_modules/fdir/LICENSE diff --git a/node_modules/fdir/README.md b/app/node_modules/fdir/README.md similarity index 100% rename from node_modules/fdir/README.md rename to app/node_modules/fdir/README.md diff --git a/node_modules/fdir/dist/api/async.d.ts b/app/node_modules/fdir/dist/api/async.d.ts similarity index 100% rename from node_modules/fdir/dist/api/async.d.ts rename to app/node_modules/fdir/dist/api/async.d.ts diff --git a/node_modules/fdir/dist/api/async.js b/app/node_modules/fdir/dist/api/async.js similarity index 100% rename from node_modules/fdir/dist/api/async.js rename to app/node_modules/fdir/dist/api/async.js diff --git a/node_modules/fdir/dist/api/counter.d.ts b/app/node_modules/fdir/dist/api/counter.d.ts similarity index 100% rename from node_modules/fdir/dist/api/counter.d.ts rename to app/node_modules/fdir/dist/api/counter.d.ts diff --git a/node_modules/fdir/dist/api/counter.js b/app/node_modules/fdir/dist/api/counter.js similarity index 100% rename from node_modules/fdir/dist/api/counter.js rename to app/node_modules/fdir/dist/api/counter.js diff --git a/node_modules/fdir/dist/api/functions/get-array.d.ts b/app/node_modules/fdir/dist/api/functions/get-array.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/get-array.d.ts rename to app/node_modules/fdir/dist/api/functions/get-array.d.ts diff --git a/node_modules/fdir/dist/api/functions/get-array.js b/app/node_modules/fdir/dist/api/functions/get-array.js similarity index 100% rename from node_modules/fdir/dist/api/functions/get-array.js rename to app/node_modules/fdir/dist/api/functions/get-array.js diff --git a/node_modules/fdir/dist/api/functions/group-files.d.ts b/app/node_modules/fdir/dist/api/functions/group-files.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/group-files.d.ts rename to app/node_modules/fdir/dist/api/functions/group-files.d.ts diff --git a/node_modules/fdir/dist/api/functions/group-files.js b/app/node_modules/fdir/dist/api/functions/group-files.js similarity index 100% rename from node_modules/fdir/dist/api/functions/group-files.js rename to app/node_modules/fdir/dist/api/functions/group-files.js diff --git a/node_modules/fdir/dist/api/functions/invoke-callback.d.ts b/app/node_modules/fdir/dist/api/functions/invoke-callback.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/invoke-callback.d.ts rename to app/node_modules/fdir/dist/api/functions/invoke-callback.d.ts diff --git a/node_modules/fdir/dist/api/functions/invoke-callback.js b/app/node_modules/fdir/dist/api/functions/invoke-callback.js similarity index 100% rename from node_modules/fdir/dist/api/functions/invoke-callback.js rename to app/node_modules/fdir/dist/api/functions/invoke-callback.js diff --git a/node_modules/fdir/dist/api/functions/join-path.d.ts b/app/node_modules/fdir/dist/api/functions/join-path.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/join-path.d.ts rename to app/node_modules/fdir/dist/api/functions/join-path.d.ts diff --git a/node_modules/fdir/dist/api/functions/join-path.js b/app/node_modules/fdir/dist/api/functions/join-path.js similarity index 100% rename from node_modules/fdir/dist/api/functions/join-path.js rename to app/node_modules/fdir/dist/api/functions/join-path.js diff --git a/node_modules/fdir/dist/api/functions/push-directory.d.ts b/app/node_modules/fdir/dist/api/functions/push-directory.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/push-directory.d.ts rename to app/node_modules/fdir/dist/api/functions/push-directory.d.ts diff --git a/node_modules/fdir/dist/api/functions/push-directory.js b/app/node_modules/fdir/dist/api/functions/push-directory.js similarity index 100% rename from node_modules/fdir/dist/api/functions/push-directory.js rename to app/node_modules/fdir/dist/api/functions/push-directory.js diff --git a/node_modules/fdir/dist/api/functions/push-file.d.ts b/app/node_modules/fdir/dist/api/functions/push-file.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/push-file.d.ts rename to app/node_modules/fdir/dist/api/functions/push-file.d.ts diff --git a/node_modules/fdir/dist/api/functions/push-file.js b/app/node_modules/fdir/dist/api/functions/push-file.js similarity index 100% rename from node_modules/fdir/dist/api/functions/push-file.js rename to app/node_modules/fdir/dist/api/functions/push-file.js diff --git a/node_modules/fdir/dist/api/functions/resolve-symlink.d.ts b/app/node_modules/fdir/dist/api/functions/resolve-symlink.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/resolve-symlink.d.ts rename to app/node_modules/fdir/dist/api/functions/resolve-symlink.d.ts diff --git a/node_modules/fdir/dist/api/functions/resolve-symlink.js b/app/node_modules/fdir/dist/api/functions/resolve-symlink.js similarity index 100% rename from node_modules/fdir/dist/api/functions/resolve-symlink.js rename to app/node_modules/fdir/dist/api/functions/resolve-symlink.js diff --git a/node_modules/fdir/dist/api/functions/walk-directory.d.ts b/app/node_modules/fdir/dist/api/functions/walk-directory.d.ts similarity index 100% rename from node_modules/fdir/dist/api/functions/walk-directory.d.ts rename to app/node_modules/fdir/dist/api/functions/walk-directory.d.ts diff --git a/node_modules/fdir/dist/api/functions/walk-directory.js b/app/node_modules/fdir/dist/api/functions/walk-directory.js similarity index 100% rename from node_modules/fdir/dist/api/functions/walk-directory.js rename to app/node_modules/fdir/dist/api/functions/walk-directory.js diff --git a/node_modules/fdir/dist/api/queue.d.ts b/app/node_modules/fdir/dist/api/queue.d.ts similarity index 100% rename from node_modules/fdir/dist/api/queue.d.ts rename to app/node_modules/fdir/dist/api/queue.d.ts diff --git a/node_modules/fdir/dist/api/queue.js b/app/node_modules/fdir/dist/api/queue.js similarity index 100% rename from node_modules/fdir/dist/api/queue.js rename to app/node_modules/fdir/dist/api/queue.js diff --git a/node_modules/fdir/dist/api/sync.d.ts b/app/node_modules/fdir/dist/api/sync.d.ts similarity index 100% rename from node_modules/fdir/dist/api/sync.d.ts rename to app/node_modules/fdir/dist/api/sync.d.ts diff --git a/node_modules/fdir/dist/api/sync.js b/app/node_modules/fdir/dist/api/sync.js similarity index 100% rename from node_modules/fdir/dist/api/sync.js rename to app/node_modules/fdir/dist/api/sync.js diff --git a/node_modules/fdir/dist/api/walker.d.ts b/app/node_modules/fdir/dist/api/walker.d.ts similarity index 100% rename from node_modules/fdir/dist/api/walker.d.ts rename to app/node_modules/fdir/dist/api/walker.d.ts diff --git a/node_modules/fdir/dist/api/walker.js b/app/node_modules/fdir/dist/api/walker.js similarity index 100% rename from node_modules/fdir/dist/api/walker.js rename to app/node_modules/fdir/dist/api/walker.js diff --git a/node_modules/fdir/dist/builder/api-builder.d.ts b/app/node_modules/fdir/dist/builder/api-builder.d.ts similarity index 100% rename from node_modules/fdir/dist/builder/api-builder.d.ts rename to app/node_modules/fdir/dist/builder/api-builder.d.ts diff --git a/node_modules/fdir/dist/builder/api-builder.js b/app/node_modules/fdir/dist/builder/api-builder.js similarity index 100% rename from node_modules/fdir/dist/builder/api-builder.js rename to app/node_modules/fdir/dist/builder/api-builder.js diff --git a/node_modules/fdir/dist/builder/index.d.ts b/app/node_modules/fdir/dist/builder/index.d.ts similarity index 100% rename from node_modules/fdir/dist/builder/index.d.ts rename to app/node_modules/fdir/dist/builder/index.d.ts diff --git a/node_modules/fdir/dist/builder/index.js b/app/node_modules/fdir/dist/builder/index.js similarity index 100% rename from node_modules/fdir/dist/builder/index.js rename to app/node_modules/fdir/dist/builder/index.js diff --git a/node_modules/fdir/dist/index.cjs b/app/node_modules/fdir/dist/index.cjs similarity index 100% rename from node_modules/fdir/dist/index.cjs rename to app/node_modules/fdir/dist/index.cjs diff --git a/node_modules/fdir/dist/index.d.cts b/app/node_modules/fdir/dist/index.d.cts similarity index 100% rename from node_modules/fdir/dist/index.d.cts rename to app/node_modules/fdir/dist/index.d.cts diff --git a/node_modules/fdir/dist/index.d.mts b/app/node_modules/fdir/dist/index.d.mts similarity index 100% rename from node_modules/fdir/dist/index.d.mts rename to app/node_modules/fdir/dist/index.d.mts diff --git a/node_modules/fdir/dist/index.d.ts b/app/node_modules/fdir/dist/index.d.ts similarity index 100% rename from node_modules/fdir/dist/index.d.ts rename to app/node_modules/fdir/dist/index.d.ts diff --git a/node_modules/fdir/dist/index.js b/app/node_modules/fdir/dist/index.js similarity index 100% rename from node_modules/fdir/dist/index.js rename to app/node_modules/fdir/dist/index.js diff --git a/node_modules/fdir/dist/index.mjs b/app/node_modules/fdir/dist/index.mjs similarity index 100% rename from node_modules/fdir/dist/index.mjs rename to app/node_modules/fdir/dist/index.mjs diff --git a/node_modules/fdir/dist/types.d.ts b/app/node_modules/fdir/dist/types.d.ts similarity index 100% rename from node_modules/fdir/dist/types.d.ts rename to app/node_modules/fdir/dist/types.d.ts diff --git a/node_modules/fdir/dist/types.js b/app/node_modules/fdir/dist/types.js similarity index 100% rename from node_modules/fdir/dist/types.js rename to app/node_modules/fdir/dist/types.js diff --git a/node_modules/fdir/dist/utils.d.ts b/app/node_modules/fdir/dist/utils.d.ts similarity index 100% rename from node_modules/fdir/dist/utils.d.ts rename to app/node_modules/fdir/dist/utils.d.ts diff --git a/node_modules/fdir/dist/utils.js b/app/node_modules/fdir/dist/utils.js similarity index 100% rename from node_modules/fdir/dist/utils.js rename to app/node_modules/fdir/dist/utils.js diff --git a/node_modules/fdir/package.json b/app/node_modules/fdir/package.json similarity index 100% rename from node_modules/fdir/package.json rename to app/node_modules/fdir/package.json diff --git a/node_modules/nanoid/LICENSE b/app/node_modules/nanoid/LICENSE similarity index 100% rename from node_modules/nanoid/LICENSE rename to app/node_modules/nanoid/LICENSE diff --git a/node_modules/nanoid/README.md b/app/node_modules/nanoid/README.md similarity index 100% rename from node_modules/nanoid/README.md rename to app/node_modules/nanoid/README.md diff --git a/node_modules/nanoid/async/index.browser.cjs b/app/node_modules/nanoid/async/index.browser.cjs similarity index 100% rename from node_modules/nanoid/async/index.browser.cjs rename to app/node_modules/nanoid/async/index.browser.cjs diff --git a/node_modules/nanoid/async/index.browser.js b/app/node_modules/nanoid/async/index.browser.js similarity index 100% rename from node_modules/nanoid/async/index.browser.js rename to app/node_modules/nanoid/async/index.browser.js diff --git a/node_modules/nanoid/async/index.cjs b/app/node_modules/nanoid/async/index.cjs similarity index 100% rename from node_modules/nanoid/async/index.cjs rename to app/node_modules/nanoid/async/index.cjs diff --git a/node_modules/nanoid/async/index.d.ts b/app/node_modules/nanoid/async/index.d.ts similarity index 100% rename from node_modules/nanoid/async/index.d.ts rename to app/node_modules/nanoid/async/index.d.ts diff --git a/node_modules/nanoid/async/index.js b/app/node_modules/nanoid/async/index.js similarity index 100% rename from node_modules/nanoid/async/index.js rename to app/node_modules/nanoid/async/index.js diff --git a/node_modules/nanoid/async/index.native.js b/app/node_modules/nanoid/async/index.native.js similarity index 100% rename from node_modules/nanoid/async/index.native.js rename to app/node_modules/nanoid/async/index.native.js diff --git a/node_modules/nanoid/async/package.json b/app/node_modules/nanoid/async/package.json similarity index 100% rename from node_modules/nanoid/async/package.json rename to app/node_modules/nanoid/async/package.json diff --git a/node_modules/nanoid/bin/nanoid.cjs b/app/node_modules/nanoid/bin/nanoid.cjs similarity index 100% rename from node_modules/nanoid/bin/nanoid.cjs rename to app/node_modules/nanoid/bin/nanoid.cjs diff --git a/node_modules/nanoid/index.browser.cjs b/app/node_modules/nanoid/index.browser.cjs similarity index 100% rename from node_modules/nanoid/index.browser.cjs rename to app/node_modules/nanoid/index.browser.cjs diff --git a/node_modules/nanoid/index.browser.js b/app/node_modules/nanoid/index.browser.js similarity index 100% rename from node_modules/nanoid/index.browser.js rename to app/node_modules/nanoid/index.browser.js diff --git a/node_modules/nanoid/index.cjs b/app/node_modules/nanoid/index.cjs similarity index 100% rename from node_modules/nanoid/index.cjs rename to app/node_modules/nanoid/index.cjs diff --git a/node_modules/nanoid/index.d.cts b/app/node_modules/nanoid/index.d.cts similarity index 100% rename from node_modules/nanoid/index.d.cts rename to app/node_modules/nanoid/index.d.cts diff --git a/node_modules/nanoid/index.d.ts b/app/node_modules/nanoid/index.d.ts similarity index 100% rename from node_modules/nanoid/index.d.ts rename to app/node_modules/nanoid/index.d.ts diff --git a/node_modules/nanoid/index.js b/app/node_modules/nanoid/index.js similarity index 100% rename from node_modules/nanoid/index.js rename to app/node_modules/nanoid/index.js diff --git a/node_modules/nanoid/nanoid.js b/app/node_modules/nanoid/nanoid.js similarity index 100% rename from node_modules/nanoid/nanoid.js rename to app/node_modules/nanoid/nanoid.js diff --git a/node_modules/nanoid/non-secure/index.cjs b/app/node_modules/nanoid/non-secure/index.cjs similarity index 100% rename from node_modules/nanoid/non-secure/index.cjs rename to app/node_modules/nanoid/non-secure/index.cjs diff --git a/node_modules/nanoid/non-secure/index.d.ts b/app/node_modules/nanoid/non-secure/index.d.ts similarity index 100% rename from node_modules/nanoid/non-secure/index.d.ts rename to app/node_modules/nanoid/non-secure/index.d.ts diff --git a/node_modules/nanoid/non-secure/index.js b/app/node_modules/nanoid/non-secure/index.js similarity index 100% rename from node_modules/nanoid/non-secure/index.js rename to app/node_modules/nanoid/non-secure/index.js diff --git a/node_modules/nanoid/non-secure/package.json b/app/node_modules/nanoid/non-secure/package.json similarity index 100% rename from node_modules/nanoid/non-secure/package.json rename to app/node_modules/nanoid/non-secure/package.json diff --git a/node_modules/nanoid/package.json b/app/node_modules/nanoid/package.json similarity index 100% rename from node_modules/nanoid/package.json rename to app/node_modules/nanoid/package.json diff --git a/node_modules/nanoid/url-alphabet/index.cjs b/app/node_modules/nanoid/url-alphabet/index.cjs similarity index 100% rename from node_modules/nanoid/url-alphabet/index.cjs rename to app/node_modules/nanoid/url-alphabet/index.cjs diff --git a/node_modules/nanoid/url-alphabet/index.js b/app/node_modules/nanoid/url-alphabet/index.js similarity index 100% rename from node_modules/nanoid/url-alphabet/index.js rename to app/node_modules/nanoid/url-alphabet/index.js diff --git a/node_modules/nanoid/url-alphabet/package.json b/app/node_modules/nanoid/url-alphabet/package.json similarity index 100% rename from node_modules/nanoid/url-alphabet/package.json rename to app/node_modules/nanoid/url-alphabet/package.json diff --git a/node_modules/picocolors/LICENSE b/app/node_modules/picocolors/LICENSE similarity index 100% rename from node_modules/picocolors/LICENSE rename to app/node_modules/picocolors/LICENSE diff --git a/node_modules/picocolors/README.md b/app/node_modules/picocolors/README.md similarity index 100% rename from node_modules/picocolors/README.md rename to app/node_modules/picocolors/README.md diff --git a/node_modules/picocolors/package.json b/app/node_modules/picocolors/package.json similarity index 100% rename from node_modules/picocolors/package.json rename to app/node_modules/picocolors/package.json diff --git a/node_modules/picocolors/picocolors.browser.js b/app/node_modules/picocolors/picocolors.browser.js similarity index 100% rename from node_modules/picocolors/picocolors.browser.js rename to app/node_modules/picocolors/picocolors.browser.js diff --git a/node_modules/picocolors/picocolors.d.ts b/app/node_modules/picocolors/picocolors.d.ts similarity index 100% rename from node_modules/picocolors/picocolors.d.ts rename to app/node_modules/picocolors/picocolors.d.ts diff --git a/node_modules/picocolors/picocolors.js b/app/node_modules/picocolors/picocolors.js similarity index 100% rename from node_modules/picocolors/picocolors.js rename to app/node_modules/picocolors/picocolors.js diff --git a/node_modules/picocolors/types.d.ts b/app/node_modules/picocolors/types.d.ts similarity index 100% rename from node_modules/picocolors/types.d.ts rename to app/node_modules/picocolors/types.d.ts diff --git a/node_modules/picomatch/LICENSE b/app/node_modules/picomatch/LICENSE similarity index 100% rename from node_modules/picomatch/LICENSE rename to app/node_modules/picomatch/LICENSE diff --git a/node_modules/picomatch/README.md b/app/node_modules/picomatch/README.md similarity index 100% rename from node_modules/picomatch/README.md rename to app/node_modules/picomatch/README.md diff --git a/node_modules/picomatch/index.js b/app/node_modules/picomatch/index.js similarity index 100% rename from node_modules/picomatch/index.js rename to app/node_modules/picomatch/index.js diff --git a/node_modules/picomatch/lib/constants.js b/app/node_modules/picomatch/lib/constants.js similarity index 100% rename from node_modules/picomatch/lib/constants.js rename to app/node_modules/picomatch/lib/constants.js diff --git a/node_modules/picomatch/lib/parse.js b/app/node_modules/picomatch/lib/parse.js similarity index 100% rename from node_modules/picomatch/lib/parse.js rename to app/node_modules/picomatch/lib/parse.js diff --git a/node_modules/picomatch/lib/picomatch.js b/app/node_modules/picomatch/lib/picomatch.js similarity index 100% rename from node_modules/picomatch/lib/picomatch.js rename to app/node_modules/picomatch/lib/picomatch.js diff --git a/node_modules/picomatch/lib/scan.js b/app/node_modules/picomatch/lib/scan.js similarity index 100% rename from node_modules/picomatch/lib/scan.js rename to app/node_modules/picomatch/lib/scan.js diff --git a/node_modules/picomatch/lib/utils.js b/app/node_modules/picomatch/lib/utils.js similarity index 100% rename from node_modules/picomatch/lib/utils.js rename to app/node_modules/picomatch/lib/utils.js diff --git a/node_modules/picomatch/package.json b/app/node_modules/picomatch/package.json similarity index 100% rename from node_modules/picomatch/package.json rename to app/node_modules/picomatch/package.json diff --git a/node_modules/picomatch/posix.js b/app/node_modules/picomatch/posix.js similarity index 100% rename from node_modules/picomatch/posix.js rename to app/node_modules/picomatch/posix.js diff --git a/node_modules/postcss/LICENSE b/app/node_modules/postcss/LICENSE similarity index 100% rename from node_modules/postcss/LICENSE rename to app/node_modules/postcss/LICENSE diff --git a/node_modules/postcss/README.md b/app/node_modules/postcss/README.md similarity index 100% rename from node_modules/postcss/README.md rename to app/node_modules/postcss/README.md diff --git a/node_modules/postcss/lib/at-rule.d.ts b/app/node_modules/postcss/lib/at-rule.d.ts similarity index 100% rename from node_modules/postcss/lib/at-rule.d.ts rename to app/node_modules/postcss/lib/at-rule.d.ts diff --git a/node_modules/postcss/lib/at-rule.js b/app/node_modules/postcss/lib/at-rule.js similarity index 100% rename from node_modules/postcss/lib/at-rule.js rename to app/node_modules/postcss/lib/at-rule.js diff --git a/node_modules/postcss/lib/comment.d.ts b/app/node_modules/postcss/lib/comment.d.ts similarity index 100% rename from node_modules/postcss/lib/comment.d.ts rename to app/node_modules/postcss/lib/comment.d.ts diff --git a/node_modules/postcss/lib/comment.js b/app/node_modules/postcss/lib/comment.js similarity index 100% rename from node_modules/postcss/lib/comment.js rename to app/node_modules/postcss/lib/comment.js diff --git a/node_modules/postcss/lib/container.d.ts b/app/node_modules/postcss/lib/container.d.ts similarity index 100% rename from node_modules/postcss/lib/container.d.ts rename to app/node_modules/postcss/lib/container.d.ts diff --git a/node_modules/postcss/lib/container.js b/app/node_modules/postcss/lib/container.js similarity index 100% rename from node_modules/postcss/lib/container.js rename to app/node_modules/postcss/lib/container.js diff --git a/node_modules/postcss/lib/css-syntax-error.d.ts b/app/node_modules/postcss/lib/css-syntax-error.d.ts similarity index 100% rename from node_modules/postcss/lib/css-syntax-error.d.ts rename to app/node_modules/postcss/lib/css-syntax-error.d.ts diff --git a/node_modules/postcss/lib/css-syntax-error.js b/app/node_modules/postcss/lib/css-syntax-error.js similarity index 100% rename from node_modules/postcss/lib/css-syntax-error.js rename to app/node_modules/postcss/lib/css-syntax-error.js diff --git a/node_modules/postcss/lib/declaration.d.ts b/app/node_modules/postcss/lib/declaration.d.ts similarity index 100% rename from node_modules/postcss/lib/declaration.d.ts rename to app/node_modules/postcss/lib/declaration.d.ts diff --git a/node_modules/postcss/lib/declaration.js b/app/node_modules/postcss/lib/declaration.js similarity index 100% rename from node_modules/postcss/lib/declaration.js rename to app/node_modules/postcss/lib/declaration.js diff --git a/node_modules/postcss/lib/document.d.ts b/app/node_modules/postcss/lib/document.d.ts similarity index 100% rename from node_modules/postcss/lib/document.d.ts rename to app/node_modules/postcss/lib/document.d.ts diff --git a/node_modules/postcss/lib/document.js b/app/node_modules/postcss/lib/document.js similarity index 100% rename from node_modules/postcss/lib/document.js rename to app/node_modules/postcss/lib/document.js diff --git a/node_modules/postcss/lib/fromJSON.d.ts b/app/node_modules/postcss/lib/fromJSON.d.ts similarity index 100% rename from node_modules/postcss/lib/fromJSON.d.ts rename to app/node_modules/postcss/lib/fromJSON.d.ts diff --git a/node_modules/postcss/lib/fromJSON.js b/app/node_modules/postcss/lib/fromJSON.js similarity index 100% rename from node_modules/postcss/lib/fromJSON.js rename to app/node_modules/postcss/lib/fromJSON.js diff --git a/node_modules/postcss/lib/input.d.ts b/app/node_modules/postcss/lib/input.d.ts similarity index 100% rename from node_modules/postcss/lib/input.d.ts rename to app/node_modules/postcss/lib/input.d.ts diff --git a/node_modules/postcss/lib/input.js b/app/node_modules/postcss/lib/input.js similarity index 100% rename from node_modules/postcss/lib/input.js rename to app/node_modules/postcss/lib/input.js diff --git a/node_modules/postcss/lib/lazy-result.d.ts b/app/node_modules/postcss/lib/lazy-result.d.ts similarity index 100% rename from node_modules/postcss/lib/lazy-result.d.ts rename to app/node_modules/postcss/lib/lazy-result.d.ts diff --git a/node_modules/postcss/lib/lazy-result.js b/app/node_modules/postcss/lib/lazy-result.js similarity index 100% rename from node_modules/postcss/lib/lazy-result.js rename to app/node_modules/postcss/lib/lazy-result.js diff --git a/node_modules/postcss/lib/list.d.ts b/app/node_modules/postcss/lib/list.d.ts similarity index 100% rename from node_modules/postcss/lib/list.d.ts rename to app/node_modules/postcss/lib/list.d.ts diff --git a/node_modules/postcss/lib/list.js b/app/node_modules/postcss/lib/list.js similarity index 100% rename from node_modules/postcss/lib/list.js rename to app/node_modules/postcss/lib/list.js diff --git a/node_modules/postcss/lib/map-generator.js b/app/node_modules/postcss/lib/map-generator.js similarity index 100% rename from node_modules/postcss/lib/map-generator.js rename to app/node_modules/postcss/lib/map-generator.js diff --git a/node_modules/postcss/lib/no-work-result.d.ts b/app/node_modules/postcss/lib/no-work-result.d.ts similarity index 100% rename from node_modules/postcss/lib/no-work-result.d.ts rename to app/node_modules/postcss/lib/no-work-result.d.ts diff --git a/node_modules/postcss/lib/no-work-result.js b/app/node_modules/postcss/lib/no-work-result.js similarity index 100% rename from node_modules/postcss/lib/no-work-result.js rename to app/node_modules/postcss/lib/no-work-result.js diff --git a/node_modules/postcss/lib/node.d.ts b/app/node_modules/postcss/lib/node.d.ts similarity index 100% rename from node_modules/postcss/lib/node.d.ts rename to app/node_modules/postcss/lib/node.d.ts diff --git a/node_modules/postcss/lib/node.js b/app/node_modules/postcss/lib/node.js similarity index 100% rename from node_modules/postcss/lib/node.js rename to app/node_modules/postcss/lib/node.js diff --git a/node_modules/postcss/lib/parse.d.ts b/app/node_modules/postcss/lib/parse.d.ts similarity index 100% rename from node_modules/postcss/lib/parse.d.ts rename to app/node_modules/postcss/lib/parse.d.ts diff --git a/node_modules/postcss/lib/parse.js b/app/node_modules/postcss/lib/parse.js similarity index 100% rename from node_modules/postcss/lib/parse.js rename to app/node_modules/postcss/lib/parse.js diff --git a/node_modules/postcss/lib/parser.js b/app/node_modules/postcss/lib/parser.js similarity index 100% rename from node_modules/postcss/lib/parser.js rename to app/node_modules/postcss/lib/parser.js diff --git a/node_modules/postcss/lib/postcss.d.mts b/app/node_modules/postcss/lib/postcss.d.mts similarity index 100% rename from node_modules/postcss/lib/postcss.d.mts rename to app/node_modules/postcss/lib/postcss.d.mts diff --git a/node_modules/postcss/lib/postcss.d.ts b/app/node_modules/postcss/lib/postcss.d.ts similarity index 100% rename from node_modules/postcss/lib/postcss.d.ts rename to app/node_modules/postcss/lib/postcss.d.ts diff --git a/node_modules/postcss/lib/postcss.js b/app/node_modules/postcss/lib/postcss.js similarity index 100% rename from node_modules/postcss/lib/postcss.js rename to app/node_modules/postcss/lib/postcss.js diff --git a/node_modules/postcss/lib/postcss.mjs b/app/node_modules/postcss/lib/postcss.mjs similarity index 100% rename from node_modules/postcss/lib/postcss.mjs rename to app/node_modules/postcss/lib/postcss.mjs diff --git a/node_modules/postcss/lib/previous-map.d.ts b/app/node_modules/postcss/lib/previous-map.d.ts similarity index 100% rename from node_modules/postcss/lib/previous-map.d.ts rename to app/node_modules/postcss/lib/previous-map.d.ts diff --git a/node_modules/postcss/lib/previous-map.js b/app/node_modules/postcss/lib/previous-map.js similarity index 100% rename from node_modules/postcss/lib/previous-map.js rename to app/node_modules/postcss/lib/previous-map.js diff --git a/node_modules/postcss/lib/processor.d.ts b/app/node_modules/postcss/lib/processor.d.ts similarity index 100% rename from node_modules/postcss/lib/processor.d.ts rename to app/node_modules/postcss/lib/processor.d.ts diff --git a/node_modules/postcss/lib/processor.js b/app/node_modules/postcss/lib/processor.js similarity index 100% rename from node_modules/postcss/lib/processor.js rename to app/node_modules/postcss/lib/processor.js diff --git a/node_modules/postcss/lib/result.d.ts b/app/node_modules/postcss/lib/result.d.ts similarity index 100% rename from node_modules/postcss/lib/result.d.ts rename to app/node_modules/postcss/lib/result.d.ts diff --git a/node_modules/postcss/lib/result.js b/app/node_modules/postcss/lib/result.js similarity index 100% rename from node_modules/postcss/lib/result.js rename to app/node_modules/postcss/lib/result.js diff --git a/node_modules/postcss/lib/root.d.ts b/app/node_modules/postcss/lib/root.d.ts similarity index 100% rename from node_modules/postcss/lib/root.d.ts rename to app/node_modules/postcss/lib/root.d.ts diff --git a/node_modules/postcss/lib/root.js b/app/node_modules/postcss/lib/root.js similarity index 100% rename from node_modules/postcss/lib/root.js rename to app/node_modules/postcss/lib/root.js diff --git a/node_modules/postcss/lib/rule.d.ts b/app/node_modules/postcss/lib/rule.d.ts similarity index 100% rename from node_modules/postcss/lib/rule.d.ts rename to app/node_modules/postcss/lib/rule.d.ts diff --git a/node_modules/postcss/lib/rule.js b/app/node_modules/postcss/lib/rule.js similarity index 100% rename from node_modules/postcss/lib/rule.js rename to app/node_modules/postcss/lib/rule.js diff --git a/node_modules/postcss/lib/stringifier.d.ts b/app/node_modules/postcss/lib/stringifier.d.ts similarity index 100% rename from node_modules/postcss/lib/stringifier.d.ts rename to app/node_modules/postcss/lib/stringifier.d.ts diff --git a/node_modules/postcss/lib/stringifier.js b/app/node_modules/postcss/lib/stringifier.js similarity index 100% rename from node_modules/postcss/lib/stringifier.js rename to app/node_modules/postcss/lib/stringifier.js diff --git a/node_modules/postcss/lib/stringify.d.ts b/app/node_modules/postcss/lib/stringify.d.ts similarity index 100% rename from node_modules/postcss/lib/stringify.d.ts rename to app/node_modules/postcss/lib/stringify.d.ts diff --git a/node_modules/postcss/lib/stringify.js b/app/node_modules/postcss/lib/stringify.js similarity index 100% rename from node_modules/postcss/lib/stringify.js rename to app/node_modules/postcss/lib/stringify.js diff --git a/node_modules/postcss/lib/symbols.js b/app/node_modules/postcss/lib/symbols.js similarity index 100% rename from node_modules/postcss/lib/symbols.js rename to app/node_modules/postcss/lib/symbols.js diff --git a/node_modules/postcss/lib/terminal-highlight.js b/app/node_modules/postcss/lib/terminal-highlight.js similarity index 100% rename from node_modules/postcss/lib/terminal-highlight.js rename to app/node_modules/postcss/lib/terminal-highlight.js diff --git a/node_modules/postcss/lib/tokenize.js b/app/node_modules/postcss/lib/tokenize.js similarity index 100% rename from node_modules/postcss/lib/tokenize.js rename to app/node_modules/postcss/lib/tokenize.js diff --git a/node_modules/postcss/lib/warn-once.js b/app/node_modules/postcss/lib/warn-once.js similarity index 100% rename from node_modules/postcss/lib/warn-once.js rename to app/node_modules/postcss/lib/warn-once.js diff --git a/node_modules/postcss/lib/warning.d.ts b/app/node_modules/postcss/lib/warning.d.ts similarity index 100% rename from node_modules/postcss/lib/warning.d.ts rename to app/node_modules/postcss/lib/warning.d.ts diff --git a/node_modules/postcss/lib/warning.js b/app/node_modules/postcss/lib/warning.js similarity index 100% rename from node_modules/postcss/lib/warning.js rename to app/node_modules/postcss/lib/warning.js diff --git a/node_modules/postcss/package.json b/app/node_modules/postcss/package.json similarity index 100% rename from node_modules/postcss/package.json rename to app/node_modules/postcss/package.json diff --git a/node_modules/rollup/LICENSE.md b/app/node_modules/rollup/LICENSE.md similarity index 100% rename from node_modules/rollup/LICENSE.md rename to app/node_modules/rollup/LICENSE.md diff --git a/node_modules/rollup/README.md b/app/node_modules/rollup/README.md similarity index 100% rename from node_modules/rollup/README.md rename to app/node_modules/rollup/README.md diff --git a/node_modules/rollup/dist/bin/rollup b/app/node_modules/rollup/dist/bin/rollup similarity index 100% rename from node_modules/rollup/dist/bin/rollup rename to app/node_modules/rollup/dist/bin/rollup diff --git a/node_modules/rollup/dist/es/getLogFilter.js b/app/node_modules/rollup/dist/es/getLogFilter.js similarity index 100% rename from node_modules/rollup/dist/es/getLogFilter.js rename to app/node_modules/rollup/dist/es/getLogFilter.js diff --git a/node_modules/rollup/dist/es/package.json b/app/node_modules/rollup/dist/es/package.json similarity index 100% rename from node_modules/rollup/dist/es/package.json rename to app/node_modules/rollup/dist/es/package.json diff --git a/node_modules/rollup/dist/es/parseAst.js b/app/node_modules/rollup/dist/es/parseAst.js similarity index 100% rename from node_modules/rollup/dist/es/parseAst.js rename to app/node_modules/rollup/dist/es/parseAst.js diff --git a/node_modules/rollup/dist/es/rollup.js b/app/node_modules/rollup/dist/es/rollup.js similarity index 100% rename from node_modules/rollup/dist/es/rollup.js rename to app/node_modules/rollup/dist/es/rollup.js diff --git a/node_modules/rollup/dist/es/shared/node-entry.js b/app/node_modules/rollup/dist/es/shared/node-entry.js similarity index 100% rename from node_modules/rollup/dist/es/shared/node-entry.js rename to app/node_modules/rollup/dist/es/shared/node-entry.js diff --git a/node_modules/rollup/dist/es/shared/parseAst.js b/app/node_modules/rollup/dist/es/shared/parseAst.js similarity index 100% rename from node_modules/rollup/dist/es/shared/parseAst.js rename to app/node_modules/rollup/dist/es/shared/parseAst.js diff --git a/node_modules/rollup/dist/es/shared/watch.js b/app/node_modules/rollup/dist/es/shared/watch.js similarity index 100% rename from node_modules/rollup/dist/es/shared/watch.js rename to app/node_modules/rollup/dist/es/shared/watch.js diff --git a/node_modules/rollup/dist/getLogFilter.d.ts b/app/node_modules/rollup/dist/getLogFilter.d.ts similarity index 100% rename from node_modules/rollup/dist/getLogFilter.d.ts rename to app/node_modules/rollup/dist/getLogFilter.d.ts diff --git a/node_modules/rollup/dist/getLogFilter.js b/app/node_modules/rollup/dist/getLogFilter.js similarity index 100% rename from node_modules/rollup/dist/getLogFilter.js rename to app/node_modules/rollup/dist/getLogFilter.js diff --git a/node_modules/rollup/dist/loadConfigFile.d.ts b/app/node_modules/rollup/dist/loadConfigFile.d.ts similarity index 100% rename from node_modules/rollup/dist/loadConfigFile.d.ts rename to app/node_modules/rollup/dist/loadConfigFile.d.ts diff --git a/node_modules/rollup/dist/loadConfigFile.js b/app/node_modules/rollup/dist/loadConfigFile.js similarity index 100% rename from node_modules/rollup/dist/loadConfigFile.js rename to app/node_modules/rollup/dist/loadConfigFile.js diff --git a/node_modules/rollup/dist/native.js b/app/node_modules/rollup/dist/native.js similarity index 100% rename from node_modules/rollup/dist/native.js rename to app/node_modules/rollup/dist/native.js diff --git a/node_modules/rollup/dist/parseAst.d.ts b/app/node_modules/rollup/dist/parseAst.d.ts similarity index 100% rename from node_modules/rollup/dist/parseAst.d.ts rename to app/node_modules/rollup/dist/parseAst.d.ts diff --git a/node_modules/rollup/dist/parseAst.js b/app/node_modules/rollup/dist/parseAst.js similarity index 100% rename from node_modules/rollup/dist/parseAst.js rename to app/node_modules/rollup/dist/parseAst.js diff --git a/node_modules/rollup/dist/rollup.d.ts b/app/node_modules/rollup/dist/rollup.d.ts similarity index 100% rename from node_modules/rollup/dist/rollup.d.ts rename to app/node_modules/rollup/dist/rollup.d.ts diff --git a/node_modules/rollup/dist/rollup.js b/app/node_modules/rollup/dist/rollup.js similarity index 100% rename from node_modules/rollup/dist/rollup.js rename to app/node_modules/rollup/dist/rollup.js diff --git a/node_modules/rollup/dist/shared/fsevents-importer.js b/app/node_modules/rollup/dist/shared/fsevents-importer.js similarity index 100% rename from node_modules/rollup/dist/shared/fsevents-importer.js rename to app/node_modules/rollup/dist/shared/fsevents-importer.js diff --git a/node_modules/rollup/dist/shared/index.js b/app/node_modules/rollup/dist/shared/index.js similarity index 100% rename from node_modules/rollup/dist/shared/index.js rename to app/node_modules/rollup/dist/shared/index.js diff --git a/node_modules/rollup/dist/shared/loadConfigFile.js b/app/node_modules/rollup/dist/shared/loadConfigFile.js similarity index 100% rename from node_modules/rollup/dist/shared/loadConfigFile.js rename to app/node_modules/rollup/dist/shared/loadConfigFile.js diff --git a/node_modules/rollup/dist/shared/parseAst.js b/app/node_modules/rollup/dist/shared/parseAst.js similarity index 100% rename from node_modules/rollup/dist/shared/parseAst.js rename to app/node_modules/rollup/dist/shared/parseAst.js diff --git a/node_modules/rollup/dist/shared/rollup.js b/app/node_modules/rollup/dist/shared/rollup.js similarity index 100% rename from node_modules/rollup/dist/shared/rollup.js rename to app/node_modules/rollup/dist/shared/rollup.js diff --git a/node_modules/rollup/dist/shared/watch-cli.js b/app/node_modules/rollup/dist/shared/watch-cli.js similarity index 100% rename from node_modules/rollup/dist/shared/watch-cli.js rename to app/node_modules/rollup/dist/shared/watch-cli.js diff --git a/node_modules/rollup/dist/shared/watch.js b/app/node_modules/rollup/dist/shared/watch.js similarity index 100% rename from node_modules/rollup/dist/shared/watch.js rename to app/node_modules/rollup/dist/shared/watch.js diff --git a/node_modules/rollup/package.json b/app/node_modules/rollup/package.json similarity index 100% rename from node_modules/rollup/package.json rename to app/node_modules/rollup/package.json diff --git a/node_modules/source-map-js/LICENSE b/app/node_modules/source-map-js/LICENSE similarity index 100% rename from node_modules/source-map-js/LICENSE rename to app/node_modules/source-map-js/LICENSE diff --git a/node_modules/source-map-js/README.md b/app/node_modules/source-map-js/README.md similarity index 100% rename from node_modules/source-map-js/README.md rename to app/node_modules/source-map-js/README.md diff --git a/node_modules/source-map-js/lib/array-set.js b/app/node_modules/source-map-js/lib/array-set.js similarity index 100% rename from node_modules/source-map-js/lib/array-set.js rename to app/node_modules/source-map-js/lib/array-set.js diff --git a/node_modules/source-map-js/lib/base64-vlq.js b/app/node_modules/source-map-js/lib/base64-vlq.js similarity index 100% rename from node_modules/source-map-js/lib/base64-vlq.js rename to app/node_modules/source-map-js/lib/base64-vlq.js diff --git a/node_modules/source-map-js/lib/base64.js b/app/node_modules/source-map-js/lib/base64.js similarity index 100% rename from node_modules/source-map-js/lib/base64.js rename to app/node_modules/source-map-js/lib/base64.js diff --git a/node_modules/source-map-js/lib/binary-search.js b/app/node_modules/source-map-js/lib/binary-search.js similarity index 100% rename from node_modules/source-map-js/lib/binary-search.js rename to app/node_modules/source-map-js/lib/binary-search.js diff --git a/node_modules/source-map-js/lib/mapping-list.js b/app/node_modules/source-map-js/lib/mapping-list.js similarity index 100% rename from node_modules/source-map-js/lib/mapping-list.js rename to app/node_modules/source-map-js/lib/mapping-list.js diff --git a/node_modules/source-map-js/lib/quick-sort.js b/app/node_modules/source-map-js/lib/quick-sort.js similarity index 100% rename from node_modules/source-map-js/lib/quick-sort.js rename to app/node_modules/source-map-js/lib/quick-sort.js diff --git a/node_modules/source-map-js/lib/source-map-consumer.d.ts b/app/node_modules/source-map-js/lib/source-map-consumer.d.ts similarity index 100% rename from node_modules/source-map-js/lib/source-map-consumer.d.ts rename to app/node_modules/source-map-js/lib/source-map-consumer.d.ts diff --git a/node_modules/source-map-js/lib/source-map-consumer.js b/app/node_modules/source-map-js/lib/source-map-consumer.js similarity index 100% rename from node_modules/source-map-js/lib/source-map-consumer.js rename to app/node_modules/source-map-js/lib/source-map-consumer.js diff --git a/node_modules/source-map-js/lib/source-map-generator.d.ts b/app/node_modules/source-map-js/lib/source-map-generator.d.ts similarity index 100% rename from node_modules/source-map-js/lib/source-map-generator.d.ts rename to app/node_modules/source-map-js/lib/source-map-generator.d.ts diff --git a/node_modules/source-map-js/lib/source-map-generator.js b/app/node_modules/source-map-js/lib/source-map-generator.js similarity index 100% rename from node_modules/source-map-js/lib/source-map-generator.js rename to app/node_modules/source-map-js/lib/source-map-generator.js diff --git a/node_modules/source-map-js/lib/source-node.d.ts b/app/node_modules/source-map-js/lib/source-node.d.ts similarity index 100% rename from node_modules/source-map-js/lib/source-node.d.ts rename to app/node_modules/source-map-js/lib/source-node.d.ts diff --git a/node_modules/source-map-js/lib/source-node.js b/app/node_modules/source-map-js/lib/source-node.js similarity index 100% rename from node_modules/source-map-js/lib/source-node.js rename to app/node_modules/source-map-js/lib/source-node.js diff --git a/node_modules/source-map-js/lib/util.js b/app/node_modules/source-map-js/lib/util.js similarity index 100% rename from node_modules/source-map-js/lib/util.js rename to app/node_modules/source-map-js/lib/util.js diff --git a/node_modules/source-map-js/package.json b/app/node_modules/source-map-js/package.json similarity index 100% rename from node_modules/source-map-js/package.json rename to app/node_modules/source-map-js/package.json diff --git a/node_modules/source-map-js/source-map.d.ts b/app/node_modules/source-map-js/source-map.d.ts similarity index 100% rename from node_modules/source-map-js/source-map.d.ts rename to app/node_modules/source-map-js/source-map.d.ts diff --git a/node_modules/source-map-js/source-map.js b/app/node_modules/source-map-js/source-map.js similarity index 100% rename from node_modules/source-map-js/source-map.js rename to app/node_modules/source-map-js/source-map.js diff --git a/node_modules/tinyglobby/LICENSE b/app/node_modules/tinyglobby/LICENSE similarity index 100% rename from node_modules/tinyglobby/LICENSE rename to app/node_modules/tinyglobby/LICENSE diff --git a/node_modules/tinyglobby/README.md b/app/node_modules/tinyglobby/README.md similarity index 100% rename from node_modules/tinyglobby/README.md rename to app/node_modules/tinyglobby/README.md diff --git a/node_modules/tinyglobby/dist/index.d.mts b/app/node_modules/tinyglobby/dist/index.d.mts similarity index 100% rename from node_modules/tinyglobby/dist/index.d.mts rename to app/node_modules/tinyglobby/dist/index.d.mts diff --git a/node_modules/tinyglobby/dist/index.d.ts b/app/node_modules/tinyglobby/dist/index.d.ts similarity index 100% rename from node_modules/tinyglobby/dist/index.d.ts rename to app/node_modules/tinyglobby/dist/index.d.ts diff --git a/node_modules/tinyglobby/dist/index.js b/app/node_modules/tinyglobby/dist/index.js similarity index 100% rename from node_modules/tinyglobby/dist/index.js rename to app/node_modules/tinyglobby/dist/index.js diff --git a/node_modules/tinyglobby/dist/index.mjs b/app/node_modules/tinyglobby/dist/index.mjs similarity index 100% rename from node_modules/tinyglobby/dist/index.mjs rename to app/node_modules/tinyglobby/dist/index.mjs diff --git a/node_modules/tinyglobby/package.json b/app/node_modules/tinyglobby/package.json similarity index 100% rename from node_modules/tinyglobby/package.json rename to app/node_modules/tinyglobby/package.json diff --git a/node_modules/vite/LICENSE.md b/app/node_modules/vite/LICENSE.md similarity index 100% rename from node_modules/vite/LICENSE.md rename to app/node_modules/vite/LICENSE.md diff --git a/node_modules/vite/README.md b/app/node_modules/vite/README.md similarity index 100% rename from node_modules/vite/README.md rename to app/node_modules/vite/README.md diff --git a/node_modules/vite/bin/openChrome.applescript b/app/node_modules/vite/bin/openChrome.applescript similarity index 100% rename from node_modules/vite/bin/openChrome.applescript rename to app/node_modules/vite/bin/openChrome.applescript diff --git a/node_modules/vite/bin/vite.js b/app/node_modules/vite/bin/vite.js similarity index 100% rename from node_modules/vite/bin/vite.js rename to app/node_modules/vite/bin/vite.js diff --git a/node_modules/vite/client.d.ts b/app/node_modules/vite/client.d.ts similarity index 100% rename from node_modules/vite/client.d.ts rename to app/node_modules/vite/client.d.ts diff --git a/node_modules/vite/dist/client/client.mjs b/app/node_modules/vite/dist/client/client.mjs similarity index 100% rename from node_modules/vite/dist/client/client.mjs rename to app/node_modules/vite/dist/client/client.mjs diff --git a/node_modules/vite/dist/client/env.mjs b/app/node_modules/vite/dist/client/env.mjs similarity index 100% rename from node_modules/vite/dist/client/env.mjs rename to app/node_modules/vite/dist/client/env.mjs diff --git a/node_modules/vite/dist/node-cjs/publicUtils.cjs b/app/node_modules/vite/dist/node-cjs/publicUtils.cjs similarity index 100% rename from node_modules/vite/dist/node-cjs/publicUtils.cjs rename to app/node_modules/vite/dist/node-cjs/publicUtils.cjs diff --git a/node_modules/vite/dist/node/chunks/dep-3RmXg9uo.js b/app/node_modules/vite/dist/node/chunks/dep-3RmXg9uo.js similarity index 100% rename from node_modules/vite/dist/node/chunks/dep-3RmXg9uo.js rename to app/node_modules/vite/dist/node/chunks/dep-3RmXg9uo.js diff --git a/node_modules/vite/dist/node/chunks/dep-AiMcmC_f.js b/app/node_modules/vite/dist/node/chunks/dep-AiMcmC_f.js similarity index 100% rename from node_modules/vite/dist/node/chunks/dep-AiMcmC_f.js rename to app/node_modules/vite/dist/node/chunks/dep-AiMcmC_f.js diff --git a/node_modules/vite/dist/node/chunks/dep-CvfTChi5.js b/app/node_modules/vite/dist/node/chunks/dep-CvfTChi5.js similarity index 100% rename from node_modules/vite/dist/node/chunks/dep-CvfTChi5.js rename to app/node_modules/vite/dist/node/chunks/dep-CvfTChi5.js diff --git a/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js b/app/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js similarity index 100% rename from node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js rename to app/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js diff --git a/node_modules/vite/dist/node/chunks/dep-SgSik2vo.js b/app/node_modules/vite/dist/node/chunks/dep-SgSik2vo.js similarity index 100% rename from node_modules/vite/dist/node/chunks/dep-SgSik2vo.js rename to app/node_modules/vite/dist/node/chunks/dep-SgSik2vo.js diff --git a/node_modules/vite/dist/node/cli.js b/app/node_modules/vite/dist/node/cli.js similarity index 100% rename from node_modules/vite/dist/node/cli.js rename to app/node_modules/vite/dist/node/cli.js diff --git a/node_modules/vite/dist/node/constants.js b/app/node_modules/vite/dist/node/constants.js similarity index 100% rename from node_modules/vite/dist/node/constants.js rename to app/node_modules/vite/dist/node/constants.js diff --git a/node_modules/vite/dist/node/index.d.ts b/app/node_modules/vite/dist/node/index.d.ts similarity index 100% rename from node_modules/vite/dist/node/index.d.ts rename to app/node_modules/vite/dist/node/index.d.ts diff --git a/node_modules/vite/dist/node/index.js b/app/node_modules/vite/dist/node/index.js similarity index 100% rename from node_modules/vite/dist/node/index.js rename to app/node_modules/vite/dist/node/index.js diff --git a/node_modules/vite/dist/node/module-runner.d.ts b/app/node_modules/vite/dist/node/module-runner.d.ts similarity index 100% rename from node_modules/vite/dist/node/module-runner.d.ts rename to app/node_modules/vite/dist/node/module-runner.d.ts diff --git a/node_modules/vite/dist/node/module-runner.js b/app/node_modules/vite/dist/node/module-runner.js similarity index 100% rename from node_modules/vite/dist/node/module-runner.js rename to app/node_modules/vite/dist/node/module-runner.js diff --git a/node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts b/app/node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts similarity index 100% rename from node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts rename to app/node_modules/vite/dist/node/moduleRunnerTransport.d-DJ_mE5sf.d.ts diff --git a/node_modules/vite/index.cjs b/app/node_modules/vite/index.cjs similarity index 100% rename from node_modules/vite/index.cjs rename to app/node_modules/vite/index.cjs diff --git a/node_modules/vite/index.d.cts b/app/node_modules/vite/index.d.cts similarity index 100% rename from node_modules/vite/index.d.cts rename to app/node_modules/vite/index.d.cts diff --git a/node_modules/vite/misc/false.js b/app/node_modules/vite/misc/false.js similarity index 100% rename from node_modules/vite/misc/false.js rename to app/node_modules/vite/misc/false.js diff --git a/node_modules/vite/misc/true.js b/app/node_modules/vite/misc/true.js similarity index 100% rename from node_modules/vite/misc/true.js rename to app/node_modules/vite/misc/true.js diff --git a/node_modules/vite/package.json b/app/node_modules/vite/package.json similarity index 100% rename from node_modules/vite/package.json rename to app/node_modules/vite/package.json diff --git a/node_modules/vite/types/customEvent.d.ts b/app/node_modules/vite/types/customEvent.d.ts similarity index 100% rename from node_modules/vite/types/customEvent.d.ts rename to app/node_modules/vite/types/customEvent.d.ts diff --git a/node_modules/vite/types/hmrPayload.d.ts b/app/node_modules/vite/types/hmrPayload.d.ts similarity index 100% rename from node_modules/vite/types/hmrPayload.d.ts rename to app/node_modules/vite/types/hmrPayload.d.ts diff --git a/node_modules/vite/types/hot.d.ts b/app/node_modules/vite/types/hot.d.ts similarity index 100% rename from node_modules/vite/types/hot.d.ts rename to app/node_modules/vite/types/hot.d.ts diff --git a/node_modules/vite/types/import-meta.d.ts b/app/node_modules/vite/types/import-meta.d.ts similarity index 100% rename from node_modules/vite/types/import-meta.d.ts rename to app/node_modules/vite/types/import-meta.d.ts diff --git a/node_modules/vite/types/importGlob.d.ts b/app/node_modules/vite/types/importGlob.d.ts similarity index 100% rename from node_modules/vite/types/importGlob.d.ts rename to app/node_modules/vite/types/importGlob.d.ts diff --git a/node_modules/vite/types/importMeta.d.ts b/app/node_modules/vite/types/importMeta.d.ts similarity index 100% rename from node_modules/vite/types/importMeta.d.ts rename to app/node_modules/vite/types/importMeta.d.ts diff --git a/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts b/app/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts similarity index 100% rename from node_modules/vite/types/internal/cssPreprocessorOptions.d.ts rename to app/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts diff --git a/node_modules/vite/types/internal/lightningcssOptions.d.ts b/app/node_modules/vite/types/internal/lightningcssOptions.d.ts similarity index 100% rename from node_modules/vite/types/internal/lightningcssOptions.d.ts rename to app/node_modules/vite/types/internal/lightningcssOptions.d.ts diff --git a/node_modules/vite/types/metadata.d.ts b/app/node_modules/vite/types/metadata.d.ts similarity index 100% rename from node_modules/vite/types/metadata.d.ts rename to app/node_modules/vite/types/metadata.d.ts diff --git a/node_modules/vite/types/package.json b/app/node_modules/vite/types/package.json similarity index 100% rename from node_modules/vite/types/package.json rename to app/node_modules/vite/types/package.json diff --git a/package-lock.json b/app/package-lock.json similarity index 100% rename from package-lock.json rename to app/package-lock.json diff --git a/package.json b/app/package.json similarity index 100% rename from package.json rename to app/package.json diff --git a/src/main.js b/app/src/main.js similarity index 100% rename from src/main.js rename to app/src/main.js diff --git a/src/style.css b/app/src/style.css similarity index 100% rename from src/style.css rename to app/src/style.css diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..cdab4b6 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,14 @@ +version: '3.9' + +services: + dwinzo-website: + build: + context: ./app + dockerfile: Dockerfile + image: ramkumar/hexrfactoryinternalportal:latest + container_name: HexrinternalEcosystem + ports: + - "9940:80" + restart: unless-stopped + expose: + - "80" \ No newline at end of file