forked from bencripps/react-redux-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.62 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
83
84
85
86
87
{
"name": "react-redux-grid",
"version": "1.4.0",
"description": "A React Grid Component written in the Redux Pattern",
"author": "Bejamin Cripps",
"contributors": [
{
"name": "Bejamin Cripps",
"url": "http://benjamincripps.com"
}
],
"license": "MIT",
"bugs": "https://github.com/bencripps/react-redux-grid/issues",
"homepage": "http://react-redux-grid.herokuapp.com/",
"main": "src/index.js",
"scripts": {
"test": "karma start ./test/karma.config.js",
"test-browser": "karma start ./test/karma.config.js --browser",
"watch-test": "",
"build": "webpack --pretty --config webpack/webpack.config.dev.js",
"prod": "webpack --pretty --config webpack/webpack.config.prod.js",
"hot": "webpack-dev-server --hot --inline --pretty --config webpack/webpack.config.hot.js"
},
"dependencies": {
"font-awesome": "^4.6.1",
"immutable": "^3.8.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-immutable-proptypes": "^1.7.1",
"react-redux": "^4.4.5",
"redux": "^3.5.1",
"redux-diff-logger": "0.0.9",
"redux-thunk": "^2.0.1",
"routes": "^2.1.0",
"stylus": "^0.54.2"
},
"devDependencies": {
"babel": "^6.5.1",
"babel-core": "^v6.5.1",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.2.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.1.2",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.0.0",
"eslint": "^2.8.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.0.1",
"expect": "^1.14.0",
"file-loader": "^0.8.5",
"jsdom": "^8.0.2",
"json-loader": "^0.5.3",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.1",
"karma-es6-shim": "^0.2.3",
"karma-eslint": "^2.0.1",
"karma-expect": "^1.1.1",
"karma-jasmine": "^0.3.6",
"karma-jsdom-launcher": "^3.0.0",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.0.1",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.2.0",
"redux-mock-store": "1.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"stylus-loader": "^2.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.14.1"
}
}