forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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": "react-router-redux",
"version": "5.0.0-alpha.8",
"description": "Redux bindings for React Router",
"repository": "ReactTraining/react-router",
"license": "MIT",
"authors": [
"Tim Dorr"
],
"files": [
"ConnectedRouter.js",
"actions.js",
"es",
"index.js",
"selectors.js",
"middleware.js",
"reducer.js",
"umd"
],
"main": "index.js",
"module": "es/index.js",
"scripts": {
"build": "node ./tools/build.js",
"prepublishOnly": "node ./tools/build.js",
"watch": "babel ./modules -d . --ignore __tests__ --watch",
"clean": "git clean -fdX .",
"lint": "eslint modules",
"test": "jest"
},
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"history": "^4.7.2",
"prop-types": "^15.6.0",
"react-router": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.21.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.4.0",
"gzip-size": "^4.0.0",
"jest": "^21.2.1",
"pretty-bytes": "^4.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.1.0",
"redux": "^3.6.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1"
}
}