created basic project structure

This commit is contained in:
Roger Oriol
2025-10-05 10:52:44 +02:00
commit a1cede4157
14 changed files with 1585 additions and 0 deletions

16
backend/package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "gym-tracker-back",
"version": "1.0.0",
"description": "Gym tracker application back-end",
"license": "ISC",
"author": "Roger Oriol",
"type": "commonjs",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"dependencies": {
"express": "^5.1.0"
}
}