-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.5 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
{
"name": "fast-bitcoins",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint --ext .tsx --ext .ts --quiet --fix",
"prettier": "prettier --write ./",
"prepare": "husky install",
"test": "jest"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn prettier",
"yarn lint"
]
},
"dependencies": {
"@hookform/resolvers": "^2.8.10",
"@react-navigation/native": "^6.0.10",
"@react-navigation/native-stack": "^6.6.2",
"axios": "^0.27.2",
"babel-plugin-styled-components": "^2.0.7",
"expo": "~45.0.0",
"expo-localization": "~13.0.0",
"expo-splash-screen": "~0.15.1",
"expo-status-bar": "~1.3.0",
"i18n-iso-countries": "^7.4.0",
"i18n-js": "^3.9.2",
"immer": "^9.0.14",
"jest": "^26.6.3",
"jest-expo": "^45.0.1",
"lodash.debounce": "^4.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-fast-compare": "^3.2.0",
"react-hook-form": "^7.31.2",
"react-native": "0.68.2",
"react-native-fast-image": "^8.5.11",
"react-native-mmkv": "^2.4.1",
"react-native-paper": "^4.12.1",
"react-native-reanimated": "~2.8.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-svg": "12.3.0",
"react-native-web": "0.17.7",
"react-query": "^3.39.0",
"styled-components": "^5.3.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^9.1.0",
"@types/i18n-js": "^3.8.2",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"@types/react-native": "^0.67.7",
"@types/react-test-renderer": "17",
"@types/styled-components-react-native": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "17",
"reactotron-react-native": "^5.0.2",
"typescript": "~4.3.5"
},
"private": true
}