grafana-to-ntfy/package.json

47 lines
1.3 KiB
JSON
Raw Permalink 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-11-13 01:13:22 +01:00
"release": "semantic-release",
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": {
2023-11-13 00:57:21 +01:00
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/gitlab": "^12.0.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/express": "^4.17.21",
"@types/superagent": "^4.1.21",
2023-11-13 00:57:21 +01:00
"conventional-changelog-conventionalcommits": "^7.0.2",
2023-09-01 19:21:03 +02:00
"prettier": "^3.0.3",
2023-03-11 17:33:00 +01:00
"ts-node-dev": "^2.0.0",
2023-09-01 19:21:03 +02:00
"typescript": "^5.2.2"
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-09-01 19:21:03 +02:00
"superagent": "^8.1.2",
"tslib": "^2.6.2"
2023-03-11 17:33:00 +01:00
}
2023-11-13 01:13:22 +01:00
}