-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 KB
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
{
"name": "AppHackathonBoilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-idx": "^2.4.0",
"haversine": "^1.1.1",
"jsdom": "^14.0.0",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "0.59.3",
"react-native-animatable": "^1.3.2",
"react-native-camera": "^2.6.0",
"react-native-geocoding": "^0.3.0",
"react-native-gesture-handler": "^1.1.0",
"react-native-google-maps-directions": "^2.0.0",
"react-native-google-places-autocomplete": "^1.3.9",
"react-native-maps": "^0.24.2",
"react-native-maps-directions": "^1.6.0",
"react-native-qrcode-scanner": "^1.1.2",
"react-native-vector-icons": "^6.4.2",
"react-navigation": "^3.6.1",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"babel-jest": "^24.7.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest": "^24.7.1",
"jest-enzyme": "^7.0.2",
"metro-react-native-babel-preset": "^0.53.1",
"react-test-renderer": "16.8.3",
"reactotron-react-native": "^3.2.2"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"./node_modules/jest-enzyme/lib/index.js"
],
"setupFiles": [
"enzyme-react-16-adapter-setup"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
}
}
}