-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "redux-simple-starter",
"version": "1.0.0",
"description": "Simple starter package for Redux with React and Babel support",
"main": "index.js",
"repository": "[email protected]:StephenGrider/ReduxSimpleStarter.git",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"jquery": "^3.1.0",
"jsdom": "^9.4.1",
"mocha": "^3.0.1",
"normalize.css": "^4.2.0",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.3.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.13.1",
"babel-preset-stage-1": "^6.13.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"flexboxgrid": "^6.3.1",
"lodash": "^4.14.1",
"material-ui": "^0.15.3",
"node-sass": "^3.8.0",
"react": "^15.3.0",
"react-addons-css-transition-group": "^15.3.0",
"react-dom": "^15.3.0",
"react-flexbox-grid": "^0.10.2",
"react-google-maps": "^4.11.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"react-sparklines": "^1.6.0",
"react-tap-event-plugin": "^1.0.0",
"react-toolbox": "^1.0.3",
"redux": "^3.5.2",
"redux-promise": "^0.5.3",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1"
}
}