-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "@lagunovsky/redux-react-router",
"version": "4.3.2",
"description": "A Redux binding for React Router v6",
"author": "Ivan Lagunovsky",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"keywords": [
"react",
"redux",
"react-redux",
"react-router",
"react-router-redux",
"connected-react-router"
],
"scripts": {
"build": "rollup -c",
"prepare": "install-peers"
},
"peerDependencies": {
"history": "^5",
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18",
"react-redux": "^6 || ^7 || ^8 || ^9",
"react-router": "^6",
"redux": "^4 || ^5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"install-peers-cli": "^2.2.0",
"rollup": "^2.79.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^4.8.3"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/lagunovsky/redux-react-router.git"
},
"bugs": {
"url": "https://github.com/lagunovsky/redux-react-router/issues"
},
"homepage": "https://github.com/lagunovsky/redux-react-router#readme"
}