forked from microsoftgraph/nodejs-connect-rest-sample
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 882 Bytes
/
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
{
"name": "o365-nodejs-microsoft-graph-connect",
"version": "1.0.0",
"description": "Connecting to Office 365 is the first step every Node.js app must take to start working with Office 365 services and data. This sample shows how to connect and then call one endpoint through the Microsoft Graph API.",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"keywords": [
"o365",
"microsoft",
"nodejs",
"unified"
],
"author": "PatSol",
"license": "MIT",
"dependencies": {
"adal-node": "^0.1.16",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"cookie-session": "^1.2.0",
"debug": "~2.2.0",
"express": "~4.13.1",
"express-session": "^1.11.3",
"hbs": "~3.1.0",
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-nodemon": "^2.0.4"
}
}