This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
106 lines (106 loc) · 3.3 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
98
99
100
101
102
103
104
105
106
{
"name": "billy",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --cache --fix --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-staged": "lint-staged",
"prepare": "husky install",
"update-types": "npx openapi-typescript \"${SUPABASE_URL}/rest/v1/?apikey=${SUPABASE_ANON_KEY}\" --version=2 --output src/types/supabase.ts",
"e2e:build:android": "detox build --configuration android.release",
"e2e:test:android": "detox test --configuration android.release",
"e2e:build:ios": "detox build --configuration ios.release",
"e2e:test:ios": "detox test --configuration ios.release"
},
"dependencies": {
"@eva-design/eva": "^2.1.0",
"@notifee/react-native": "^5.1.0",
"@react-native-community/datetimepicker": "^6.1.2",
"@react-native-community/netinfo": "^9.3.0",
"@react-native-firebase/app": "^14.7.0",
"@react-native-firebase/messaging": "^14.7.0",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.5.2",
"@supabase/supabase-js": "^1.33.2",
"@ui-kitten/components": "5.1.2",
"@ui-kitten/eva-icons": "5.1.2",
"@ui-kitten/metro-config": "5.1.2",
"lodash-es": "^4.17.21",
"react": "17.0.2",
"react-hook-form": "^7.29.0",
"react-native": "0.66.0",
"react-native-device-info": "^8.7.0",
"react-native-dotenv": "^3.3.1",
"react-native-get-random-values": "^1.7.2",
"react-native-mmkv": "^2.3.3",
"react-native-modal-datetime-picker": "^13.1.2",
"react-native-reanimated": "^2.10.0",
"react-native-safe-area-context": "^4.2.4",
"react-native-screens": "^3.13.1",
"react-native-svg": "^12.1.1",
"react-native-toast-message": "^2.1.5",
"react-native-url-polyfill": "^1.3.0",
"uuid": "^8.3.2",
"victory-native": "^36.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/runtime": "^7.12.5",
"@jest/types": "^28.0.1",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.6",
"@types/react-native": "^0.66.0",
"@types/react-test-renderer": "^17.0.2",
"@types/uuid": "^8.3.4",
"babel-jest": "^26.6.3",
"detox": "^19.6.5",
"eslint": "^7.14.0",
"husky": "^7.0.0",
"jest": "^27.0.0",
"lint-staged": "^12.3.7",
"metro-react-native-babel-preset": "^0.64.0",
"react-native-flipper": "^0.140.0",
"react-native-mmkv-flipper-plugin": "^1.0.0",
"react-test-renderer": "17.0.2",
"ts-jest": "^27.1.4",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transformIgnorePatterns": [
"node_modules/(?!victory|react-native-svg|react-native)"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}