stock-exporter/package.json
ztimson a5f809eca5
All checks were successful
Build and publish / Git Tag (push) Successful in 3s
Build and publish / Build Container (push) Successful in 19s
Finalizing
2025-04-17 12:08:52 -04:00

28 lines
623 B
JSON

{
"name": "stock-exporter",
"version": "1.0.0",
"description": "Export stock prices to prometheus",
"main": "main.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts"
},
"author": "ztimson",
"license": "MIT",
"dependencies": {
"@ztimson/utils": "^0.23.22",
"compression": "^1.7.5",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.13.0",
"ts-node": "^11.0.0-beta.1",
"typescript": "^5.8.3"
}
}