-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
122 lines (122 loc) · 3.9 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "react-redux-grid",
"version": "5.7.0",
"description": "A React Grid Component written in the Redux Pattern",
"author": "Bejamin Cripps",
"contributors": [
{
"name": "Bejamin Cripps",
"url": "http://benjamincripps.com"
},
{
"name": "Travis Johnson",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": "https://github.com/bencripps/react-redux-grid/issues",
"homepage": "http://react-redux-grid.herokuapp.com/",
"main": "dist/index.js",
"repository": "bencripps/react-redux-grid",
"scripts": {
"demo": "http-server -p 3000 ./demo",
"dist": "babel ./src --out-dir dist",
"hot": "webpack-dev-server --hot --config webpack/webpack.config.hot.js",
"lint": "eslint ./",
"prepublish": "npm run dist",
"report-coverage": "codecov",
"start": "concurrently \"npm run hot\" \"npm run demo\"",
"stylint": "stylint ./src --reporter stylint-stylish",
"test": "karma start ./test/karma.config.js -- --coverage",
"test:no-coverage": "karma start ./test/karma.config.js -- --no-coverage",
"test:browser": "karma start ./test/karma.config.js -- --browser",
"test:watch": "karma start ./test/karma.config.js -- --no-single-run --no-suppress-error-summary",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"dependencies": {
"array-from": "^2.1.1",
"deep-equal": "^1.0.1",
"immutable": "^3.8.1",
"prop-types": "^15.5.10",
"react-dnd": "^2.2.4",
"react-dnd-html5-backend": "^2.1.2",
"redux-thunk": "^2.2.0"
},
"peerDependencies": {
"react": ">=15.0.0 <17.0.0",
"react-dom": ">=15.0.0 <17.0.0",
"react-redux": ">=5.0.0",
"redux": ">=3.0.0",
"font-awesome": "4.x"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.0.0",
"babel-plugin-stylus-compiler": "^1.3.0",
"babel-plugin-syntax-function-bind": "^6.13.0",
"babel-plugin-transform-array-from": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"babel-runtime": "^6.11.6",
"chai": "^4.0.0",
"concurrently": "^3.1.0",
"css-loader": "^0.28.0",
"deep-diff": "^0.3.4",
"enzyme": "^2.4.1",
"eslint": "^4.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"expect": "^1.20.2",
"http-server": "^0.10.0",
"husky": "^0.14.3",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"jsdom": "^11.0.0",
"karma": "^1.4.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-eslint": "^2.1.0",
"karma-expect": "^1.1.3",
"karma-jasmine": "^1.0.2",
"karma-jsdom-launcher": "^6.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.2",
"mocha": "^3.1.2",
"node-storage-shim": "^1.0.1",
"react": "^15.4.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.4.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"react-test-render": "^1.0.3",
"redux": "^3.5.1",
"redux-devtools": "^3.3.1",
"redux-mock-store": "^1.2.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"style-loader": "^0.18.2",
"stylint": "^1.5.9",
"stylint-stylish": "^1.4.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.7",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.3.0"
}
}