forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.52 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
{
"name": "react-native-router-flux",
"version": "4.0.1",
"description": "React Native Router using Flux architecture",
"repository": {
"type": "git",
"url": "https://github.com/aksonov/react-native-router-flux"
},
"license": "MIT",
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"postinstall": "./node_modules/.bin/opencollective postinstall",
"build": "./node_modules/.bin/babel src -d dist",
"eslint": "eslint src/ __tests__/",
"fix": "eslint src/ __tests__/ --fix",
"test": "jest"
},
"resolutions": {
"*/@babel/cli": "7.0.0-beta.54",
"*/@babel/core": "7.0.0-beta.54",
"*/@babel/code-frame": "7.0.0-beta.54"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"opencollective": "^1.0.3",
"path-to-regexp": "^2.2.1",
"prop-types": "^15.6.2",
"react-navigation": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.54",
"@babel/preset-flow": "^7.0.0-beta.54",
"@types/react": "^16.4.6",
"@types/react-native": "^0.56.4",
"babel-core": "^7.0.0-0",
"babel-eslint": "9.0.0-beta.3",
"babel-jest": "^23.4.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "file:../airbnb-style/packages/eslint-config-airbnb",
"eslint-config-airbnb-base": "file:../airbnb-style/packages/eslint-config-airbnb-base",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-eslint-comments": "^3.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"estraverse-fb": "^1.3.2",
"jest": "^23.4.1",
"metro-react-native-babel-preset": "^0.42.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^5.0.0-beta.0",
"react": "16.4.1",
"react-native": "0.56.0",
"react-test-renderer": "16.4.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/Example/",
"<rootDir>/ReduxExample/"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation)"
],
"setupFiles": [
"./test/setup.js"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-router-flux",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}