-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
88 lines (88 loc) · 2.71 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
87
88
{
"name": "movie_swiper",
"version": "2.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"ios11": "react-native run-ios --simulator='iPhone 11'",
"start": "react-native start",
"lint": "eslint --ext .js,.jsx,.mjs,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"compile": "tsc -p ."
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"@react-native-community/netinfo": "^5.3.3",
"axios": "^0.21.1",
"fsevents": "^2.1.2",
"hoist-non-react-statics": "^3.3.2",
"lodash": "^4.17.21",
"memoize-one": "^5.1.1",
"moment": "^2.24.0",
"react": "16.9.0",
"react-native": "0.62.3",
"react-native-bootsplash": "^2.2.4",
"react-native-fast-image": "^8.3.0",
"react-native-gesture-handler": "^1.4.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^1.7.1",
"react-native-redash": "^14.1.1",
"react-native-status-bar-height": "^2.4.0",
"react-native-vector-icons": "^6.6.0",
"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-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"throttle-debounce": "^2.1.0",
"uuid": "^3.4.0",
"validator": "^12.2.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/runtime": "^7.7.2",
"@bam.tech/react-native-make": "^3.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.5.0",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@types/react-native-vector-icons": "^6.4.5",
"@types/react-redux": "^7.1.7",
"@types/throttle-debounce": "^2.1.0",
"@types/uuid": "^3.4.6",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"eslint-plugin-react-native": "^3.8.1",
"eslint-plugin-simple-import-sort": "^5.0.1",
"husky": "^4.2.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"prettier": "1.19.1",
"react-test-renderer": "16.12.0",
"reactotron-react-native": "^4.0.3",
"reactotron-redux": "^3.1.2",
"reactotron-redux-saga": "^4.2.3",
"redux-devtools-extension": "^2.13.8",
"typescript": "^3.7.5"
},
"husky": {
"hooks": {
"pre-push": "yarn compile && yarn lint"
}
},
"jest": {
"preset": "react-native"
}
}