Initial commit

This commit is contained in:
Tiago
2025-11-29 21:18:53 -03:00
commit 86d13bee5d
14 changed files with 4216 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "agenda-dashboard",
"version": "0.1.0",
"private": true,
"description": "Node + React dashboard para clínicas odontológicas com SQLite e Docker.",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "node server/index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.11.3"
},
"type": "commonjs"
}