react-native-boiler-plate-vijay 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-boiler-plate-vijay",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A professional, production-ready React Native boilerplate template with TypeScript, Redux Toolkit, React Navigation, Axios, i18n, SVG support, and scalable architecture.",
5
5
  "keywords": [
6
6
  "react-native",
@@ -16,7 +16,7 @@
16
16
  <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
17
17
  <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
18
18
  <subviews>
19
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="RNBoilerPlate" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
19
+ <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="HelloWorld" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
20
20
  <rect key="frame" x="0.0" y="202" width="375" height="43"/>
21
21
  <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
22
22
  <nil key="highlightedColor"/>
@@ -15,9 +15,9 @@
15
15
  <BuildableReference
16
16
  BuildableIdentifier = "primary"
17
17
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
- BuildableName = "RNBoilerPlate.app"
19
- BlueprintName = "RNBoilerPlate"
20
- ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
18
+ BuildableName = "HelloWorld.app"
19
+ BlueprintName = "HelloWorld"
20
+ ReferencedContainer = "container:HelloWorld.xcodeproj">
21
21
  </BuildableReference>
22
22
  </BuildActionEntry>
23
23
  </BuildActionEntries>
@@ -28,16 +28,6 @@
28
28
  selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
29
  shouldUseLaunchSchemeArgsEnv = "YES">
30
30
  <Testables>
31
- <TestableReference
32
- skipped = "NO">
33
- <BuildableReference
34
- BuildableIdentifier = "primary"
35
- BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
- BuildableName = "RNBoilerPlateTests.xctest"
37
- BlueprintName = "RNBoilerPlateTests"
38
- ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
39
- </BuildableReference>
40
- </TestableReference>
41
31
  </Testables>
42
32
  </TestAction>
43
33
  <LaunchAction
@@ -55,9 +45,9 @@
55
45
  <BuildableReference
56
46
  BuildableIdentifier = "primary"
57
47
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
- BuildableName = "RNBoilerPlate.app"
59
- BlueprintName = "RNBoilerPlate"
60
- ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
48
+ BuildableName = "HelloWorld.app"
49
+ BlueprintName = "HelloWorld"
50
+ ReferencedContainer = "container:HelloWorld.xcodeproj">
61
51
  </BuildableReference>
62
52
  </BuildableProductRunnable>
63
53
  </LaunchAction>
@@ -72,9 +62,9 @@
72
62
  <BuildableReference
73
63
  BuildableIdentifier = "primary"
74
64
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
- BuildableName = "RNBoilerPlate.app"
76
- BlueprintName = "RNBoilerPlate"
77
- ReferencedContainer = "container:RNBoilerPlate.xcodeproj">
65
+ BuildableName = "HelloWorld.app"
66
+ BlueprintName = "HelloWorld"
67
+ ReferencedContainer = "container:HelloWorld.xcodeproj">
78
68
  </BuildableReference>
79
69
  </BuildableProductRunnable>
80
70
  </ProfileAction>
@@ -2,7 +2,7 @@
2
2
  <Workspace
3
3
  version = "1.0">
4
4
  <FileRef
5
- location = "group:RNBoilerPlate.xcodeproj">
5
+ location = "group:HelloWorld.xcodeproj">
6
6
  </FileRef>
7
7
  <FileRef
8
8
  location = "group:Pods/Pods.xcodeproj">
@@ -5,9 +5,16 @@
5
5
  "scripts": {
6
6
  "android": "react-native run-android",
7
7
  "ios": "react-native run-ios",
8
- "lint": "eslint .",
9
8
  "start": "react-native start --reset-cache --client-logs",
10
- "test": "jest"
9
+ "lint": "eslint .",
10
+ "lint:fix": "eslint . --fix",
11
+ "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
12
+ "test": "jest",
13
+ "test:coverage": "jest --coverage",
14
+ "clean": "react-native clean",
15
+ "clean:android": "cd android && ./gradlew clean && cd ..",
16
+ "clean:ios": "cd ios && xcodebuild clean && cd ..",
17
+ "prepare": "husky"
11
18
  },
12
19
  "dependencies": {
13
20
  "@react-native-async-storage/async-storage": "^3.0.2",
@@ -48,16 +55,23 @@
48
55
  "@types/validator": "^13.15.10",
49
56
  "babel-plugin-module-resolver": "^5.0.3",
50
57
  "eslint": "^8.19.0",
58
+ "husky": "^9.1.7",
51
59
  "jest": "^29.6.3",
60
+ "lint-staged": "^15.5.2",
52
61
  "prettier": "2.8.8",
53
62
  "react-native-svg-transformer": "^1.5.3",
54
63
  "react-test-renderer": "19.2.3",
55
64
  "typescript": "^5.8.3"
56
65
  },
57
66
  "jest": {
58
- "preset": "react-native",
59
67
  "preset": "react-native"
60
68
  },
69
+ "lint-staged": {
70
+ "*.{ts,tsx,js,jsx}": [
71
+ "eslint --fix",
72
+ "prettier --write"
73
+ ]
74
+ },
61
75
  "engines": {
62
76
  "node": ">= 22.11.0"
63
77
  }