-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 851 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 851 Bytes
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
{
"name": "graphcool-auth0-example",
"scripts": {
"start": "dotenv -- nodemon server/index.js",
"playground": "graphql playground",
"deploy": "now --public --dotenv .env.prod && now alias && now rm --yes --safe graphcool-auth0-example",
"now-start": "node server/index.js"
},
"dependencies": {
"apollo-errors": "^1.5.1",
"auth0": "^2.9.1",
"bcryptjs": "2.4.3",
"express-jwt": "^5.3.0",
"express-jwt-authz": "^1.0.0",
"graphcool-binding": "0.4.0",
"graphql-yoga": "0.7.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "8.1.0",
"jwks-rsa": "^1.2.1",
"middleware": "^1.0.0"
},
"devDependencies": {
"dotenv-cli": "1.4.0",
"graphql-cli": "2.2.2",
"nodemon": "1.14.6",
"now": "9.0.1",
"rimraf": "2.6.2"
},
"now": {
"alias": "graphcool-auth0-example"
}
}