Martin d'Allens 0aa67b735c docs(example): add required dependencies to run the razzle example (#417)
The Razzle example is missing @loadable/component and @loadable/server in package.json to run.
2019-08-28 11:05:00 +04:00

29 lines
736 B
JSON

{
"private": true,
"scripts": {
"start": "razzle start",
"build": "razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"dependencies": {
"@babel/runtime": "^7.1.5",
"@loadable/component": "^5.10.2",
"@loadable/server": "^5.10.2",
"@reach/router": "^1.2.1",
"babel-jest": "^24.8.0",
"common-tags": "^1.8.0",
"express": "^4.16.2",
"normalize.css": "^8.0.1",
"razzle": "^3.0.0-alpha.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/template": "^7.4.4",
"@loadable/babel-plugin": "^5.10.0",
"@loadable/webpack-plugin": "^5.7.1",
"check-prop-types": "^1.1.2"
}
}