Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7500d3

Browse files
committed
Update Node.js to 8.5.0
1 parent 1383b55 commit a7500d3

File tree

5 files changed

+397
-280
lines changed

5 files changed

+397
-280
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
jobs:
77
build:
88
docker:
9-
- image: kriasoft/node-ci@sha256:2507124182d14e1e9e9c85d1b3c129d681184f14d494ec7375b648218f15f987
9+
- image: kriasoft/node-ci:8.5.0-alpine
1010
environment:
1111
- CORS_ORIGIN=http://localhost:3001,http://localhost:3000
1212
- DATABASE_URL=postgres://postgres@localhost:5432/dev

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8.4.0-alpine
1+
FROM node:8.5.0-alpine
22

33
# Set a working directory
44
WORKDIR /usr/src/app

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8.4.0-alpine
1+
FROM node:8.5.0-alpine
22

33
# Set a working directory
44
WORKDIR /usr/src/app

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dependencies": {
77
"bindings": "^1.3.0",
88
"bluebird": "^3.5.0",
9-
"body-parser": "^1.17.2",
9+
"body-parser": "^1.18.1",
1010
"compression": "^1.7.0",
1111
"connect-redis": "^3.3.0",
1212
"cookie-parser": "^1.4.3",
@@ -17,18 +17,18 @@
1717
"express-graphql": "^0.6.11",
1818
"express-session": "^1.15.5",
1919
"faker": "^4.1.0",
20-
"graphql": "^0.11.2",
20+
"graphql": "^0.11.3",
2121
"graphql-relay": "^0.5.2",
2222
"handlebars": "^4.0.10",
2323
"handlebars-layouts": "^3.1.4",
2424
"i18next": "^9.0.0",
25-
"i18next-express-middleware": "^1.0.5",
25+
"i18next-express-middleware": "^1.0.6",
2626
"i18next-node-fs-backend": "^1.0.0",
27-
"jest": "^21.0.1",
27+
"jest": "^21.1.0",
2828
"juice": "^4.1.1",
2929
"knex": "^0.13.0",
3030
"node-addon-api": "^0.6.3",
31-
"node-fetch": "^1.7.2",
31+
"node-fetch": "^1.7.3",
3232
"nodemailer": "^4.1.0",
3333
"passport": "^0.4.0",
3434
"passport-facebook": "^2.1.1",
@@ -37,14 +37,14 @@
3737
"pg": "^7.3.0",
3838
"pretty-error": "^2.1.1",
3939
"redis": "^2.8.0",
40-
"source-map-support": "^0.4.17",
41-
"validator": "^8.1.0"
40+
"source-map-support": "^0.4.18",
41+
"validator": "^8.2.0"
4242
},
4343
"devDependencies": {
4444
"babel-cli": "^6.26.0",
4545
"babel-core": "^6.26.0",
46-
"babel-eslint": "^7.2.3",
47-
"babel-jest": "^21.0.0",
46+
"babel-eslint": "^8.0.0",
47+
"babel-jest": "^21.0.2",
4848
"babel-plugin-transform-class-properties": "^6.24.1",
4949
"babel-plugin-transform-export-extensions": "^6.22.0",
5050
"babel-plugin-transform-flow-strip-types": "^6.22.0",
@@ -60,10 +60,10 @@
6060
"eslint-plugin-flowtype": "^2.35.1",
6161
"eslint-plugin-import": "^2.7.0",
6262
"eslint-plugin-prettier": "^2.2.0",
63-
"flow-bin": "^0.54.0",
63+
"flow-bin": "^0.54.1",
6464
"husky": "^0.14.3",
65-
"lint-staged": "^4.1.0",
66-
"prettier": "^1.6.1"
65+
"lint-staged": "^4.2.1",
66+
"prettier": "^1.7.0"
6767
},
6868
"jest": {
6969
"setupTestFrameworkScriptFile": "<rootDir>/tools/jest.setup.js"

0 commit comments

Comments
 (0)