forked from danielr18/connected-next-router
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.84 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
{
"name": "connected-next-router",
"version": "1.0.1",
"description": "A Redux binding for Next.js Router",
"main": "lib/index.js",
"author": "Daniel Reinoso <danielreinoso1807@gmail.com> (http://danielr18.github.io)",
"license": "MIT",
"keywords": [
"next",
"next.js",
"next-router",
"next-router-redux",
"connected-react-router",
"react-router-redux"
],
"files": [
"actions.js",
"ConnectedRouter.js",
"index.js",
"middleware.js",
"patchRouter.js",
"reducer.js",
"routerMethods.js",
"utils",
"structure",
"es"
],
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "cross-env BABEL_ENV=commonjs babel src -d .",
"build:es": "cross-env BABEL_ENV=es babel src -d es",
"watch": "cross-env BABEL_ENV=commonjs babel src -d . -w",
"clean": "git clean -xdfe node_modules",
"lint": "eslint ."
},
"peerDependencies": {
"next": "^7.0.0 || ^8.0.0",
"react": "^16.4.0",
"react-redux": "^6.0.0",
"redux": "^3.6.0 || ^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.7.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.0",
"next": "^7.0.2",
"prop-types": "^15.5.8",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/danielr18/connected-next-router.git"
},
"bugs": {
"url": "https://github.com/danielr18/connected-next-router/issues"
}
}