forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.12 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
{
"name": "react-native-router-flux",
"version": "4.0.0-beta.28",
"description": "React Native Router using Flux architecture",
"repository": {
"type": "git",
"url": "https://github.com/aksonov/react-native-router-flux"
},
"license": "MIT",
"main": "dist/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 --presets react-native-stage-0/decorator-support",
"eslint": "eslint src/ __tests__/",
"test": "jest"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"mobx": "^3.3.1",
"mobx-react": "^4.3.4",
"opencollective": "^1.0.3",
"path-to-regexp": "^2.1.0",
"prop-types": "^15.6.0",
"react-navigation": "1.0.0-beta.22"
},
"devDependencies": {
"@types/react": "^16.0.20",
"@types/react-native": "^0.50.0",
"babel-cli": "~6.24.1",
"babel-eslint": "^6.0.3",
"babel-jest": "20.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-react-native": "2.0.0",
"babel-preset-react-native-stage-0": "^1.0.1",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"estraverse-fb": "^1.3.2",
"jest": "20.0.4",
"prettier-eslint": "^6.4.2",
"prettier-eslint-cli": "^4.1.1",
"react": "16.0.0",
"react-native": "0.50.1",
"react-test-renderer": "16.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/Example/"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|mobx-react)"
],
"setupFiles": [
"./test/setup.js"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-router-flux",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}