-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 935 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 935 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
32
33
34
35
{
"name": "graphtutorial",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsx index.ts",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.43.1",
"@tony.ganchev/eslint-plugin-header": "^3.3.1",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^25.3.5",
"@types/readline-sync": "^1.4.8",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"isomorphic-fetch": "^3.0.0",
"readline-sync": "^1.4.10"
}
}