-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.55 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
82
{
"name": "react-redux-rockstarter",
"version": "1.0.0",
"engine": "node 6.10.2",
"description": "A boilerplate for rocking out with react, redux and react-router with the help of webpack.",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"start": "node server",
"dist": "node server-dist",
"test-circle": "mocha --compilers js:babel-core/register --reporter mocha-junit-reporter",
"test-coverage": "babel-node node_modules/.bin/babel-istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"view-coverage": "node server-coverage",
"build": "rimraf dist && webpack --config ./webpack.production.config.js --progress --profile --colors",
"eslint": "eslint ."
},
"keywords": [
"es6",
"react",
"redux"
],
"author": "Code Hangar, Inc.",
"license": "MIT",
"dependencies": {
"connected-react-router": "^4.1.0",
"file-loader": "^0.11.1",
"gx": "^1.0.0-rc3",
"material-ui": "^0.18.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-flexbox-grid": "^1.1.2",
"react-hot-loader": "^3.0.0-beta.2",
"react-redux": "^5.0.4",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.5.2",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"mocha": "^3.3.0",
"mocha-junit-reporter": "^1.13.0",
"mockery": "^2.0.0",
"node-sass": "^4.5.2",
"npm": "^4.1.2",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.5.1",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"stats-webpack-plugin": "^0.6.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
}
}