-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.44 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
{
"name": "react-redux-universal-starter",
"version": "0.1.0",
"description": "",
"scripts": {
"build:client": "rm -rf ./public && webpack --config webpack/webpack.client.config.js",
"build:server": "webpack --config webpack/webpack.server.config.js",
"dev": "webpack-serve --config webpack/webpack.client.config.js",
"eslint": "eslint --config .eslintrc ./src",
"prod": "node ./dist/server.bundle.js"
},
"author": "fabien hebert",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"connect-history-api-fallback": "^1.5.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-serve": "^2.0.2"
},
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-icons": "^3.0.5",
"react-redux": "^5.0.7",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"serve-favicon": "^2.5.0",
"styled-components": "^3.4.1",
"styled-normalize": "^8.0.0"
}
}