-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
72 lines (72 loc) · 2.3 KB
/
package.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "universal-react-poc",
"version": "1.0.0",
"description": "Try to setup a react app with rr4, redux, saga, code spliting and SSR.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alexisjanvier/universal-react.git"
},
"scripts": {
"dev-server": "./node_modules/.bin/webpack-dev-server --config ./webpack.client.config.js --devtool cheap-eval-source-map --inline --hot --port 8080 --content-base dist/",
"build-client": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.client.config.js -p",
"build-server": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.server.config.js -p"
},
"keywords": [
"react",
"redux",
"saga",
"rr4",
"ssr",
"code-spliting"
],
"author": "Alexis Janvier alexis@marmerlab",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.23.0",
"date-fns": "^1.28.5",
"express": "^4.15.3",
"helmet": "3.9.0",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"loadable-components": "^0.2.0",
"lodash.debounce": "^4.0.8",
"material-ui": "^1.0.0-alpha.21",
"material-ui-icons": "^1.0.0-alpha.19",
"pm2": "^2.5.0",
"prop-types": "^15.5.10",
"query-string": "^4.3.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "5.2.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"recompose": "^0.25.0",
"redux": "^3.7.2",
"redux-saga": "^0.15.4",
"typeface-roboto": "0.0.31"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"html-webpack-plugin": "^2.29.0",
"webpack": "^3.3.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-dev-server": "^2.5.1",
"webpack-node-externals": "^1.6.0"
}
}