Actualizar package.json

This commit is contained in:
marsalva 2026-02-04 23:17:14 +00:00
parent 7f3fd7619a
commit 80e1e62094
1 changed files with 13 additions and 11 deletions

View File

@ -1,13 +1,15 @@
{ {
"schemaVersion": 2, "name": "marsalva-backend",
"version": "1.0.0",
"dockerfileLines": [ "main": "server.js",
"FROM node:20-alpine", "scripts": {
"WORKDIR /app", "start": "node server.js"
"COPY package*.json ./", },
"RUN npm install", "dependencies": {
"COPY . .", "cors": "^2.8.5",
"EXPOSE 10000", "express": "^4.19.2",
"CMD [\"npm\", \"start\"]" "firebase-admin": "^12.0.0",
] "jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2"
}
} }