Skip to content

Commit ad36e3a

Browse files
committed
update dependencies, still needs some cleanup
1 parent c10f716 commit ad36e3a

File tree

825 files changed

+87542
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

825 files changed

+87542
-74
lines changed

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
"react-scripts": "1.0.7"
77
},
88
"dependencies": {
9+
"apollo-cache-inmemory": "^1.0.0",
10+
"apollo-client": "^2.0.1",
11+
"apollo-link-http": "^1.0.0",
12+
"apollo-link-ws": "^1.0.0",
13+
"apollo-utilities": "^1.0.1",
14+
"graphql": "^0.11.7",
15+
"graphql-tag": "^2.5.0",
916
"react": "^16.0.0",
1017
"react-apollo": "^2.0.0",
1118
"react-dom": "^16.0.0",

server/.graphcoolrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
targets:
2+
iujyhtrgef: shared-eu-west-1/cj9gvy3ih0xkv0111bcc8sj1o
3+
default: iujyhtrgef

server/graphcool.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Welcome to Graphcool!
2+
#
3+
# This file is the main config file for your Graphcool Service.
4+
# It's very minimal at this point and uses default values.
5+
# We've included a hello world function here.
6+
# Just run `graphcool deploy` to have the first running Graphcool Service.
7+
#
8+
# Check out some examples:
9+
# https://github.com/graphcool/graphcool/tree/master/examples
10+
#
11+
# Here are the reference docs of this definition format:
12+
# https://docs-next.graph.cool/reference/service-definition/graphcool.yml-foatho8aip
13+
#
14+
# Happy Coding!
15+
16+
17+
# In the types.graphql you define your data schema
18+
types: ./types.graphql
19+
20+
21+
functions:
22+
23+
# added by email-password template: (please uncomment)
24+
25+
signup:
26+
type: resolver
27+
schema: src/email-password/signup.graphql
28+
handler:
29+
code: src/email-password/signup.ts
30+
31+
authenticate:
32+
type: resolver
33+
schema: src/email-password/authenticate.graphql
34+
handler:
35+
code: src/email-password/authenticate.ts
36+
37+
loggedInUser:
38+
type: resolver
39+
schema: src/email-password/loggedInUser.graphql
40+
handler:
41+
code: src/email-password/loggedInUser.ts
42+
43+
44+
# Model/Relation permissions are used to limit the API access
45+
# To take the burden of thinking about those while development, we
46+
# preconfigured the wildcard ("*") permission that allows everything
47+
# Read more here:
48+
# https://docs-next.graph.cool/reference/auth/authorization/overview-iegoo0heez
49+
permissions:
50+
- operation: "*"
51+
52+
53+
# Your root tokens used for functions to get full access to the API
54+
# Read more here:
55+
# https://docs-next.graph.cool/reference/auth/authentication/authentication-tokens-eip7ahqu5o
56+
# rootTokens:
57+
# - mytoken
58+

server/node_modules/.yarn-integrity

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/node_modules/@types/bcryptjs/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/node_modules/@types/bcryptjs/README.md

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/node_modules/@types/bcryptjs/index.d.ts

Lines changed: 105 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/node_modules/@types/bcryptjs/package.json

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/node_modules/@types/validator/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/node_modules/@types/validator/README.md

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)