forked from rematch/rematch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
{
"name": "@rematch/react-navigation",
"version": "2.0.1",
"description": "React Navigation plugin for Rematch",
"keywords": [
"@rematch",
"plugin",
"react-navigation",
"redux",
"rematch"
],
"homepage": "https://github.com/rematch/rematch/tree/master/plugins/react-navigation#readme",
"bugs": {
"url": "git+https://github.com/rematch/rematch/issues"
},
"license": "ISC",
"author": "Shawn McKay <shawn.j.mckay@gmail.com> (https://github.com/shmck)",
"files": [
"dist",
"index.d.ts"
],
"main": "dist/rematch-react-navigation.cjs.js",
"module": "dist/rematch-react-navigation.esm.js",
"scripts": {
"build": "rimraf lib dist && tsc && NODE_ENV=production rollup -c"
},
"devDependencies": {
"@rematch/core": "^1.0.0-alpha.4",
"@types/react": "^16.3.14",
"react": "^16.0.0",
"react-navigation": "^1.5.11",
"react-redux": "^5.0.7",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"@rematch/core": ">=1.0.0-alpha.4",
"react": "*",
"react-native": "*",
"react-navigation": "*",
"react-redux": "*"
},
"dependencies": {
"react-navigation-redux-helpers": "^1.0.6"
}
}