forked from aksonov/react-native-router-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.91 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
83
84
85
86
87
88
89
90
91
{
"name": "react-native-router-flux",
"version": "4.3.1",
"description": "React Native Router using Flux architecture",
"repository": {
"type": "git",
"url": "https://github.com/aksonov/react-native-router-flux"
},
"bugs": {
"url": "https://github.com/aksonov/react-native-router-flux"
},
"homepage": "https://github.com/aksonov/react-native-router-flux#readme",
"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 || exit 0",
"build": "./node_modules/.bin/babel src -d dist",
"lint": "prettier-eslint $PWD/'src/**/*.js' $PWD/'__tests__/**/*.js' --list-different",
"fix": "prettier-eslint $PWD/'src/**/*.js' $PWD/'__tests__/**/*.js' --write",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"add": "^2.0.6",
"lodash": "^4.17.15",
"opencollective": "^1.0.3",
"path-to-regexp": "^2.4.0",
"prop-types": "^15.6.2",
"react-navigation": "^4.x",
"react-navigation-drawer": "^2.2.1",
"react-navigation-stack": "^2.10.2",
"react-navigation-tabs": "^2.10.1",
"remove": "^0.1.5"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.47",
"@babel/code-frame": "7.0.0-beta.47",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-decorators": "7.0.0-beta.47",
"@babel/plugin-proposal-optional-chaining": "7.0.0-beta.47",
"@types/react": "16.4.12",
"@types/react-native": "0.56.14",
"babel-core": "^7.0.0-0",
"babel-eslint": "9.0.0-beta.1",
"babel-jest": "^25.1.0",
"babel-preset-react-native": "5.0.2",
"eslint": "^6.7.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-eslint-comments": "3.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.22.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.0",
"estraverse-fb": "1.3.2",
"jest": "^25.1.0",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "5.0.0-beta.0",
"react": "16.4.1",
"react-native": "0.56.0",
"react-native-gesture-handler": "^1.4.1",
"react-native-jest-mocks": "1.4.0",
"react-test-renderer": "16.4.1"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/examples/"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|@react-navigation|react-navigation-(tabs|drawer|deprecated-tab-navigator|stack))"
],
"setupFiles": [
"./test/setup.js"
]
},
"eslintConfig": {
"filePath": "./eslintrc.js"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-native-router-flux",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}