Skip to content

Commit d534bcd

Browse files
committed
Updated React to 16, Next to 4, Jest, Enzyme and added Enzyme toJson so snapshots are readable in JSON form and don't show enzyme implementation
1 parent bbd618f commit d534bcd

File tree

8 files changed

+3672
-11201
lines changed

8 files changed

+3672
-11201
lines changed

package.json

+19-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hackernews",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "A hacker news clone built from the ground up to demonstrate React and GraphQL",
55
"engines": {
66
"node": ">=6.9.4"
@@ -21,14 +21,14 @@
2121
"build-static-website": "NODE_ENV=production rm -rf build/static && yarn install --dev && next build src && next export src -o build/static",
2222
"start": "NODE_ENV=production node build/app/server.js"
2323
},
24+
"author": "Clinton D'Annolfo",
25+
"license": "Apache-2.0",
2426
"keywords": [
2527
"hacker-news",
2628
"clone",
2729
"react",
2830
"graphql"
2931
],
30-
"author": "Clinton D'Annolfo",
31-
"license": "Apache-2.0",
3232
"dependencies": {
3333
"apollo-server-express": "^1.1.2",
3434
"babel-runtime": "^6.26.0",
@@ -44,13 +44,13 @@
4444
"graphql-tools": "^1.2.1",
4545
"isomorphic-fetch": "^2.2.1",
4646
"lru-cache": "^4.1.1",
47-
"next": "^3.0.6",
47+
"next": "^4.0.3",
4848
"passport": "^0.4.0",
4949
"passport-local": "^1.0.0",
5050
"prop-types": "^15.5.10",
51-
"react": "^15.6.1",
51+
"react": "^16.0.0",
5252
"react-apollo": "^1.4.15",
53-
"react-dom": "^15.6.1",
53+
"react-dom": "^16.0.0",
5454
"react-redux": "^5.0.6",
5555
"react-render-html": "^0.5.1",
5656
"url": "^0.11.0"
@@ -64,17 +64,25 @@
6464
"babel-preset-env": "^1.6.0",
6565
"babel-preset-react": "^6.24.1",
6666
"babel-preset-stage-0": "^6.24.1",
67-
"enzyme": "^2.9.1",
67+
"enzyme": "^3.1.0",
68+
"enzyme-adapter-react-16": "^1.0.1",
69+
"enzyme-to-json": "^3.1.2",
6870
"eslint": "^4.5.0",
6971
"eslint-config-airbnb": "^15.1.0",
7072
"eslint-plugin-import": "^2.7.0",
7173
"eslint-plugin-jsx-a11y": "^6.0.2",
7274
"eslint-plugin-react": "^7.2.1",
73-
"flow-bin": "^0.54.0",
74-
"jest": "^20.0.4",
75-
"jest-enzyme": "^3.8.0",
75+
"flow-bin": "^0.56.0",
76+
"jest": "^21.2.1",
77+
"jest-enzyme": "^4.0.1",
7678
"mockdate": "^2.0.2",
7779
"nodemon": "^1.12.0",
78-
"react-test-renderer": "^15.6.1"
80+
"react-test-renderer": "^16.0.0"
81+
},
82+
"jest": {
83+
"setupTestFrameworkScriptFile": "<rootDir>/test-setup.js",
84+
"snapshotSerializers": [
85+
"enzyme-to-json/serializer"
86+
]
7987
}
8088
}

0 commit comments

Comments
 (0)