This commit is contained in:
2025-05-29 16:39:53 -04:00
commit 1a364391d1
15 changed files with 2355 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "PointTracker",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.6.1",
"cors": "^2.8.5",
"bcrypt": "^5.1.1"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}