-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 loc) · 3.13 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
{
"name": "@vse-bude/mobile",
"version": "0.0.1",
"private": true,
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
},
"prettier": "@vse-bude/prettier-config",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"lint:fs": "ls-lint",
"lint:type": "npx tsc --noEmit",
"lint:js": "npx eslint \"src/**/*.{ts,tsx}\"",
"lint": "npm run lint:fs && npm run lint:type && npm run lint:js",
"lint:fix": "npm run lint:fs && npm run lint:type && npm run lint:js -- --fix",
"prettier:check": "npx prettier --check \"src/**/*.{ts,tsx}\" --loglevel=warn",
"prettier:fix": "npx prettier --write \"src/**/*.{ts,tsx}\" --loglevel=warn"
},
"dependencies": {
"@hookform/resolvers": "2.9.5",
"@ptomasroos/react-native-multi-slider": "2.2.2",
"@react-native-community/checkbox": "0.5.12",
"@react-native-community/datetimepicker": "6.3.4",
"@react-native-community/push-notification-ios": "1.10.1",
"@react-navigation/bottom-tabs": "6.3.2",
"@react-navigation/drawer": "6.4.4",
"@react-navigation/native": "6.0.11",
"@react-navigation/native-stack": "6.7.0",
"@reduxjs/toolkit": "1.8.3",
"@vse-bude/shared": "file:../shared/build",
"color": "4.2.3",
"dayjs": "1.11.5",
"fast-text-encoding": "1.0.4",
"i18next": "21.9.0",
"joi": "17.6.0",
"react": "18.0.0",
"react-hook-form": "7.33.1",
"react-i18next": "11.18.3",
"react-native": "0.69.3",
"react-native-bootsplash": "4.3.2",
"react-native-config": "1.4.6",
"react-native-device-info": "10.0.2",
"react-native-dropdown-picker": "5.4.2",
"react-native-gesture-handler": "2.6.0",
"react-native-image-picker": "4.10.0",
"react-native-linear-gradient": "2.6.2",
"react-native-mmkv": "2.4.3",
"react-native-modal-datetime-picker": "14.0.0",
"react-native-permissions": "3.6.1",
"react-native-popover-view": "5.1.2",
"react-native-push-notification": "8.1.1",
"react-native-reanimated": "2.10.0",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "3.15.0",
"react-native-svg": "12.4.4",
"react-native-toast-message": "2.1.5",
"react-native-vector-icons": "9.2.0",
"react-redux": "8.0.2",
"socket.io-client": "4.5.2"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-export-namespace-from": "7.18.6",
"@babel/runtime": "7.18.6",
"@ls-lint/ls-lint": "1.11.2",
"@types/color": "3.0.3",
"@types/react": "18.0.15",
"@types/react-native": "0.69.2",
"@types/react-native-push-notification": "8.1.1",
"@types/react-native-vector-icons": "6.4.11",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@vse-bude/prettier-config": "file:../prettier-config",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "8.19.0",
"eslint-plugin-import": "2.26.0",
"lint-staged": "13.0.3",
"metro-react-native-babel-preset": "0.70.3",
"prettier": "2.7.1",
"react-native-flipper": "0.158.0",
"redux-flipper": "2.0.2",
"typescript": "4.7.4"
},
"overrides": {
"react": "$react"
}
}