-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
40 lines (40 loc) · 1.2 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": "active-directory-b2c-javascript-nodejs-webapi",
"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 B2C 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 index.js",
"dev": "nodemon index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.14.0",
"morgan": "^1.7.0",
"passport": "^0.4.1",
"passport-azure-ad": "^4.2.1"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Azure-Samples/active-directory-b2c-javascript-nodejs-webapi.git"
},
"bugs": {
"url": "https://github.com/Azure-Samples/active-directory-b2c-javascript-nodejs-webapi/issues"
},
"homepage": "https://github.com/Azure-Samples/active-directory-b2c-javascript-nodejs-webapi#readme",
"devDependencies": {
"nodemon": "^2.0.2"
},
"keywords": [
"azure",
"ad",
"node.js",
"b2c",
"api"
]
}