This commit is contained in:
2024-09-27 22:24:33 -04:00
parent 7f6116450f
commit bb60182164
58 changed files with 2414 additions and 681 deletions

19
server/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "fibonacci-fold-server",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"crypto-js": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^2.3.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"uuid": "^10.0.0"
}
}