-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 823 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 823 Bytes
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
{
"name": "msal-node-tutorial-deployment",
"version": "1.0.0",
"description": "A Node.js & Express web app calling a custom web API using MSAL Node",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest --forceExit"
},
"author": "derisen",
"license": "MIT",
"dependencies": {
"@azure/identity": "^3.2.3",
"@azure/keyvault-secrets": "^4.7.0",
"@microsoft/microsoft-graph-client": "^3.0.2",
"bootstrap": "^4.6.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.8",
"express": "^4.19.2",
"express-session": "^1.17.3",
"isomorphic-fetch": "^3.0.0",
"msal-node-wrapper": "file:./msal-node-wrapper-1.0.0-beta.tgz"
},
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.19",
"supertest": "^6.1.4"
}
}