This repository was archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
44
45
46
47
48
{
"name": "ms-identity-auth-context",
"version": "1.0.0",
"description": "A Node.js & Express web API accepting authorized calls with Azure Active Directory",
"author": "derisen",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest --forceExit"
},
"dependencies": {
"@azure/msal-node": "^1.17.2",
"@microsoft/microsoft-graph-client": "^2.2.1",
"axios": "^1.4.0",
"bootstrap": "^5.0.2",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.7",
"express": "^4.19.2",
"express-session": "^1.17.2",
"isomorphic-fetch": "^3.0.0",
"method-override": "^3.0.0",
"mongodb": "^4.6.0",
"nanoid": "^3.3.4",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.3"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure-Samples/ms-identity-javascript-react-tutorial.git"
},
"keywords": [
"azure-ad",
"ms-identity",
"node",
"api"
],
"bugs": {
"url": "https://github.com/Azure-Samples/ms-identity-javascript-react-tutorial/issues"
},
"homepage": "https://github.com/Azure-Samples/ms-identity-javascript-react-tutorial#readme",
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"supertest": "^6.1.4"
}
}