This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
88 lines (88 loc) · 2.88 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
{
"name": "rebelgamer-mobile-app",
"version": "3.3u",
"description": "Mobile app for the gaming blog \"RebelGamer\"",
"homepage": "https://github.com/Mokkapps/rebelgamer-mobile-app",
"author": {
"name": "Michael Hoffmann",
"email": "[email protected]",
"url": "https://www.mokkapps.de"
},
"private": false,
"license": "MIT",
"scripts": {
"start": "react-native start",
"preandroid": "rm -rf android/build",
"android": "react-native run-android",
"android-logs": "react-native log-android",
"android-release": "react-native run-android --variant=release",
"preios": "rm -rf ios/build",
"ios": "react-native run-ios",
"ios-logs": "react-native log-ios",
"ios-release": "react-native run-ios --variant=release",
"test": "node node_modules/jest/bin/jest.js --watch",
"flow": "flow",
"upgrade-react-native": "react-native upgrade",
"lint": "eslint ."
},
"jest": {
"automock": false,
"setupFiles": [
"./test/setup-jest.js",
"./test/setup-enzyme.js"
]
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^6.0.0",
"@react-navigation/native": "^6.0.4",
"@react-navigation/stack": "^6.0.9",
"axios": "^0.21.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"html-entities": "^1.2.1",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-autoheight-webview": "^1.5.8",
"react-native-elements": "^3.3.2",
"react-native-email": "^1.1.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-reanimated": "^2.1.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.0",
"react-native-snackbar": "^2.4.0",
"react-native-vector-icons": "^8.1.0",
"react-native-webview": "^11.3.2",
"react-navigation-header-buttons": "^7.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.3",
"babel-preset-flow": "^6.23.0",
"babel-preset-react-native": "4.0.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"flow-bin": "0.148.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^16.5.3",
"metro-react-native-babel-preset": "^0.65.2",
"react-dom": "^17.0.2",
"react-native-mock": "^0.3.1",
"react-native-mock-render": "^0.1.9",
"react-test-renderer": "17.0.1"
}
}