forked from smaclell/sharebibles-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.47 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
{
"name": "sharebibles",
"version": "1.3.0",
"description": "Share bibles world wide",
"author": "YWAM + FaithTech",
"contributors": [
{
"name": "Scott MacLellan",
"url": "https://github.com/smaclell/"
},
{
"name": "Rob Wiebe"
}
],
"private": true,
"license": "Apache-2.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier --write \"./**/*.js\"",
"test": "jest",
"translate": "node ./scripts/translations/getTranslations.js"
},
"dependencies": {
"@k3rn31p4nic/google-translate-api": "^1.0.5",
"expo": "^33.0.7",
"expo-barcode-scanner": "~5.0.1",
"expo-constants": "~5.0.1",
"expo-file-system": "~5.0.1",
"expo-font": "~5.0.1",
"expo-localization": "~5.0.1",
"expo-mail-composer": "~5.0.1",
"expo-permissions": "~5.0.1",
"expo-secure-store": "~5.0.1",
"expo-sqlite": "~5.0.1",
"firebase": "^4.12.1",
"geofire": "^4.1.2",
"i18n-js": "^3.3.0",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-elements": "^1.1.0",
"react-native-keyboard-spacer": "^0.4.1",
"react-native-maps": "~0.24.0",
"react-native-ui-stepper": "^1.2.4",
"react-navigation": "^3.11.0",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sentry-expo": "~1.13.0",
"which-polygon": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^5.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "24.7.1",
"jest-expo": "^33.0.2",
"prettier": "^1.17.0",
"react-test-renderer": "16.5.0",
"redux-mock-store": "^1.5.3"
},
"resolutions": {
"moment-timezone/moment": "2.22.0"
},
"jest": {
"preset": "jest-expo",
"testPathIgnorePatterns": [
"/node_modules/",
".eslintrc.js"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier",
"pre-push": "yarn prettier"
}
}
}