-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.58 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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:cover": "jest --coverage",
"test:watch": "jest --watch",
"lint": "tsc --noEmit && eslint --ext .ts,.tsx ./"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@react-native-community/masked-view": "0.1.5",
"@react-navigation/native": "^5.0.1",
"@react-navigation/stack": "^5.0.1",
"@types/react-native-snap-carousel": "^3.7.4",
"expo": "~36.0.0",
"expo-av": "~8.0.0",
"expo-font": "~8.0.0",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"react-native-gesture-handler": "~1.5.0",
"react-native-reanimated": "~2.10.0",
"react-native-safe-area-context": "0.6.0",
"react-native-screens": "2.0.0-alpha.12",
"react-native-snap-carousel": "^3.8.4",
"react-native-svg": "9.13.3",
"react-native-web": "~0.11.7",
"react-navigation": "^4.1.0",
"react-navigation-stack": "^2.0.16",
"react-redux": "^7.1.3",
"redux": "^4.0.5"
},
"resolutions": {
"logkitty": "^0.7.1",
"minimist": "^0.2.1",
"acorn": "^7.1.1",
"kind-of": "^6.0.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@react-native-community/eslint-config": "^0.0.6",
"@react-native-community/eslint-plugin": "^1.0.0",
"@types/enzyme": "^3.10.5",
"@types/jest": "^24.0.25",
"@types/react": "~16.9.0",
"@types/react-native": "~0.60.23",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~8.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.9.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"husky": "^4.0.1",
"jest-expo": "^36.0.1",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.12.0",
"typescript": "~3.6.3"
},
"private": true
}