-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
{
"name": "webpack-react-boilerplate",
"version": "1.0.0",
"repository": "https://github.com/jprivillaso/webpack-react-boilerplate",
"description": "React boilterplate using React, Redux and Redux-Saga",
"main": "server.js",
"author": "Juan Rivillas",
"license": "MIT",
"keywords": [
"react",
"redux-saga",
"redux",
"boilerplate",
"starter",
"simple"
],
"scripts": {
"start": "cross-env NODE_ENV=development node server.js",
"start-prod": "cross-env NODE_ENV=production node server.js",
"build": "rimraf dist && npm run vendor && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"concurrent-build": "rimraf dist && npm run vendor && NODE_ENV=production node ./webpack.concurrent-build.js",
"vendor": "webpack --config webpack.vendor.config.js"
},
"dependencies": {
"express": "^4.13.3",
"lodash": "^3.10.1",
"moment": "^2.19.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.1.3",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"redux-saga": "^0.15.6"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-styled-components": "^1.1.7",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.2.0",
"cross-env": "^1.0.7",
"css-loader": "^0.19.0",
"eslint": "^4.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-redux-saga": "^0.4.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^1.6.1",
"jscs": "^2.1.1",
"jsdom": "^6.5.1",
"mocha": "^2.3.3",
"mocha-jsdom": "^1.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^0.6.0",
"react-addons-test-utils": "^0.14.3",
"react-transform-hmr": "^1.0.0",
"redux-devtools-extension": "^2.13.2",
"rimraf": "^2.4.3",
"sass-loader": "^6.0.6",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"stats-webpack-plugin": "^0.6.1",
"style-loader": "^0.12.4",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.9.7",
"webpack-hot-middleware": "^2.21.0"
}
}