initial server set up and read me file

This commit is contained in:
Mann Patel
2025-01-30 13:29:13 -07:00
parent 9097c20055
commit 3499f80d9c
5 changed files with 1045 additions and 1 deletions

20
server/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mysql2": "^3.12.0"
}
}