-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
74 lines (74 loc) · 2.31 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
{
"name": "tested-app",
"version": "1.0.0",
"private": false,
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"pretest": "yarn lint --fix --quiet",
"test": "jest",
"posttest": "open jest.report.html",
"pretest-ci": "yarn lint --fix --quiet",
"test-ci": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.8.2",
"@react-navigation/stack": "^5.11.1",
"formik": "^2.2.1",
"intl": "^1.2.5",
"lodash": "^4.17.20",
"query-string": "^6.13.6",
"react": "16.13.1",
"react-intl": "^5.8.8",
"react-native": "0.63.3",
"react-native-animatable": "^1.3.3",
"react-native-extra-dimensions-android": "^1.2.5",
"react-native-gesture-handler": "^1.8.0",
"react-native-iphone-x-helper": "^1.3.0",
"react-native-reanimated": "^1.13.1",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.12.0",
"react-native-vector-icons": "^7.1.0",
"react-suspense-loadable": "^1.0.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.7",
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.1",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.164",
"@types/react-native": "^0.63.30",
"@types/react-test-renderer": "^16.9.3",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-jest": "^26.6.1",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"fetch-mock-jest": "^1.3.0",
"fs": "^0.0.1-security",
"husky": "^5.0.0-beta.0",
"jest": "^26.6.1",
"jest-html-reporters": "^2.1.0",
"metro-react-native-babel-preset": "^0.63.0",
"path": "^0.12.7",
"prettier": "^2.1.2",
"react-test-renderer": "16.13.1",
"typescript": "^4.0.5"
},
"jest": {
"preset": "react-native"
}
}