-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.53 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
44
45
46
47
48
49
{
"name": "github-connector",
"version": "1.0.0",
"type": "module",
"description": "Sample Microsoft Graph connector for GitHub",
"main": "./out/index.js",
"scripts": {
"start": "ts-node ./src/index.ts --node-env=development",
"serve": "ts-node ./src/index.ts --node-env=development --use-simplified-admin",
"build": "tsc",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.40.0",
"@octokit/openapi-types": "^22.2.0",
"@types/express": "^4.17.21",
"@types/isomorphic-fetch": "^0.0.39",
"@types/node": "^20.17.6",
"@types/node-fetch": "^2.6.12",
"@types/readline-sync": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@azure/identity": "^4.5.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/rest": "^21.0.2",
"dotenv-flow": "^4.1.0",
"express": "^4.21.1",
"express-promise-router": "^4.1.1",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"marked": "^14.1.3",
"readline-sync": "^1.4.10"
}
}