-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "react-loadable-ssr-code-splitting",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:server": "nodemon --watch build --exec \"node build/bundle.js\"",
"dev:build-server": "webpack --config webpack.server.js --watch",
"dev:build-client": "webpack --config webpack.client.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konradmi/react-loadable-ssr-code-splitting.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/konradmi/react-loadable-ssr-code-splitting/issues"
},
"homepage": "https://github.com/konradmi/react-loadable-ssr-code-splitting#readme",
"dependencies": {
"express": "^4.16.1",
"prop-types": "^15.5.0",
"react": "^16.3.1",
"react-dom": "^16.0.0",
"react-loadable": "^5.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"extract-css-chunks-webpack-plugin": "^2.0.18",
"flow-bin": "^0.41.0",
"jest": "^21.2.1",
"node-sass": "^4.8.3",
"nodemon": "^1.17.3",
"npm-run-all": "^4.1.2",
"react-test-renderer": "^16.0.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^3.6.0",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.7.2"
}
}