Skip to content

Commit

Permalink
Add base functions for matching service
Browse files Browse the repository at this point in the history
  • Loading branch information
delishad21 committed Sep 9, 2024
1 parent 33d1496 commit 54594a6
Show file tree
Hide file tree
Showing 11 changed files with 457 additions and 64 deletions.
250 changes: 247 additions & 3 deletions matching-service/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 13 additions & 12 deletions matching-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@
"description": "",
"main": "dist/server.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
"build": "npx tsc",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2"
"dotenv": "^16.4.5",
"express": "^4.19.2",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}
}
Loading

0 comments on commit 54594a6

Please sign in to comment.