mirror of
https://github.com/gregberge/loadable-components.git
synced 2025-12-08 19:46:26 +00:00
The Razzle example is missing @loadable/component and @loadable/server in package.json to run.
29 lines
736 B
JSON
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"
|
|
}
|
|
}
|