-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Router and Authentication): Initial Auth work with Graphcool
- Loading branch information
1 parent
9a3e8a8
commit 5be9130
Showing
37 changed files
with
4,583 additions
and
1,369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,37 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"env", | ||
"@babel/preset-env", | ||
{ | ||
"modules": false | ||
"modules": false, | ||
"loose": true, | ||
"useBuiltIns": "usage", | ||
"targets": { | ||
"browsers": ["last 2 Chrome versions"] | ||
} | ||
} | ||
], | ||
"react" | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-proposal-object-rest-spread" | ||
], | ||
"plugins": ["transform-class-properties", "transform-object-rest-spread"], | ||
"env": { | ||
"test": { | ||
"presets": [["env"], "react"], | ||
"plugins": ["transform-class-properties", "transform-object-rest-spread"] | ||
"presets": [["@babel/preset-env"], "@babel/preset-react"], | ||
"plugins": [ | ||
"@babel/plugin-proposal-class-properties" | ||
// "@babel/plugin-proposal-object-rest-spread" | ||
] | ||
} | ||
} | ||
|
||
// require.resolve('babel-plugin-transform-runtime'), | ||
// - { | ||
// - helpers: false, | ||
// - polyfill: false, | ||
// - regenerator: true, | ||
// - }, | ||
// require('@babel/plugin-syntax-dynamic-import').default, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
{ | ||
"name": "mybettingslips", | ||
"name": "mybettingslipsgraphql", | ||
"version": "1.0.0", | ||
"description": "My Graphcool Service" | ||
"description": "My Graphcool Service", | ||
"dependencies": { | ||
"bcryptjs": "^2.4.3", | ||
"graphcool-lib": "^0.1.0", | ||
"graphql-request": "^1.4.0", | ||
"validator": "^9.0.0" | ||
} | ||
} |
Oops, something went wrong.