-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 3.02 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
{
"name": "ReactNativeBoilerplate",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"licenses": "npx react-native-oss-license --json > ./src/utils/oss-licenses.json",
"postinstall": "react-native setup-ios-permissions ; npx pod-install ; yarn run licenses",
"postuninstall": "npx pod-install ; yarn run licenses",
"build:android": "cd android && ./gradlew bundleRelease && open ./app/build/outputs/bundle/release",
"build:android-apk": "cd android && ./gradlew assembleRelease && open ./app/build/outputs/apk/release"
},
"dependencies": {
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/material-top-tabs": "^6.6.3",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@tanstack/react-query": "^4.29.15",
"axios": "^1.4.0",
"class-transformer": "^0.5.1",
"lodash.get": "^4.4.2",
"react": "18.2.0",
"react-native": "0.72.0",
"react-native-actions-sheet": "^0.8.29",
"react-native-gesture-handler": "^2.9.0",
"react-native-linear-gradient": "^2.7.3",
"react-native-mmkv": "^2.9.0",
"react-native-pager-view": "^6.2.0",
"react-native-permissions": "^3.8.0",
"react-native-reanimated": "^3.3.0",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "^4.6.3",
"react-native-screens": "^3.22.0",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^12.5.1",
"react-native-tab-view": "^3.5.2",
"react-native-webview": "^13.2.2",
"recoil": "^0.7.7",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@babel/preset-env": "^7.20.0",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.6",
"@tsconfig/react-native": "^3.0.0",
"@types/lodash.get": "^4.4.7",
"@types/metro-config": "^0.76.3",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-styled-components": "^2.1.3",
"eslint": "^8.19.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.76.5",
"prettier": "^2.4.1",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4",
"typescript-styled-plugin": "^0.18.3"
},
"engines": {
"node": ">=16"
},
"reactNativePermissionsIOS": [
"Notifications"
]
}