fix: correct script section formatting in package.json

This commit is contained in:
2025-06-09 12:10:37 -03:00
parent 06b3e09051
commit 6316a59170

View File

@@ -4,6 +4,7 @@
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"keywords": [], "keywords": [],
@@ -15,8 +16,5 @@
"dotenv": "^16.5.0", "dotenv": "^16.5.0",
"express": "^5.1.0", "express": "^5.1.0",
"nodemailer": "^7.0.3" "nodemailer": "^7.0.3"
}, "scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
} }
} }