Inclusão de dotenv, nodemon e arquivo server.js

This commit is contained in:
Joao Maria Araujo do Nascimento
2026-05-14 22:01:16 -03:00
parent 3998ca6d26
commit a746e5b6a9
4 changed files with 345 additions and 8 deletions
+5 -3
View File
@@ -3,15 +3,17 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"type":"module",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"mysql2": "^3.22.3"
"mysql2": "^3.22.3",
"nodemon": "^3.1.14"
}
}