-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.3 KB
/
package.json
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-snippets-typescript",
"version": "1.0.0",
"description": "![License.](https://img.shields.io/badge/license-MIT-green.svg)",
"repository": {
"url": "https://github.com/microsoftgraph/msgraph-snippets-typescript"
},
"main": "./out/index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write **/**.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/config": "^3.3.5",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^20.17.10",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@azure/identity": "^4.5.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"config": "^3.3.12",
"date-fns": "^3.6.0",
"https-proxy-agent": "^7.0.6",
"isomorphic-fetch": "^3.0.0",
"readline-sync": "^1.4.10"
}
}