Files
bikelane/backend/package.json
theis.gaedigk c2a035ca34 added dependecies to later create the jwt token.
Those I have installed with npm, to be more specific with: npm install express cookie-parser body-parser jose
2025-07-22 17:05:41 +02:00

25 lines
499 B
JSON

{
"name": "backend",
"version": "1.0.0",
"main": "server.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"body-parser": "^2.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"jose": "^6.0.12",
"mysql2": "^3.14.2"
}
}