-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.44 KB
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
{
"name": "Rn_Starter",
"displayName": "Rn Starter",
"version": "1.0.0",
"private": true,
"scripts": {
"tools": "react-devtools",
"android": "react-native run-android",
"windows": "react-native run-windows",
"ios": "react-native run-ios",
"lint": "eslint .",
"start": "react-native start --reset-cache",
"test": "jest",
"clean": "npm run clean-npm && npm run clean-android",
"clean-npm": "npm cache clean -force && rm -rf node_modules && rm -rf package-lock.json",
"clean-android": "watchman watch-del-all && rm -rf android/app/build",
"prerelease": "react-native-asset",
"release-windows": "echo USE THE SOLUTION FOR PUBLISHING",
"release": "npm run release-android && npm run release-ios && npm run release-windows",
"release-ios": "echo USE XCODE AD PUBLISH AN ARCHIVE",
"release-android": "cd ./android && gradlew bundleRelease && gradlew assembleRelease && cd../",
"sign-android": "cd android/app && keytool -genkeypair -v -storetype PKCS12 -keystore production.keystore -alias production -keyalg RSA -keysize 2048 -validity 10000 && cd ../../"
},
"dependencies": {
"@react-navigation/drawer": "^6.6.2",
"@react-navigation/material-bottom-tabs": "^6.2.15",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-dropdownalert": "^4.5.1",
"react-native-gesture-handler": "^2.9.0",
"react-native-paper": "^5.7.2",
"react-native-push-notification": "^8.1.1",
"react-native-reanimated": "^3.1.0",
"react-native-safe-area-context": "^4.5.2",
"react-native-screens": "^3.20.0",
"react-native-vector-icons": "^9.2.0",
"react-native-windows": "0.71.10",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@tsconfig/react-native": "^2.0.2",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"jest": "^29.2.1",
"metro-config": "^0.73.9",
"metro-react-native-babel-preset": "0.73.9",
"prettier": "^2.4.1",
"react-devtools": "^4.27.6",
"react-native-asset": "^2.1.1",
"react-native-dotenv": "^3.4.8",
"react-test-renderer": "18.2.0",
"redux-devtools-extension": "^2.13.9"
},
"jest": {
"preset": "react-native"
}
}