-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
126 lines (126 loc) · 3.89 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"preinstall": "node scripts/preinstall.js",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test:watch": "jest --watchAll",
"test": "jest",
"test:win": "bin/test.cmd",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./app",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./app --fix",
"typescript": "tsc --noEmit",
"ci": "yarn lint && yarn typescript && yarn test --coverage"
},
"jest": {
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"preset": "jest-expo",
"collectCoverageFrom": [
"app/**/*.(js|jsx|ts|tsx)"
],
"globalSetup": "./global-setup.js"
},
"dependencies": {
"@expo/vector-icons": "14.0.0",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/datetimepicker": "7.2.0",
"@react-native-community/slider": "4.4.2",
"@react-native-masked-view/masked-view": "0.2.9",
"@react-navigation/bottom-tabs": "6.4.0",
"@react-navigation/material-top-tabs": "6.3.0",
"@react-navigation/native": "6.0.13",
"@react-navigation/stack": "6.3.3",
"@reduxjs/toolkit": "1.8.6",
"carbon-footprint": "1.6.0",
"expo": "49.0.0",
"expo-application": "5.3.0",
"expo-asset": "8.10.1",
"expo-barcode-scanner": "12.5.3",
"expo-constants": "14.4.2",
"expo-device": "5.4.0",
"expo-document-picker": "11.5.4",
"expo-file-system": "15.4.4",
"expo-font": "11.4.0",
"expo-linking": "5.0.2",
"expo-localization": "14.3.0",
"expo-notifications": "0.20.1",
"expo-sharing": "11.5.0",
"expo-status-bar": "1.6.0",
"expo-store-review": "6.4.0",
"expo-updates": "0.18.17",
"expo-web-browser": "12.3.2",
"i18n-js": "3.5.1",
"lodash.throttle": "4.1.1",
"moment": "2.24.0",
"ramda": "0.27.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "11.4.0",
"react-native": "0.72.6",
"react-native-collapsible": "1.5.2",
"react-native-gesture-handler": "2.12.0",
"react-native-globalize": "4.5.1",
"react-native-keyboard-aware-scroll-view": "0.9.5",
"react-native-modal-datetime-picker": "14.0.1",
"react-native-pager-view": "6.2.0",
"react-native-progress": "5.0.1",
"react-native-reanimated": "3.3.0",
"react-native-render-html": "5.1.0",
"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.3.0",
"react-redux": "8.0.4",
"redux": "4.2.0",
"redux-persist": "6.0.0",
"redux-thunk": "2.4.1",
"sentry-expo": "7.0.0",
"uuid": "3.4.0"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@types/i18n-js": "3.0.2",
"@types/jest": "29.2.0",
"@types/node": "18.11.7",
"@types/ramda": "0.26.39",
"@types/react": "18.2.14",
"@types/react-dom": "18.0.10",
"@types/react-native-vector-icons": "6.4.6",
"@types/react-redux": "7.1.24",
"@types/react-test-renderer": "18.0.0",
"@types/uuid": "3.4.6",
"@types/webpack-env": "1.18.0",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"babel-preset-expo": "9.5.0",
"dotenv": "16.0.3",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"front-matter": "3.1.0",
"glob": "7.1.6",
"husky": "4.2.5",
"jest": "29.2.1",
"jest-expo": "49.0.0",
"markdown-it": "10.0.0",
"mockdate": "3.0.5",
"prettier": "2.1.2",
"prompt-sync": "4.2.0",
"typescript": "5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn ci"
}
}
}