-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.47 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.47 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "msgraph-sample-eventgrid-notifications-typescript",
"version": "1.0.0",
"description": "This TypeScript/Node.js sample listens for change notifications from Microsoft Graph delivered to Azure Event Grid.",
"main": "./out/app.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/msgraph-sample-eventgrid-notifications-typescript.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoftgraph/msgraph-sample-eventgrid-notifications-typescript/issues"
},
"homepage": "https://github.com/microsoftgraph/msgraph-sample-eventgrid-notifications-typescript#readme",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.43.1",
"@types/express": "^4.17.21",
"@types/node": "^20.17.57",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-tsdoc": "^0.5.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"dotenv-flow": "^4.1.0",
"express": "^4.22.1",
"express-promise-router": "^4.1.1"
}
}