-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.03 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.03 KB
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
89
90
91
92
93
94
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"format": "prettier --ignore-path .gitignore --write ./{**/,}*.{js,ts,tsx,json,yml}",
"format:check": "yarn format --check",
"test": "jest --watch",
"test:ci": "jest --ci --coverage --verbose",
"test:quick": "jest --only-changed",
"lint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore --ignore-pattern '*.config.js' components lib screens data",
"types": "tsc"
},
"dependencies": {
"@expo/vector-icons": "^10.0.0",
"@types/expo": "^32.0.12",
"@types/expo__vector-icons": "^9.0.1",
"@types/react-native": "^0.61.15",
"@types/react-navigation": "^3.0.7",
"@types/react-navigation-material-bottom-tabs": "^0.3.1",
"@types/react-test-renderer": "16.8.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"expo": "^36.0.0",
"expo-analytics-segment": "~8.0.0",
"expo-cli": "^3.21.3",
"expo-constants": "~8.0.0",
"expo-error-recovery": "~1.0.0",
"expo-font": "~8.0.0",
"expo-linear-gradient": "~8.0.0",
"expo-react-native-adapter": "^3.0.1",
"fuse.js": "^3.4.4",
"lodash": "^4.17.11",
"react": "16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.1.tar.gz",
"react-native-confetti": "^0.1.0",
"react-native-gesture-handler": "~1.5.0",
"react-native-markdown-renderer": "^3.2.8",
"react-native-paper": "^2.13.0",
"react-native-reanimated": "~1.4.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-sentry": "^0.43.1",
"react-navigation": "^4.0.10",
"react-navigation-material-bottom-tabs": "^1.0.0",
"react-navigation-stack": "^1.10.3",
"sentry-expo": "~2.0.0",
"typescript": "^3.7.2"
},
"resolutions": {
"react-native-markdown-renderer/@types/react-native": "^0.57.51"
},
"devDependencies": {
"@babel/core": "^7",
"@types/jest": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^8.0.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-expo": "^36.0.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"react-test-renderer": "16.8.3",
"ts-jest": "^24.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn --silent test:quick"
}
},
"lint-staged": {
"*.{json,yml}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"eslint --fix --ignore-pattern '*.config.js'",
"git add"
]
},
"private": true
}