-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.13 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": "passport-js-auth-webhook",
"version": "1.0.0",
"engines": {
"node": "8.9.1"
},
"description": "A boilerplate for Hasura Graphql Engine auth webhook with passport js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js --inspect",
"lint": "eslint \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasura/graphql-engine.git"
},
"author": "Aravind Shankar",
"license": "MIT",
"bugs": {
"url": "https://github.com/hasura/graphql-engine/issues"
},
"homepage": "https://github.com/hasura/graphql-engine/tree/master/community/boilerplates/auth-webhooks/passport-js#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validator": "^5.3.0",
"knex": "^0.19.5",
"objection": "^2.2.16",
"objection-db-errors": "^1.0.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"util": "^0.11.0"
}
}