-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "graphtutorial",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"mstime": "build/index.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^20.16.5",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@azure/identity": "^4.4.1",
"@azure/identity-cache-persistence": "^1.1.1",
"@microsoft/microsoft-graph-client": "^3.0.7",
"date-fns": "^3.6.0",
"isomorphic-fetch": "^3.0.0",
"readline-sync": "^1.4.10",
"commander": "^12.1.0"
}
}