-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.02 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.02 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
{
"name": "DevQuiz",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"release": "cd android/ && ./gradlew assembleRelease",
"androidinstall": "cd android/app/build/outputs/apk/release && adb install app-release.apk",
"iosrelease": "react-native run-ios --configuration Release"
},
"rnpm": {
"assets": [
"./src/Assets/fonts/"
]
},
"dependencies": {
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/hooks": "^2.5.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.1.6",
"@react-navigation/stack": "^5.2.13",
"axios": "^0.19.2",
"lottie-react-native": "^3.3.2",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-confirmation-code-field": "^6.0.0",
"react-native-gesture-handler": "^1.6.1",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-onesignal": "^3.7.3",
"react-native-reanimated": "^1.8.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-safe-area-view": "^1.1.0",
"react-native-screens": "^2.5.0",
"react-native-share": "^3.3.0",
"react-native-snackbar": "^2.2.0",
"react-native-sound": "^0.11.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^6.6.0",
"socket.io-client": "^2.3.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@react-native-community/eslint-config": "^1.1.0",
"babel-jest": "^25.4.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-root-import": "^6.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import-helpers": "^1.0.2",
"jest": "^25.4.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.11.0",
"rn-async-storage-flipper": "^0.0.6"
},
"jest": {
"preset": "react-native"
}
}