-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.79 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "evently",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"setup": "yarn; cd ios && rm -rf Pods && pod install && cd ..",
"clean": "cd ios && rm -rf build && cd ..",
"android": "react-native run-android",
"ios": "react-native run-ios",
"status": "code-push deployment list evently",
"codepush-bundle": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output codepush/main.jsbundle --assets-dest codepush",
"stage": "rm -r codepush;mkdir codepush;code-push release-react evently ios -o ./codepush -e index.js -t $npm_package_config_codepushVersion",
"promote": "code-push promote evently Staging Production",
"rollback-staging": "code-push rollback evently Staging",
"rollback-production": "code-push rollback evently Production",
"bundle": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios"
},
"dependencies": {
"@mapbox/react-native-mapbox-gl": "^6.1.3",
"axios": "^0.18.0",
"geofirestore": "^3.2.3",
"geolib": "^2.0.24",
"lodash": "^4.17.11",
"lottie-react-native": "^2.6.1",
"moment": "^2.24.0",
"react": "16.8.3",
"react-native": "0.59.2",
"react-native-blur": "^3.2.2",
"react-native-calendar-events": "^1.7.0",
"react-native-circular-progress": "^1.1.0",
"react-native-code-push": "^5.6.0",
"react-native-firebase": "^5.2.3",
"react-native-haptic-feedback": "^1.6.0",
"react-native-interactable": "1.0.0-alpha.1",
"react-native-linear-gradient": "^2.5.4",
"react-native-permissions": "^1.1.1",
"react-native-svg": "^9.3.7",
"react-native-svg-transformer": "^0.12.1",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/runtime": "^7.4.2",
"@react-native-community/eslint-config": "^0.0.3",
"babel-jest": "^24.7.1",
"chai": "^4.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.15.3",
"jest": "^24.7.1",
"metro-react-native-babel-preset": "^0.53.1",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./testSetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}