forked from leanhtuan1994/react-native-template-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.74 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
{
"name": "boilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "husky install",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"clear": "cd android && ./gradlew clean",
"pod": "cd ios && pod install",
"test": "jest -u",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx ./app",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./app --fix",
"ci": "yarn lint && yarn test"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4.1.3",
"@react-hook/throttle": "^2.2.0",
"@react-native-async-storage/async-storage": "^1.15.9",
"@react-native-community/hooks": "^2.8.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^5.11.11",
"@react-navigation/core": "^5.15.3",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"axios": "^0.23.0",
"i18n-js": "^3.8.0",
"i18next": "^21.3.3",
"intl": "^1.2.5",
"ramda": "^0.27.1",
"react": "17.0.2",
"react-i18next": "^11.8.13",
"react-native": "0.65.1",
"react-native-bootsplash": "^3.2.4",
"react-native-device-info": "^8.4.1",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-linear-gradient": "^2.5.6",
"react-native-localize": "^2.1.5",
"react-native-modal": "^13.0.0",
"react-native-reanimated": "^2.2.2",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.2.0",
"react-native-svg": "^12.1.1",
"react-native-vector-icons": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.0.1",
"@types/jest": "^26.0.20",
"@types/ramda": "^0.27.44",
"@types/react-native": "^0.64.13",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.14.0",
"eslint-config-react-native-wcandillon": "^3.7.1",
"husky": "^7.0.2",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"react-native-codegen": "^0.0.7",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "17.0.2",
"typescript": "^4.3.5"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"setupFiles": [
"<rootDir>/testSetup.js"
],
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|react-native-elements|react-native-size-matters|react-native-ratings|react-native-vector-icons)/)"
]
}
}