-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.79 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
{
"name": "com.distimer.app",
"version": "0.0.2",
"private": true,
"scripts": {
"app": "react-native start",
"app:asset": "react-native-asset",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"ios:pod": "cd ios && pod install && cd ..",
"android:bundle": "rm -rf ./.codepush/android && mkdir ./.codepush/android && react-native bundle --platform android --dev false --entry-file index.js --bundle-output ./.codepush/android/index.android.bundle --assets-dest ./.codepush/android",
"android:codepush": "code-push release DISTIMER-Android ./.codepush/android -d Production",
"ios:bundle": "rm -rf ./.codepush/ios && mkdir ./.codepush/ios && react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ./.codepush/ios/main.jsbundle --assets-dest ./.codepush/ios",
"ios:codepush": "code-push release DISTIMER-iOS ./.codepush/ios -d Production",
"script:oss": "react-native-oss-license --json --only-direct-dependency --skip-not-required > license.json",
"script:watchman": "watchman watch-del './' ; watchman watch-project './'",
"script:orval": "orval --config ./orval.config.js",
"postinstall": "husky"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4.6.3",
"@invertase/react-native-apple-authentication": "^2.3.0",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-native-clipboard/clipboard": "^1.14.1",
"@react-native-google-signin/google-signin": "^12.2.1",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-navigation/bottom-tabs": "^7.0.0-rc.23",
"@react-navigation/native": "^7.0.0-rc.14",
"@react-navigation/native-stack": "^7.0.0-rc.18",
"@react-navigation/stack": "^7.0.0-rc.18",
"@tanstack/react-query": "^5.51.15",
"await-lock": "^2.2.2",
"axios": "^1.7.2",
"jwt-decode": "^4.0.0",
"moment": "^2.30.1",
"phosphor-react-native": "^2.0.0",
"react": "18.3.1",
"react-native": "0.75.2",
"react-native-bootsplash": "^6.1.1",
"react-native-code-push": "^8.3.1",
"react-native-date-picker": "^5.0.4",
"react-native-device-info": "^11.1.0",
"react-native-gesture-handler": "^2.18.1",
"react-native-haptic-feedback": "^2.2.0",
"react-native-linear-gradient": "^2.8.3",
"react-native-reanimated": "^3.15.0",
"react-native-safe-area-context": "^4.10.9",
"react-native-screens": "^3.34.0",
"react-native-skeleton-placeholder": "^5.2.4",
"react-native-svg": "^15.4.0",
"react-native-toast-message": "^2.2.0",
"react-native-webview": "^13.10.5",
"reanimated-color-picker": "^3.0.4",
"recoil": "^0.7.7"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@faker-js/faker": "^8.4.1",
"@react-native/babel-preset": "0.75.2",
"@react-native/eslint-config": "0.75.2",
"@react-native/metro-config": "0.75.2",
"@react-native/typescript-config": "0.75.2",
"@tanstack/eslint-plugin-query": "^5.51.15",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"msw": "^2.3.4",
"prettier": "^3.3.3",
"react-native-asset": "^2.1.1",
"react-native-oss-license": "^0.7.0",
"react-native-svg-transformer": "^1.5.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{ts,tsx}": [
"bun lint:fix"
]
}
}