|
28 | 28 | "graphql-compose": ">=6.0.0"
|
29 | 29 | },
|
30 | 30 | "devDependencies": {
|
31 |
| - "@babel/cli": "^7.2.3", |
32 |
| - "@babel/core": "^7.3.4", |
| 31 | + "@babel/cli": "^7.4.3", |
| 32 | + "@babel/core": "^7.4.3", |
33 | 33 | "@babel/node": "^7.2.2",
|
34 |
| - "@babel/plugin-proposal-class-properties": "^7.3.4", |
35 |
| - "@babel/plugin-proposal-object-rest-spread": "^7.3.4", |
36 |
| - "@babel/plugin-transform-flow-strip-types": "^7.3.4", |
37 |
| - "@babel/plugin-transform-runtime": "^7.3.4", |
38 |
| - "@babel/preset-env": "^7.3.4", |
| 34 | + "@babel/plugin-proposal-class-properties": "^7.4.0", |
| 35 | + "@babel/plugin-proposal-object-rest-spread": "^7.4.3", |
| 36 | + "@babel/plugin-transform-flow-strip-types": "^7.4.0", |
| 37 | + "@babel/plugin-transform-runtime": "^7.4.3", |
| 38 | + "@babel/preset-env": "^7.4.3", |
39 | 39 | "@babel/preset-flow": "^7.0.0",
|
40 |
| - "aws-sdk": "^2.422.0", |
| 40 | + "aws-sdk": "^2.437.0", |
41 | 41 | "babel-core": "^7.0.0-bridge.0",
|
42 | 42 | "babel-eslint": "^10.0.1",
|
43 |
| - "babel-jest": "^24.5.0", |
| 43 | + "babel-jest": "^24.7.1", |
44 | 44 | "cz-conventional-changelog": "^2.1.0",
|
45 |
| - "eslint": "^5.15.2", |
| 45 | + "eslint": "^5.16.0", |
46 | 46 | "eslint-config-airbnb-base": "^13.1.0",
|
47 | 47 | "eslint-config-prettier": "^4.1.0",
|
48 |
| - "eslint-plugin-flowtype": "^3.4.2", |
| 48 | + "eslint-plugin-flowtype": "^3.5.1", |
49 | 49 | "eslint-plugin-import": "^2.16.0",
|
50 | 50 | "eslint-plugin-prettier": "^3.0.1",
|
51 | 51 | "express": "^4.16.4",
|
52 | 52 | "express-graphql": "^0.7.1",
|
53 |
| - "flow-bin": "^0.95.1", |
54 |
| - "graphql": "14.1.1", |
55 |
| - "graphql-compose": "^6.0.1", |
56 |
| - "jest": "^24.5.0", |
| 53 | + "flow-bin": "^0.96.0", |
| 54 | + "graphql": "14.2.1", |
| 55 | + "graphql-compose": "^6.2.0", |
| 56 | + "jest": "^24.7.1", |
57 | 57 | "nodemon": "^1.18.10",
|
58 | 58 | "prettier": "^1.16.4",
|
59 | 59 | "rimraf": "^2.6.3",
|
|
76 | 76 | "build-mjs-rename": "find ./mjs -name \"*.js\" -exec bash -c 'mv \"$1\" \"${1%.js}\".mjs' - '{}' \\;",
|
77 | 77 | "build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo ./${COPY_TO_FOLDER:-lib}$filepath | sed 's/.\\/src\\//\\//g'`.flow; done",
|
78 | 78 | "demo": "npm run demo-fullApi",
|
79 |
| - "demo-fullApi": "nodemon -e js --ignore *test* --exec ./node_modules/.bin/babel-node ./examples/fullApi/index.js", |
80 |
| - "demo-introspection": "./node_modules/.bin/babel-node ./examples/introspection/generate.js", |
81 |
| - "demo-partialApi": "nodemon -e js --ignore *test* --exec ./node_modules/.bin/babel-node ./examples/partialApi/index.js", |
| 79 | + "demo-fullApi": "BABEL_ENV=cjs nodemon -e js --ignore *test* --exec ./node_modules/.bin/babel-node ./examples/fullApi/index.js", |
| 80 | + "demo-introspection": "BABEL_ENV=cjs ./node_modules/.bin/babel-node ./examples/introspection/generate.js", |
| 81 | + "demo-partialApi": "BABEL_ENV=cjs nodemon -e js --ignore *test* --exec ./node_modules/.bin/babel-node ./examples/partialApi/index.js", |
82 | 82 | "watch": "jest --watch",
|
83 | 83 | "coverage": "jest --coverage",
|
84 | 84 | "lint": "eslint --ext .js ./src",
|
|
0 commit comments