-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 2.26 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
{
"name": "CollectMe",
"version": "9.0.0",
"private": true,
"devDependencies": {
"@types/jest": "23.3.13",
"babel-eslint": "7.2.3",
"flow-bin": "0.52.0",
"flow-typed": "2.1.5",
"husky": "1.1.4",
"jest": "23.5.0",
"jest-expo": "28.0.0",
"prettier": "1.5.3",
"react-test-renderer": "16.3.1"
},
"main": "./node_modules/expo/AppEntry.js",
"scripts": {
"postinstall": "remotedev-debugger",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest",
"test:tdd": "jest --watch"
},
"jest": {
"preset": "jest-expo",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)?$",
"transformIgnorePatterns": [
"node_modules/(?!(react-native|lottie-react-native|expo|react-native-maps|react-native-svg|react-native-branch|native-base-shoutem-theme|react-native-easy-grid|react-native-drawer|react-native-vector-icons|react-native-keyboard-aware-scroll-view|react-native-swiper|react-navigation|native-base|@expo|react-native-scrollable-tab-view|react-native-simple-modal|react-native-iphone-x-helper)/)"
]
},
"dependencies": {
"@expo/vector-icons": "6.3.1",
"babel-preset-expo": "4.0.0",
"color": "3.1.0",
"dayjs": "^1.8.9",
"expo": "28.0.0",
"geojson-geometries-lookup": "^0.3.0",
"html-entities": "^1.2.1",
"jest-cli": "23.5.0",
"lodash": "^4.17.11",
"moment": "2.22.2",
"native-base": "2.8.1",
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-calendars": "1.21.0",
"react-native-carousel-view": "0.5.1",
"react-native-drawer": "^2.5.1",
"react-native-easy-grid": "0.2.0",
"react-native-elements": "^1.1.0",
"react-native-maps": "^0.23.0",
"react-native-modalbox": "1.6.0",
"react-native-popup-menu": "^0.15.4",
"react-native-vector-icons": "^6.3.0",
"react-navigation": "2.17.0",
"react-redux": "5.1.1",
"redux": "4.0.1",
"redux-form": "7.4.2",
"redux-persist": "5.10.0",
"redux-thunk": "2.3.0",
"remote-redux-devtools": "0.5.13",
"remote-redux-devtools-on-debugger": "0.8.3",
"whatwg-fetch": "2.0.4"
}
}