-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "ms-identity-react-c3s1",
"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": {
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^6.5.2",
"lowdb": "^1.0.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.3",
"uuid": "^9.0.0"
},
"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": "^28.1.1",
"nodemon": "^2.0.16",
"supertest": "^6.2.3"
}
}