-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cloudstitch-oauth-api",
"version": "0.0.1",
"description": "This is an OAuth Token Handler, yo.",
"main": "index.js",
"scripts": {
"build": "npm run clean; cd src; tsc",
"clean": "rm -rf release",
"dev:server": "npm run build; SLS_DEBUG=* NODE_ENV=development sls offline -s development",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudstitch/cloudstitch-oauth-api.git"
},
"author": "Cloudstitch Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/cloudstitch/cloudstitch-oauth-api/issues"
},
"homepage": "https://github.com/cloudstitch/cloudstitch-oauth-api#readme",
"devDependencies": {
"@types/aws-serverless-express": "^2.1.0",
"@types/body-parser": "^1.16.3",
"@types/cookie-parser": "^1.3.30",
"@types/express": "^4.0.35",
"@types/node": "^7.0.18",
"@types/passport": "^0.3.3",
"@types/passport-github": "^1.1.0",
"@types/passport-google-oauth": "^1.0.34",
"typescript": "^2.2.2"
},
"dependencies": {
"aws-sdk": "^2.53.0",
"aws-serverless-express": "^3.0.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"deep-extend": "^0.5.0",
"express": "^4.15.3",
"firebase-admin": "^4.2.1",
"jsonwebtoken": "^7.4.1",
"passport": "^0.3.2",
"passport-azure-oauth": "0.0.6",
"passport-dropbox-oauth2": "^1.1.0",
"passport-github": "^1.1.0",
"passport-gitlab2": "^3.0.0",
"passport-google-oauth2": "^0.1.6",
"passport-stripe": "^0.2.2",
"q": "^1.5.0",
"serverless": "^1.13.2",
"serverless-offline": "^3.14.0",
"serverless-prune-plugin": "^1.0.4"
}
}