-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 2.08 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
{
"name": "rg-web-app",
"version": "0.0.3",
"main": "src/entry.js",
"description": "An example React Redux app using React Router & RxJS for route management & chunk loading respectively.",
"repository": {
"type": "git",
"url": "https://github.com/luigiplr/react-router-redux-rxjs-code-splitting.git"
},
"author": "Luigi Poole <[email protected]>",
"scripts": {
"dev": "webpack-dev-server --config ./webpack/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --colors --progress -p --config ./webpack/webpack.config.prod.js"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^4.0.0",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0-beta.6",
"react-youtube": "^7.3.0",
"redux": "^3.6.0",
"rxjs": "^5.1.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.1.10",
"babel-preset-react": "^6.23.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-3": "^6.22.0",
"babel-runtime": "^6.22.0",
"babili-webpack-plugin": "0.0.10",
"clean-webpack-plugin": "^0.1.15",
"cross-env": "^3.1.4",
"css-loader": "^0.26.2",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"lodash-webpack-plugin": "^0.11.2",
"mkdirp": "^0.5.1",
"pretty-error": "^2.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.4",
"style-loader": "^0.13.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-merge": "^3.0.0"
},
"engines": {
"node": "6.0.0"
}
}