Initial commit: Gravl MVP med onboarding

This commit is contained in:
2026-01-31 23:33:20 +01:00
commit 13ade5e903
21 changed files with 5157 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "gravl-backend",
"version": "1.0.0",
"description": "Gravl Training App Backend",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}