-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "PostAR",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"firebase": "^3.7.2",
"native-base": "2.0.13",
"react": "~15.4.1",
"react-native": "0.40",
"react-native-camera": "git+https://github.com/lwansbrough/react-native-camera.git",
"react-native-device-info": "^0.10.2",
"react-native-facebook-login": "^1.5.0",
"react-native-firebase-auth": "git+https://github.com/SolidStateGroup/react-native-firebase-auth.git",
"react-native-google-sign-in": "0.0.14",
"react-native-maps": "^0.14.0",
"react-native-sensors": "^2.1.0",
"react-native-simple-modal": "^5.0.0",
"react-native-vector-icons": "^4.0.1",
"react-redux": "^5.0.4",
"react-timer-mixin": "^0.13.3",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"jest-cli": "^19.0.2",
"react-test-renderer": "~15.4.1"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/(?!react-native|native-base|@shoutem)"
],
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
],
"modulePathIgnorePatterns": [
"/node_modules/react-native/Libraries/react-native/",
"/node_modules/react-native/packager/",
"node_modules/react-native/node_modules/"
],
"collectCoverage": false,
"verbose": true
}
}