generated from BloomTech-Labs/template-fe
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
71 lines (71 loc) · 2.34 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "CI=true jest --coverage --watchAll=false || true",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md)\""
},
"dependencies": {
"@expo/vector-icons": "^10.0.6",
"@react-native-community/async-storage": "^1.7.1",
"axios": "^0.19.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"expo": "^35.0.1",
"expo-analytics": "^1.0.14",
"expo-cli": "^3.20.1",
"expo-constants": "^7.0.1",
"expo-image-picker": "~7.0.0",
"expo-permissions": "^7.0.0",
"prettier": "^2.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-elements": "^1.2.7",
"react-native-gesture-handler": "~1.3.0",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-modal": "^11.5.4",
"react-native-picker-select": "^6.3.3",
"react-native-reanimated": "~1.2.0",
"react-native-screens": "~1.0.0-alpha.23",
"react-native-web": "^0.11.7",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.5.6",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"private": true,
"devDependencies": {
"jest-expo": "^35.0.0",
"react-native-testing-library": "^1.12.0",
"react-test-renderer": "^16.8.6"
},
"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/.*|sentry-expo|native-base)"
],
"moduleNameMapper": {
"styled-components": "<rootDir>/node_modules/styled-components/native/dist/styled-components.native.cjs.js"
},
"collectCoverageFrom": [
"**/*.js",
"!**/__tests__/**",
"!**/node_modules/**",
"!**/vendor/**",
"!**/coverage/**",
"!**/babel.config.js",
"!**/web-build/**"
]
}
}