Merge pull request #20 from Human-Connection/babel

Update Babel & babel-node
This commit is contained in:
Grzegorz Leoniec 2018-11-21 11:28:57 +01:00 committed by GitHub
commit 0ee32d8b01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1754 additions and 4900 deletions

View File

@ -1 +1 @@
{ "presets": ["env"] }
{ "presets": ["@babel/preset-env"] }

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
node_modules/
.env
.vscode
yarn-error.log

View File

@ -1,7 +1,7 @@
{
"name": "hc-prototype-api-",
"name": "human-connection-backend",
"version": "0.0.1",
"description": "Graph API Protype for Human Connection",
"description": "GraphQL Backend for Human Connection",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
@ -9,9 +9,14 @@
"start:debug": "./node_modules/.bin/nodemon --exec babel-node --inspect=0.0.0.0:9229 src/index.js",
"seedDb": "./node_modules/.bin/babel-node src/seed/seed-db.js"
},
"author": "Grzegorz Leoniec",
"author": "Human Connection gGmbh",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"apollo-boost": "^0.1.10",
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.2",
@ -41,8 +46,6 @@
"trunc-html": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"faker": "^4.1.0",
"nodemon": "^1.18.4"
}

File diff suppressed because it is too large Load Diff

2776
yarn.lock

File diff suppressed because it is too large Load Diff