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

This commit is contained in:
Vlad 2025-05-02 12:12:28 +03:00
parent 3175dbc0fe
commit a46f2f19fd
2 changed files with 13 additions and 2 deletions

4
.gitignore vendored
View File

@ -1,2 +1,4 @@
__pycache__
__pycache__/
*.pyc
logs
node_modules/

9
package.json Normal file
View File

@ -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"
}
}