Files
chat/package.json
dependabot[bot] 9074547cbf Bump ejs from 3.1.3 to 3.1.7
Bumps [ejs](https://github.com/mde/ejs) from 3.1.3 to 3.1.7.
- [Release notes](https://github.com/mde/ejs/releases)
- [Changelog](https://github.com/mde/ejs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/mde/ejs/compare/v3.1.3...v3.1.7)

---
updated-dependencies:
- dependency-name: ejs
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-12 17:55:02 +00:00

24 lines
584 B
JSON

{
"name": "chat",
"version": "1.0.0",
"description": "Realtime Chat",
"repository": "https://github.com/GuilhermeWerner/Chat",
"author": "GuiNerd <guinerdinho@gmail.com>",
"license": "MIT",
"private": true,
"main": "./Source/Server.js",
"scripts": {
"start": "node ./Source/Server.js",
"dev": "nodemon ./Source/Server.js"
},
"dependencies": {
"dotenv": "^8.2.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"socket.io": "^2.4.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}