forked from maniacs-oss/fithero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
{
"name": "com.fnp.fithero",
"version": "0.7.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"android": "react-native run-android --appIdSuffix=debug",
"test": "jest",
"flow": "flow --include-warnings",
"lint": "eslint .",
"ci": "npm test && npm run lint && npm run flow",
"prepare": "patch-package"
},
"dependencies": {
"@react-native-community/async-storage": "^1.2.1",
"bugsnag-react-native": "^2.10.2",
"dziku-exercises": "^0.2.0",
"expo-document-picker": "^4.0.0",
"i18n-js": "^3.2.1",
"left-pad": "^1.3.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"react": "16.8.3",
"react-native": "0.59.8",
"react-native-calendars": "^1.21.0",
"react-native-charts-wrapper": "^0.5.2",
"react-native-gesture-handler": "^1.0.16",
"react-native-localize": "^1.0.4",
"react-native-paper": "^2.15.0",
"react-native-share": "^1.1.3",
"react-native-tabbed-view-pager-android": "^1.0.4",
"react-native-unimodules": "^0.2.0",
"react-native-vector-icons": "^6.4.1",
"react-navigation": "^3.8.1",
"react-navigation-backhandler": "^1.1.1",
"react-navigation-material-bottom-tabs": "^1.0.0",
"react-redux": "^6.0.0",
"realm": "^2.28.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/runtime": "7.4.4",
"@callstack/eslint-config": "^6.0.0",
"babel-jest": "24.8.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.16.0",
"flow-bin": "0.92.0",
"jest": "24.8.0",
"metro-react-native-babel-preset": "0.54.0",
"patch-package": "^6.0.4",
"postinstall-prepare": "^1.0.1",
"react-dom": "16.6.3",
"react-native-testing-library": "^1.7.0",
"react-test-renderer": "16.8.3",
"snapshot-diff": "^0.5.1"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"<rootDir>/config/setupTests.js"
],
"testMatch": [
"**/__tests__/**/?(*.)+(spec|test).[tj]s?(x)"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-navigation|@unimodules|expo(nent)?|@expo(nent)?/.*))"
]
}
}