forked from neverendingqs/oauth2.0-client-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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": "application-data-api-demo",
"version": "1.0.0",
"description": "Using the OAuth 2.0 flow to get data from the application and data APIs.",
"main": "server.js",
"scripts": {
"dev": "gulp dev",
"start": "node server.js",
"test": "jshint . && serverless deploy --noDeploy",
"serverless": "serverless",
"sls": "serverless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brightspace/application-data-api-demo.git"
},
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Brightspace/application-data-api-demo/issues"
},
"homepage": "https://github.com/Brightspace/application-data-api-demo#readme",
"devDependencies": {
"dotenv": "^4.0.0",
"gulp": "^3.9.1",
"gulp-cli": "^1.2.1",
"gulp-nodemon": "^2.1.0",
"jshint": "^2.9.2",
"openssl-self-signed-certificate": "^1.1.4",
"serverless": "1.15.3",
"serverless-plugin-include-dependencies": "^2.1.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"ejs": "^2.4.2",
"express": "^4.14.0",
"serverless-http": "^1.4.3",
"superagent": "^2.0.0"
}
}