|
1 | 1 | {
|
2 | 2 | "name": "hackernews",
|
3 |
| - "version": "0.4.0", |
| 3 | + "version": "0.5.0", |
4 | 4 | "description": "A hacker news clone built from the ground up to demonstrate React and GraphQL",
|
5 | 5 | "engines": {
|
6 | 6 | "node": ">=6.9.4"
|
|
21 | 21 | "build-static-website": "NODE_ENV=production rm -rf build/static && yarn install --dev && next build src && next export src -o build/static",
|
22 | 22 | "start": "NODE_ENV=production node build/app/server.js"
|
23 | 23 | },
|
| 24 | + "author": "Clinton D'Annolfo", |
| 25 | + "license": "Apache-2.0", |
24 | 26 | "keywords": [
|
25 | 27 | "hacker-news",
|
26 | 28 | "clone",
|
27 | 29 | "react",
|
28 | 30 | "graphql"
|
29 | 31 | ],
|
30 |
| - "author": "Clinton D'Annolfo", |
31 |
| - "license": "Apache-2.0", |
32 | 32 | "dependencies": {
|
33 | 33 | "apollo-server-express": "^1.1.2",
|
34 | 34 | "babel-runtime": "^6.26.0",
|
|
44 | 44 | "graphql-tools": "^1.2.1",
|
45 | 45 | "isomorphic-fetch": "^2.2.1",
|
46 | 46 | "lru-cache": "^4.1.1",
|
47 |
| - "next": "^3.0.6", |
| 47 | + "next": "^4.0.3", |
48 | 48 | "passport": "^0.4.0",
|
49 | 49 | "passport-local": "^1.0.0",
|
50 | 50 | "prop-types": "^15.5.10",
|
51 |
| - "react": "^15.6.1", |
| 51 | + "react": "^16.0.0", |
52 | 52 | "react-apollo": "^1.4.15",
|
53 |
| - "react-dom": "^15.6.1", |
| 53 | + "react-dom": "^16.0.0", |
54 | 54 | "react-redux": "^5.0.6",
|
55 | 55 | "react-render-html": "^0.5.1",
|
56 | 56 | "url": "^0.11.0"
|
|
64 | 64 | "babel-preset-env": "^1.6.0",
|
65 | 65 | "babel-preset-react": "^6.24.1",
|
66 | 66 | "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", |
68 | 70 | "eslint": "^4.5.0",
|
69 | 71 | "eslint-config-airbnb": "^15.1.0",
|
70 | 72 | "eslint-plugin-import": "^2.7.0",
|
71 | 73 | "eslint-plugin-jsx-a11y": "^6.0.2",
|
72 | 74 | "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", |
76 | 78 | "mockdate": "^2.0.2",
|
77 | 79 | "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 | + ] |
79 | 87 | }
|
80 | 88 | }
|
0 commit comments