-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.3 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
{
"main": "src/App",
"scripts": {
"start": "tsc && expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build-android": "tsc && expo build:android",
"build-ios": "tsc && expo build:ios",
"eject": "expo eject",
"test": "jest --coverage",
"lint": "eslint --fix './src/**/*.{ts,tsx}'",
"format": "prettier --write './src/**/*.{ts,tsx}'",
"coverage": "coveralls < coverage/lcov.info"
},
"dependencies": {
"@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",
"@types/jest": "^26.0.19",
"@types/react-test-renderer": "^17.0.0",
"axios": "^0.21.0",
"coveralls": "^3.1.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"expo": "~39.0.2",
"expo-font": "~8.3.0",
"expo-permissions": "~9.3.0",
"expo-status-bar": "~1.0.2",
"jest-expo": "^40.0.1",
"nyc": "^15.1.0",
"react": "^16.13.1",
"react-dom": "16.13.1",
"react-native": "^0.63.2",
"react-native-elements": "^3.0.0-alpha.1",
"react-native-gesture-handler": "~1.7.0",
"react-native-reanimated": "~1.13.0",
"react-native-safe-area-context": "^3.1.4",
"react-native-screens": "^2.15.0",
"react-native-swipe-gestures": "^1.0.5",
"react-native-tab-view": "^2.15.2",
"react-native-web": "~0.13.12"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@types/react": "~16.9.35",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.63.2",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-native": "^3.10.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"typescript": "~3.9.5"
},
"private": true,
"assets": [
"./assets/fonts/"
],
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*)"
]
}
}