From a46f2f19fd0f6919cdb80bf6cee0d41afd668759 Mon Sep 17 00:00:00 2001 From: Vlad Date: Fri, 2 May 2025 12:12:28 +0300 Subject: [PATCH] feat: add package.json and .gitignore for Bootstrap 5 migration - Add package.json with Bootstrap 5 and Popper.js dependencies - Add .gitignore to exclude node_modules and Python cache files --- .gitignore | 6 ++++-- package.json | 9 +++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 1bbb861..75c0564 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ -__pycache__ -logs \ No newline at end of file +__pycache__/ +*.pyc +logs +node_modules/ \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..0a48340 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "name": "salvagedb-web", + "version": "1.0.0", + "description": "SalvageDB Web Application", + "dependencies": { + "bootstrap": "^5.3.2", + "@popperjs/core": "^2.11.8" + } +} \ No newline at end of file