-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.95 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.95 KB
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
{
"name": "queuetime",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start --dev-client",
"tunnel": "expo start --dev-client --tunnel",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"emulators": "firebase emulators:start --only firestore,auth --project qtime-bd47e",
"build:android": "eas build --profile development --platform android",
"build:ios": "eas build --profile development-ios --platform ios",
"submit:android": "eas build --profile production --platform android --auto-submit",
"generate:api": "x(){ openapi-generator-cli generate -i $1 -g typescript-axios -o src/api/generated --additional-properties=supportsES6=true,withInterfaces=true; };x",
"test": "jest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:errors": "eslint . --quiet",
"lint:fix": "eslint --fix ."
},
"jest": {
"preset": "jest-expo",
"roots": [
"src"
],
"setupFiles": [
"./node_modules/@react-native-google-signin/google-signin/jest/build/setup.js",
"./jest.setup.js"
],
"testRegex": "\\.test\\.tsx?$",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@bang88/.*|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|axios|victory.*)"
]
},
"dependencies": {
"@ant-design/react-native": "git+https://github.com/QueueTime/ant-design-mobile-rn.git",
"@react-native-community/segmented-control": "^2.2.2",
"@react-native-community/slider": "4.2.4",
"@react-native-firebase/app": "^16.5.0",
"@react-native-firebase/auth": "^16.5.0",
"@react-native-firebase/firestore": "^16.5.0",
"@react-native-google-signin/google-signin": "^9.0.2",
"@react-native-picker/picker": "2.4.8",
"@react-navigation/bottom-tabs": "^6.5.0",
"@react-navigation/native": "^6.1.0",
"@react-navigation/stack": "^6.3.12",
"axios": "^1.2.1",
"eas-cli": "^3.9.0",
"expo": "~47.0.8",
"expo-apple-authentication": "~5.0.1",
"expo-background-fetch": "~11.0.1",
"expo-build-properties": "~0.4.1",
"expo-clipboard": "^4.0.1",
"expo-crypto": "~12.0.0",
"expo-dev-client": "~2.0.1",
"expo-location": "~15.0.1",
"expo-permissions": "~14.0.0",
"expo-secure-store": "~12.0.0",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"expo-task-manager": "~11.0.1",
"expo-updates": "~0.15.6",
"haversine-distance": "^1.2.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-animated-pagination-dots": "^0.1.73",
"react-native-confetti-cannon": "^1.5.2",
"react-native-gesture-handler": "~2.8.0",
"react-native-maps": "^1.4.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-svg": "^13.7.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-web": "~0.18.7",
"react-navigation-tabs": "^2.11.2",
"recoil": "^0.7.7",
"recoil-nexus": "^0.4.0",
"victory-native": "^36.6.8"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/jest-native": "^5.3.2",
"@testing-library/react-native": "^11.5.0",
"@types/jest": "^29.2.4",
"@types/react": "~18.0.24",
"@types/react-native": "~0.70.6",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^26.6.3",
"jest-expo": "^47.0.0",
"jest-mock-extended": "^3.0.3",
"prettier": "^2.8.1",
"react-native-dotenv": "^3.4.7",
"react-test-renderer": "^18.1.0",
"typescript": "^4.6.3"
},
"private": true
}