This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 2.31 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
{
"scripts": {
"install:clean": "rm -rf node_modules && npm i",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"clean": "npm run install:clean && npm run android:clean",
"android:clean": "cd android && ./gradlew clean",
"android:aab": "cd android && ./gradlew bundleRelease",
"android:apk": "cd android && ./gradlew assembleRelease",
"android:run": "react-native run-android",
"ios:run": "react-native run-ios",
"test": "npm run lint",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"version:get": "node assets/scripts/get_version.js",
"version:set": "node assets/scripts/set_version.js",
"version:description": "node assets/scripts/get_version_description.js",
"version:description:android": "node assets/scripts/get_android_description.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/react-native-fontawesome": "^0.1.0",
"expo": "^34.0.1",
"expo-file-system": "^6.0.2",
"expo-haptics": "^6.0.0",
"i18n-js": "^3.3.0",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-native": "0.59.10",
"react-native-gesture-handler": "^1.3.0",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-loading-spinner-overlay": "^1.0.1",
"react-native-modalbox": "^1.7.1",
"react-native-reanimated": "~1.1.0",
"react-native-svg": "~9.5.1",
"react-native-unimodules": "~0.5.2",
"react-native-vector-icons": "^6.6.0",
"react-native-version-number": "^0.3.6",
"react-native-web": "^0.11.4",
"react-navigation": "^3.11.1",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-promise-middleware": "^6.1.1",
"rn-placeholder": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"babel-preset-expo": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2",
"replace-in-file": "^4.1.3"
},
"private": true
}