-
Notifications
You must be signed in to change notification settings - Fork 199
/
package.json
59 lines (59 loc) · 2.17 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"build": "rm -rf lib && babel '*.js' components mock --out-dir lib && cp -R ./images/ lib/ && flow-copy-source src lib",
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"eslint": "eslint '**/*.js' --max-warnings 0",
"prettier": "prettier --list-different '**/*.{js,ts}'",
"lint": "prettier --list-different '**/*.{js,ts}' && eslint '**/*.js' --max-warnings 0 && flow",
"lint-fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.js'",
"init-data": "node scripts/initData.js",
"test": "jest"
},
"dependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.2",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"expo": "~40.0.0",
"expo-activity-feed": "1.1.0",
"expo-image-picker": "~9.2.0",
"expo-linear-gradient": "~8.4.0",
"expo-permissions": "~10.0.0",
"expo-status-bar": "~1.0.3",
"faker": "^4.1.0",
"numeral": "^2.0.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-dotenv": "^2.4.3",
"react-native-gesture-handler": "~1.8.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "3.1.9",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "~2.15.0",
"react-native-web": "~0.13.12"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-plugin-root-import": "^6.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-preset-env": "^1.7.0",
"babel-preset-expo": "^8.3.0",
"dotenv": "^6.0.0",
"eslint": "^5.1.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-react": "^7.10.0",
"jest-expo": "~27.0.0",
"prettier": "^1.13.7",
"react-native-scripts": "1.14.0",
"react-test-renderer": "16.3.1"
},
"private": true
}