-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.31 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
{
"name": "react-native-demo",
"version": "1.0.0",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"prepare": "husky install .husky",
"preinstall": "npx only-allow pnpm",
"install-ios-deps": "bundle install && cd ios && bundle exec pod install --verbose && cd ..",
"start": "watchman watch-del-all && expo start -cd --tunnel",
"build:android:debug": "bash ./scripts/build.sh android Debug debug",
"build:android:staging": "bash ./scripts/build.sh android Release staging",
"build:android:release": "bash ./scripts/build.sh android Release release",
"build:ios:debug": "bash ./scripts/build.sh ios Debug debug",
"build:ios:staging": "bash ./scripts/build.sh ios Release staging",
"build:ios:release": "bash ./scripts/build.sh ios Release release",
"lint": "eslint .",
"test": "jest",
"type-check": "tsc",
"android": "expo run:android",
"ios": "expo run:ios",
"buildIconFont": "npx iconfont-rn"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{md,json}": "prettier --write"
},
"dependencies": {
"@gorhom/portal": "^1.0.14",
"@react-navigation/bottom-tabs": "^6.5.9",
"@react-navigation/drawer": "^6.6.4",
"@react-navigation/native": "^6.1.8",
"@react-navigation/native-stack": "^6.9.14",
"@react-navigation/stack": "^6.3.18",
"app-icon-badge": "^0.0.15",
"dayjs": "^1.11.10",
"expo": "~49.0.13",
"expo-dev-client": "~2.4.11",
"expo-file-system": "~15.4.4",
"expo-image": "~1.3.4",
"expo-linking": "~5.0.2",
"expo-navigation-bar": "~2.3.0",
"expo-screen-orientation": "~6.0.5",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.17",
"jotai": "^2.4.3",
"lodash": "^4.17.21",
"lottie-react-native": "5.1.6",
"qss": "^3.0.0",
"react": "18.2.0",
"react-hook-form": "^7.47.0",
"react-native": "0.72.5",
"react-native-gesture-handler": "~2.12.0",
"react-native-logs": "^5.0.1",
"react-native-mmkv": "^2.10.2",
"react-native-modal": "^13.0.1",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "^13.14.0",
"react-native-toast-notifications": "^3.4.0",
"react-native-ui-lib": "7.21.0",
"react-native-webview": "13.2.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@expo/ngrok": "^4.1.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@tsconfig/react-native": "^3.0.0",
"@types/react": "~18.2.14",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^8.19.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^7.0.4",
"jest": "^29.2.1",
"lint-staged": "^12.3.4",
"metro-react-native-babel-preset": "0.76.8",
"prettier": "^2.4.1",
"react-native-iconfont-cli": "^2.2.4",
"react-test-renderer": "18.2.0",
"typescript": "5.1.3"
},
"private": true
}