This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
42
43
44
45
46
47
{
"name": "nodejs-microsoft-graph-connect",
"version": "2.0.0",
"description": "Connecting to Microsoft Graph is the first step every Node.js app must take to start working with the Microsoft Graph API. This sample shows how to connect and call Microsoft Graph",
"private": true,
"scripts": {
"start": "mocha ./tests/confTest.js && node ./bin/www",
"lint": "eslint .",
"test": "mocha ./tests/integrationTest.js --timeout 10000",
"automatedTest": "mocha ./tests/automatedTest.js --timeout 20000"
},
"keywords": [
"graph",
"microsoft",
"nodejs",
"unified"
],
"author": "DevEd",
"license": "MIT",
"dependencies": {
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"express": "~4.15.2",
"express-session": "^1.15.2",
"hbs": "~4.0.1",
"morgan": "~1.8.1",
"passport": "^0.3.2",
"passport-azure-ad": "^3.0.5",
"serve-favicon": "~2.4.2",
"superagent": "^3.5.2",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/node":"^8.0.2",
"@types/mocha":"^2.2.41",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"mocha": "^3.2.0",
"selenium-webdriver": "^3.3.0"
}
}