-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "ms-identity-javascript-c1s1",
"version": "1.0.0",
"description": "Vanilla JavaScript single-page application (SPA) using MSAL.js to authenticate users against Azure Active Directory",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure-Samples/ms-identity-javascript-tutorial.git"
},
"keywords": [
"javascript",
"msal",
"authorization code",
"authentication",
"microsoft",
"ms-identity",
"azure-ad",
"single-page app"
],
"author": "derisen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure-Samples/ms-identity-javascript-tutorial/issues"
},
"homepage": "https://github.com/Azure-Samples/ms-identity-javascript-tutorial#readme",
"dependencies": {
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.20",
"supertest": "^6.1.4"
}
}