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
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "ms-identity-react-c7s1",
"version": "1.0.0",
"description": "---\r page_type: sample\r description: \"This sample demonstrates how to protect a Node.js web API with Azure AD using the Passport.js library.\"\r languages:\r - javascript\r - nodejs\r products:\r - azure\r - azure-active-directory\r urlFragment: nodejs-web-api-azure-ad\r ---",
"author": "derisen",
"license": "ISC",
"engines": {
"node": ">=6.9.1"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest --forceExit"
},
"dependencies": {
"@azure/msal-node": "^1.15.0",
"@microsoft/microsoft-graph-client": "^3.0.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^6.7.0",
"isomorphic-fetch": "^3.0.0",
"morgan": "^1.10.0",
"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.19",
"supertest": "^6.1.4"
}
}