-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.17 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.17 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
{
"name": "Surfcode",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "node ./android-release-gradle-fix.js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"android-linux": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && react-native run-android",
"android-release": "react-native bundle --assets-dest android/app/src/main/res/ --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --platform android --dev false && cd ./android && ./gradlew assembleRelease"
},
"dependencies": {
"easy-bluetooth-classic": "^1.0.4",
"moment": "^2.22.2",
"prop-types": "^15.6.1",
"random-string": "^0.2.0",
"react": "16.3.1",
"react-native": "^0.57.0",
"react-native-action-bar": "^2.0.5",
"react-native-actionsheet": "^2.4.2",
"react-native-ble-plx": "^1.0.0",
"react-native-button": "^2.3.0",
"react-native-calendars": "^1.21.0",
"react-native-elements": "^0.19.1",
"react-native-exit-app": "^1.0.0",
"react-native-fetch-blob": "^0.10.8",
"react-native-firebase": "^5.0.0",
"react-native-get-sms-android": "^1.3.4",
"react-native-image-picker": "^0.27.1",
"react-native-linear-gradient": "^2.4.3",
"react-native-modalbox": "^1.6.0",
"react-native-multiple-picker": "0.0.21",
"react-native-picker": "^4.3.7",
"react-native-pure-chart": "0.0.24",
"react-native-remote-svg": "^1.3.0",
"react-native-sound-player": "^0.5.3",
"react-native-svg": "^8.0.8",
"react-native-vector-icons": "^5.0.0",
"react-native-weather-api": "^2.0.0",
"react-navigation": "^2.0.1",
"react-navigation-tabs": "^0.8.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"watchman": "^1.0.0"
},
"devDependencies": {
"babel-jest": "23.4.2",
"babel-preset-react-native": "5.0.1",
"jest": "23.5.0",
"react-test-renderer": "16.4.1",
"schedule": "^0.4.0"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./assets/fonts/"
]
}
}