forked from PDA-Open-Source/PDA-MOBILE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.52 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "pda",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",
"install-all": "bash scripts/RunOnFirstTime.sh",
"android-trainer-debug": "react-native run-android --variant=trainerDebug",
"android-participant-debug": "react-native run-android --variant=participantDebug",
"android:trainer:release": "bash scripts/GenerateAndroidBuildTrainer.sh",
"android:participant:release": "bash scripts/GenerateAndroidBuildParticipant.sh",
"android:pdaParticipant:release": "bash scripts/GenerateAndroidBuildPDAParticipant.sh",
"android:pdaTrainer:release": "bash scripts/GenerateAndroidBuildPDATrainer.sh",
"ios-participant-release": "bash scripts/GenerateIosBuild.sh",
"test": "jest",
"--coverage": "test --coverage -u"
},
"dependencies": {
"axios": "0.18.0",
"clevertap-react-native": "0.3.2",
"crypto-js": "3.1.9-1",
"lodash": "4.17.11",
"moment": "2.24.0",
"react": "16.8.6",
"react-native": "0.59.9",
"react-native-actionsheet": "2.4.2",
"react-native-aws3": "0.0.8",
"react-native-camera": "2.11.1",
"react-native-datepicker": "1.7.2",
"react-native-device-info": "2.1.2",
"react-native-flash-message": "0.1.13",
"react-native-geolocation-service": "3.1.0",
"react-native-i18n": "2.0.15",
"react-native-image-crop-picker": "0.23.1",
"react-native-keyboard-aware-scroll-view": "0.8.0",
"react-native-linear-gradient": "2.5.4",
"react-native-material-textfield": "0.12.0",
"react-native-network-info": "5.1.0",
"react-native-otp-inputs": "3.1.1",
"react-native-pdf": "^6.0.1",
"react-native-permissions": "2.0.3",
"react-native-qr-scanner": "1.3.2",
"react-native-qrcode-svg": "5.1.2",
"react-native-router-flux": "4.0.6",
"react-native-sensitive-info": "5.4.1",
"react-native-share": "1.1.3",
"react-native-spinkit": "1.1.1",
"react-native-svg": "9.3.7",
"react-native-swipeable-row": "0.8.1",
"react-native-switch-pro": "1.0.4",
"react-native-switch-toggle": "^1.1.4",
"react-native-vector-icons": "^6.6.0",
"react-native-video": "^5.0.0",
"react-native-video-player": "0.10.0",
"react-native-webview": "3.2.1",
"react-redux": "6.0.1",
"redux": "4.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"rn-fetch-blob": "0.10.15"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/runtime": "7.4.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"babel-preset-es2016": "6.24.1",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.9.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"jest": "24.8.0",
"metro-react-native-babel-preset": "0.54.1",
"pre-commit": "1.2.2",
"react-dom": "16.8.3",
"react-test-renderer": "16.8.3",
"redux-mock-store": "1.5.3"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-navigation|react-native-i18n)"
],
"setupFiles": [
"<rootDir>/setupTest.js"
],
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).js"
]
},
"rnpm": {
"assets": [
"src/assets/fonts"
]
},
"pre-commit": [
"test"
]
}