-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.74 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.74 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
{
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"build:android:development": "eas build -p android --profile development --non-interactive",
"build:ios": "eas build -p ios",
"eject": "expo eject",
"check-types": "tsc",
"lint": "eslint --format codeframe \"**/*.ts\" \"**/*.tsx\"",
"prettier:check": "prettier --check \"{./,./src/**/}*.{js,json,ts,tsx}\"",
"prettier:write": "prettier --write \"{./,./src/**/}*.{js,json,ts,tsx}\"",
"validate": "npm run lint && npm run check-types",
"test": "jest --coverage",
"rebuild": "rm -rf node_modules && yarn install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "~1.18.2",
"@react-native-community/datetimepicker": "^7.2.0",
"@react-native-community/netinfo": "^9.3.10",
"@react-native-picker/picker": "2.4.10",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"@rneui/base": "^4.0.0-rc.7",
"@rneui/themed": "^4.0.0-rc.7",
"expo": "49.0.6",
"expo-application": "^5.3.0",
"expo-constants": "~14.4.2",
"expo-localization": "~14.3.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-sqlite": "~11.3.3",
"expo-status-bar": "~1.6.0",
"i18n-js": "^3.8.0",
"jest": "^29.2.1",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.6",
"react-native-dotenv": "^2.4.2",
"react-native-gesture-handler": "~2.12.0",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
"react-native-modal": "^13.0.1",
"react-native-modal-datetime-picker": "^14.0.0",
"react-native-picker-select": "^8.0.4",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-storage": "^1.0.1",
"react-native-swipe-list-view": "^3.1.0",
"react-native-toast-message": "^2.1.7",
"react-native-vector-icons": "^6.4.2",
"react-tracked": "^1.4.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react": "^14.0.0",
"@testing-library/react-native": "^12.3.2",
"@types/expo__vector-icons": "^9.0.1",
"@types/react": "^18.2.33",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"babel-preset-expo": "~9.5.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"jest-expo": "^49.0.0",
"prettier": "^1.19.1",
"typescript": "^5.1.3"
},
"private": true,
"name": "GrassRootsSurveyMobileApp",
"version": "1.0.0"
}