-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 3.18 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
89
90
91
92
93
94
95
96
97
{
"name": "moneyboy-app",
"version": "0.2.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"build": "tsc",
"dev": "tsc -w",
"test": "jest --passWithNoTests",
"docs": "typedoc App.tsx ./src --tsconfig ./tsconfig.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test:e2e": "npx detox test --take-screenshots failing",
"postinstall": "npm-license-crawler -onlyDirectDependencies -json licenses.json"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.2",
"@react-native-community/datetimepicker": "^6.1.2",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-segmented-control/segmented-control": "^2.4.0",
"@react-navigation/bottom-tabs": "^6.0.9",
"@react-navigation/native": "^6.0.6",
"@react-spring/native": "^9.2.1",
"buffer": "^6.0.3",
"deep-equal": "^2.0.5",
"react": "17.0.2",
"react-native": "0.66.4",
"react-native-device-info": "^8.7.0",
"react-native-encrypted-storage": "^4.0.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-modal": "^13.0.0",
"react-native-notifications": "^4.2.4",
"react-native-pager-view": "^5.4.9",
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.3.0",
"react-native-screens": "^3.10.1",
"react-native-svg": "^12.3.0",
"react-native-tab-view": "^3.1.1",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/jest-native": "^4.0.1",
"@testing-library/react-native": "^7.2.0",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/react-native": "^0.63.2",
"@types/react-native-uuid": "^2.0.0",
"@types/react-native-vector-icons": "^6.4.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "^19.6.5",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^27.5.1",
"jest-mock-extended": "^1.0.13",
"metro-react-native-babel-preset": "^0.66.2",
"npm-license-crawler": "^0.2.1",
"react-test-renderer": "17.0.2",
"typedoc": "^0.22.15",
"typescript": "4.6"
},
"resolutions": {
"@types/react": "^16"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}