grafana-to-ntfy/package.json
Sébastien CUVELLIER acdc9a13d1 🐛 Bug fix
2023-07-06 22:35:02 +00:00

39 lines
1,005 B
JSON

{
"name": "grafana-to-ntfy",
"version": "1.0.0",
"description": "Bridge between Grafana and Ntfy",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"docker-dev": "docker-compose -f docker-compose.dev.yml up --build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/Saibe1111/grafana-to-ntfy.git"
},
"keywords": [
"Grafana",
"Ntfy"
],
"author": "Sébastien C.",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/Saibe1111/grafana-to-ntfy/issues"
},
"homepage": "https://gitlab.com/Saibe1111/grafana-to-ntfy#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"tslib": "^2.6.0"
}
}