-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
103 lines (103 loc) · 4 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"eject": "expo eject",
"build:dev": "eas build --profile development --local",
"build:preview": "rm -rf $(pwd)/build/ && EAS_LOCAL_BUILD_WORKINGDIR=$(pwd)/build/ EAS_LOCAL_BUILD_SKIP_CLEANUP=1 PLANNER_CHANNEL=preview PLANNER_MANIFEST_URL=http://10.0.2.2:8000/ru_api/updates/v1/manifest eas build --profile preview --local",
"build:prod": "rm -rf $(pwd)/build/ && EAS_LOCAL_BUILD_WORKINGDIR=$(pwd)/build/ EAS_LOCAL_BUILD_SKIP_CLEANUP=1 PLANNER_CHANNEL=production PLANNER_MANIFEST_URL=https://petbcc.ufscar.br/ru_api/updates/v1/manifest eas build --profile production --local",
"upload:preview": "URL=http://localhost:8000 SIGNING_KEY_ID=testing PLANNER_CHANNEL=preview node upload.cjs",
"upload:prod": "URL=https://petbcc.ufscar.br SIGNING_KEY_ID=v1prodmiguel PLANNER_CHANNEL=production node upload.cjs",
"test": "jest"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"transform": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/testing/assetTransform.cjs"
}
},
"dependencies": {
"@expo-google-fonts/roboto-condensed": "^0.2.2",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/datetimepicker": "7.2.0",
"@react-native-community/netinfo": "9.3.10",
"@react-navigation/core": "^6.x",
"@react-navigation/material-top-tabs": "^6.2.1",
"@react-navigation/native": "^6.x",
"@react-navigation/native-stack": "^6.x",
"@react-navigation/stack": "^6.x",
"@sentry/react-native": "5.5.0",
"@stream-io/flat-list-mvcp": "^0.10.1",
"expo": "^49.0.0",
"expo-application": "~5.3.0",
"expo-constants": "~14.4.2",
"expo-dev-client": "~2.4.8",
"expo-device": "~5.4.0",
"expo-linear-gradient": "~12.3.0",
"expo-notifications": "~0.20.1",
"expo-secure-store": "~12.3.1",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.12",
"lodash.debounce": "^4.0.8",
"mathjs": "^10.0.0",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-bidirectional-infinite-scroll": "^0.3.3",
"react-native-calendars": "^1.1283.0",
"react-native-color-picker": "^0.6.0",
"react-native-gesture-handler": "~2.12.0",
"react-native-modal-datetime-picker": "^13.0.0",
"react-native-pager-view": "6.2.0",
"react-native-paper": "^4.9.2",
"react-native-paper-dropdown": "^1.0.7",
"react-native-picker-scrollview": "^1.0.1",
"react-native-reanimated": "~3.3.0",
"react-native-responsive-screen": "^1.4.2",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-tab-view": "^3.1.1",
"react-native-text-ticker": "^1.14.0",
"react-native-toast-message": "^2.1.1",
"react-native-vector-icons": "^8.1.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-persist": "^6.0.0",
"sentry-expo": "~7.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.1.6",
"@testing-library/react-native": "^12.1.2",
"@types/jest": "^29.5.3",
"@types/react": "^18.0.28",
"@types/react-native": "^0.71.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"axios": "^1.4.0",
"canonical-json": "^0.0.4",
"eslint": "^8.28.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-tsdoc": "^0.2.17",
"form-data": "^4.0.0",
"jest": "^29.5.0",
"jest-expo": "^48.0.2",
"mime": "^3.0.0",
"prompt-sync": "^4.2.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "^18.2.0",
"typescript": "^5.1.3"
},
"resolutions": {
"react-freeze": "1.0.3",
"@types/react": "18.0.28",
"@types/react-native": "0.71.3"
},
"private": true
}