-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 2.99 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
{
"name": "MoneyTracker",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"eslint": "./node_modules/.bin/eslint ./src"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"@react-native-community/datetimepicker": "^2.1.2",
"@react-native-community/masked-view": "^0.1.6",
"@react-native-community/netinfo": "^5.3.3",
"es6-symbol": "^3.1.1",
"expr-eval": "^1.0.0",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"moment": "^2.19.3",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"react": "^16.9.0",
"react-native": "^0.61.0",
"react-native-action-button": "^2.8.3",
"react-native-charts-wrapper": "^0.5.7",
"react-native-easy-grid": "^0.2.2",
"react-native-easy-toast": "^1.1.0",
"react-native-elements": "0.18.4",
"react-native-exception-handler": "^2.10.8",
"react-native-exit-app": "^1.0.0",
"react-native-fbsdk": "^1.0.0",
"react-native-gesture-handler": "^1.5.3",
"react-native-gravatar": "^1.0.2",
"react-native-material-dialog": "^0.7.4",
"react-native-material-dropdown": "^0.11.1",
"react-native-material-textfield": "^0.12.0",
"react-native-modal": "^5.4.0",
"react-native-modal-datetime-picker": "^8.1.1",
"react-native-popup-menu": "^0.8.3",
"react-native-reanimated": "^1.4.0",
"react-native-safe-area-context": "^0.6.2",
"react-native-screens": "1.0.0-alpha.23",
"react-native-spinkit": "^1.5.0",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.3.3",
"react-navigation-stack": "^2.0.16",
"react-navigation-tabs": "^2.7.0",
"react-redux": "^7.1.3",
"recompose": "^0.26.0",
"redux": "^4.0.5",
"redux-actions": "^2.2.1",
"redux-form": "^8.2.2",
"redux-logger": "^3.0.6",
"redux-modal": "^3.0.2",
"redux-thunk": "^2.2.0",
"revalidate": "^1.2.0"
},
"devDependencies": {
"@bam.tech/react-native-make": "^1.0.3",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-module-resolver": "^3.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-babel-module": "^2.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-lodash": "^2.4.4",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-react-native": "^3.0.1",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"metro-react-native-babel-preset": "^0.58.0",
"miragejs": "^0.1.33",
"react-native-dotenv": "^0.2.0",
"react-native-fetch-mock": "^0.8.0",
"react-test-renderer": "^16.0.0",
"remote-redux-devtools": "^0.5.0",
"shortid": "^2.2.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run eslint"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"jest": {
"preset": "react-native"
}
}