-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
43 lines (43 loc) · 1.04 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
42
43
{
"name": "ms-identity-javascript-c2s1",
"version": "1.0.0",
"description": "Vanilla JavaScript single-page application using MSAL.js to authorize users for calling Microsoft Graph",
"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",
"spa",
"node.js",
"msal.js"
],
"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.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.20",
"supertest": "^6.1.4"
}
}