-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "ms-teams-notification-bot",
"version": "1.0.0",
"description": "Microsoft Teams Toolkit Incoming Webhook Notification Sample",
"author": "longgt",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build",
"start": "node ./lib/src/index.js",
"start-dev": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/longgt/ms-teams-notification-bot"
},
"dependencies": {
"@microsoft/adaptivecards-tools": "^1.0.0",
"@octokit/webhooks": "^10.3.1",
"axios": "^0.26.1",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@octokit/webhooks-types": "^6.7.0",
"@types/http-server": "^0.12.1",
"@types/node": "^18.11.12",
"nodemon": "^2.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}