-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.21 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "cabenomeubolso",
"version": "1.2.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"tsc": "tsc"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"color": "^3.1.2",
"date-fns": "^2.8.1",
"eslint-import-resolver-babel-module": "^5.1.0",
"immer": "^5.0.0",
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-app-intro-slider": "^3.0.0",
"react-native-bootsplash": "^1.0.3",
"react-native-code-push": "^6.0.0",
"react-native-collapsible": "^1.5.1",
"react-native-elements": "^1.2.7",
"react-native-gesture-handler": "^1.5.2",
"react-native-get-random-values": "^1.4.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-masked-text": "^1.13.0",
"react-native-reanimated": "^1.4.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-shimmer": "^0.6.0",
"react-native-swipe-list-view": "^2.0.6",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-backhandler": "^1.3.2",
"react-navigation-hooks": "^1.1.0",
"react-navigation-stack": "^1.10.3",
"react-redux": "^7.1.3",
"reactotron-react-native": "^4.0.2",
"reactotron-redux": "^3.1.2",
"reactotron-redux-saga": "^4.2.3",
"realm": "^3.5.0",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"styled-components": "^4.4.1",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"@types/color": "^3.0.0",
"@types/jest": "^24.0.18",
"@types/react": "^16.9.14",
"@types/react-native": "^0.60.22",
"@types/react-native-app-intro-slider": "^3.0.0",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "16.9.0",
"@types/styled-components": "^4.4.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-ignite-ignore-reactotron": "^0.3.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.19.1",
"react-test-renderer": "16.9.0",
"typescript": "^3.6.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && tsc"
}
},
"lint-staged": {
"src/**/*.ts{x}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}