grafana-to-ntfy/package.json

40 lines
973 B
JSON
Raw Normal View History

2023-03-11 17:33:00 +01:00
{
"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",
2023-03-11 19:32:24 +01:00
"build": "tsc",
2023-07-08 00:28:51 +02:00
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
2023-03-11 17:33:00 +01:00
},
"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",
2023-07-08 00:28:51 +02:00
"@types/superagent": "^4.1.18",
2023-07-04 22:43:49 +02:00
"prettier": "^2.8.8",
2023-03-11 17:33:00 +01:00
"ts-node-dev": "^2.0.0",
2023-07-04 22:43:49 +02:00
"typescript": "^5.1.6"
2023-03-11 17:33:00 +01:00
},
"dependencies": {
2023-07-04 22:43:49 +02:00
"dotenv": "^16.3.1",
2023-03-11 17:33:00 +01:00
"express": "^4.18.2",
2023-07-08 00:28:51 +02:00
"superagent": "^8.0.9",
2023-07-04 22:43:49 +02:00
"tslib": "^2.6.0"
2023-03-11 17:33:00 +01:00
}
}