-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.08 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
{
"name": "bggca",
"license": "MIT",
"repository": "https://github.com/BDQ/bgg_community_app",
"devDependencies": {
"async-wait-until": "^1.2.4",
"babel-eslint": "^9.0.0",
"babel-preset-expo": "^5.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.6.0",
"eslint-plugin-jest": "^21.22.1",
"eslint-plugin-react": "^7.11.1",
"jest-expo": "^35.0.0",
"react-native-dotenv": "^0.2.0"
},
"main": "node_modules/expo/AppEntry.js",
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"react",
"jest"
],
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jest/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"no-console": 0,
"semi": [
2,
"never"
]
},
"globals": {
"Headers": false,
"fetch": false
}
},
"scripts": {
"start": "expo start",
"debug": "open \"rndebugger://set-debugger-loc?host=localhost&port=19001\"",
"test": "npx jest --coverage",
"watch": "npx jest --watch",
"buildTestEnv": "npx ./buildEnv.js > .env"
},
"jest": {
"preset": "jest-expo",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./setupTests.js"
],
"transformIgnorePatterns": [
"node_modules/?!(sentry)"
]
},
"dependencies": {
"@react-native-community/datetimepicker": "^2.2.3",
"@react-native-community/masked-view": "^0.1.7",
"@react-navigation/bottom-tabs": "^5.1.1",
"@react-navigation/native": "^5.0.9",
"@react-navigation/stack": "^5.1.1",
"debug": "^4.1.1",
"expo": "^35.0.0",
"expo-image-manipulator": "~7.0.0",
"expo-image-picker": "~7.0.0",
"next-frame": "^0.2.3",
"prop-types": "^15.6.2",
"react": "16.8.3",
"react-async": "^10.0.0",
"react-dom": "^16.6.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-appearance": "~0.1.0",
"react-native-datepicker": "^1.7.2",
"react-native-dotenv": "^0.2.0",
"react-native-elements": "^1.1.0",
"react-native-flash-message": "^0.1.10",
"react-native-gesture-handler": "~1.3.0",
"react-native-htmlview": "^0.13.0",
"react-native-image-progress": "^1.1.1",
"react-native-image-zoom-viewer": "^2.2.26",
"react-native-maps": "^0.25.0",
"react-native-material-dropdown": "^0.11.1",
"react-native-modal-datetime-picker": "^8.5.1",
"react-native-progress": "^3.6.0",
"react-native-reanimated": "~1.2.0",
"react-native-safe-area-context": "~0.3.6",
"react-native-safe-area-view": "^1.0.0",
"react-native-screens": "~1.0.0-alpha.23",
"react-native-searchable-dropdown": "^1.1.1",
"react-native-simple-radio-button": "^2.7.4",
"react-native-swipeout": "^2.3.6",
"react-native-tag-select": "^2.0.0",
"react-native-vector-icons": "^6.0.2",
"react-xml-parser": "^1.1.6",
"reactn": "^2.2.6",
"sentry-expo": "~2.0.1",
"throttle-debounce": "^1.0.1"
}
}