-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 6.75 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
{
"name": "idpmobile",
"version": "0.0.1",
"private": true,
"scripts": {
"tsc": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"android:local": "npm run lint && npm run tsc && react-native run-android --mode=localDebug --appIdSuffix=local",
"android:local:8082": "npm run lint && npm run tsc && react-native run-android --port 8082 --mode=localDebug --appIdSuffix=local",
"android:dev": "npm run lint && npm run tsc && react-native run-android --mode=devDebug --appIdSuffix=dev",
"android:release:dev": "npm run lint && npm run tsc && react-native run-android --mode=devRelease --appIdSuffix=dev",
"android:build:apk:dev": "npm run lint && npm run tsc && cd android && ./gradlew assembleDevRelease",
"android:build:aab:dev:legacy": "npm run lint && npm run tsc && cd android && ./gradlew bundleDevRelease",
"android:build:aab:dev": "npm run lint && npm run tsc && react-native build-android --mode=devRelease",
"android:sit": "npm run lint && npm run tsc && react-native run-android --mode=sitDebug --appIdSuffix=sit",
"android:release:sit": "npm run lint && npm run tsc && react-native run-android --mode=sitRelease --appIdSuffix=sit",
"android:build:apk:sit": "npm run lint && npm run tsc && cd android && ./gradlew assembleSitRelease",
"android:build:aab:sit:legacy": "npm run lint && npm run tsc && cd android && ./gradlew bundleSitRelease",
"android:build:aab:sit": "npm run lint && npm run tsc && react-native build-android --mode=sitRelease",
"android:stag": "npm run lint && npm run tsc && react-native run-android --mode=stagingDebug --appIdSuffix=staging",
"android:release:stag": "npm run lint && npm run tsc && react-native run-android --mode=stagingRelease --appIdSuffix=staging",
"android:build:apk:stag": "npm run lint && npm run tsc && cd android && ./gradlew assembleStagingRelease",
"android:build:aab:stag:legacy": "npm run lint && npm run tsc && cd android && ./gradlew bundleStagingRelease",
"android:build:aab:stag": "npm run lint && npm run tsc && react-native build-android --mode=stagingRelease",
"android:prod": "npm run lint && npm run tsc && react-native run-android --mode=productionDebug --appIdSuffix=production",
"android:release:prod": "npm run lint && npm run tsc && react-native run-android --mode=productionRelease --appIdSuffix=production",
"android:build:apk:prod": "npm run lint && npm run tsc && cd android && ./gradlew assembleProductionRelease",
"android:build:aab:prod:legacy": "npm run lint && npm run tsc && cd android && ./gradlew bundleProductionRelease",
"android:build:aab:prod": "npm run lint && npm run tsc && react-native build-android --mode=productionRelease",
"ios:local": "npm run lint && npm run tsc && react-native run-ios --simulator='iPhone 15 Pro' --scheme Local",
"ios:local:8082": "npm run lint && npm run tsc && react-native run-ios --port 8082 --simulator='iPhone 15 Pro' --scheme Local",
"ios:local:device": "npm run lint && npm run tsc && react-native run-ios --device='DMPFHJX7LM93' --scheme Local",
"ios:dev": "npm run lint && npm run tsc && react-native run-ios --simulator='iPhone 15 Pro' --scheme Dev",
"ios:dev:device": "npm run lint && npm run tsc && react-native run-ios --device='AccuV-iPad' --scheme Dev",
"ios:sit": "npm run lint && npm run tsc && react-native run-ios --simulator='iPhone 15 Pro' --scheme Sit",
"ios:sit:device": "npm run lint && npm run tsc && react-native run-ios --device='NDW456PDH3' --scheme Sit",
"ios:stag": "npm run lint && npm run tsc && react-native run-ios --simulator='iPhone 15 Pro' --scheme Staging",
"ios:stag:device": "npm run lint && npm run tsc && react-native run-ios --device='NDW456PDH3' --scheme Staging",
"ios:prod": "npm run lint && npm run tsc && react-native run-ios --simulator='iPhone 15 Pro' --scheme Production",
"ios:prod:device": "npm run lint && npm run tsc && react-native run-ios --device='NDW456PDH3' --scheme Production",
"prestart": "npm run lint && npm run tsc",
"start": "react-native start",
"start:clean": "npm run lint && npm run tsc && react-native start --reset-cache",
"start:clean:8082": "npm run lint && react-native start --port 8082 --reset-cache",
"start:debug": "npm run lint && npm run tsc && react-native start --experimental-debugger",
"start:clean:debug": "npm run lint && npm run tsc && react-native start --reset-cache --experimental-debugger",
"postinstall": "patch-package && npm dedupe && npx jetify",
"debugger": "open 'rndebugger://set-debugger-loc?host=localhost'",
"debugger:8082": "open 'rndebugger://set-debugger-loc?host=localhost&port=8082'",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-native-fontawesome": "^0.3.2",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/drawer": "^6.7.2",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.11.0",
"@reduxjs/toolkit": "^2.2.7",
"axios": "^1.7.4",
"dayjs": "^1.11.12",
"i": "^0.3.7",
"jwt-decode": "^4.0.0",
"npm": "^10.8.2",
"patch-package": "^8.0.0",
"react": "18.3.1",
"react-native": "0.75.1",
"react-native-bootsplash": "^6.1.1",
"react-native-chart-kit": "^6.12.0",
"react-native-config": "^1.5.3",
"react-native-device-info": "^11.1.0",
"react-native-gesture-handler": "^2.18.1",
"react-native-reanimated": "^3.15.3",
"react-native-root-toast": "^3.6.0",
"react-native-safe-area-context": "^4.10.9",
"react-native-screens": "^3.34.0",
"react-native-svg": "^15.5.0",
"react-native-ui-datepicker": "^2.0.3",
"react-redux": "^9.1.2",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native/babel-preset": "0.75.1",
"@react-native/eslint-config": "0.75.1",
"@react-native/metro-config": "0.75.1",
"@react-native/typescript-config": "0.75.1",
"@types/react": "^18.3.3",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jetifier": "^2.0.0",
"prettier": "3.3.3",
"react-test-renderer": "18.3.1",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18"
},
"overrides": {
"eslint-plugin-jest": "28.2.0"
}
}