Files

44 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2026-04-27 12:37:01 +02:00
{
"name": "sf-monitorizacion-health",
"version": "1.0.0",
"description": "",
"type": "module",
2026-04-27 12:37:01 +02:00
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
2026-05-06 11:10:35 +02:00
"build:esbuild": "esbuild --bundle src/index.ts --outdir=dist --platform=node --format=esm --packages=external && cp -r src/views dist/ ",
"start": "node dist/index.js",
"migrate": "db-migrate -e .env -m ./deployment/database/migrations/ -t 99.0.0",
2026-04-27 12:37:01 +02:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.savefamilygps.net:SaveFamily/sf-monitorizacion-health.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
2026-05-06 11:10:35 +02:00
"@sf-alvar/db-migrate": "^1.0.12",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
2026-04-27 12:37:01 +02:00
"typescript": "^6.0.3"
},
"dependencies": {
"axios": "^1.15.2",
"dotenv": "^17.4.2",
"ejs": "^5.0.2",
2026-04-27 12:37:01 +02:00
"express": "^5.2.1",
"pg": "^8.20.0",
2026-04-27 12:37:01 +02:00
"tsx": "^4.21.0"
}
2026-05-04 16:29:27 +02:00
}