-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.38 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@eslam-elmeniawy/react-native-template",
"version": "5.0.0",
"description": "\"ReactNative\" template with initial setup.",
"scripts": {
"test": "exit 0",
"prepare": "lefthook install",
"release": "release-it"
},
"files": [
"template",
"template.config.js",
"post-init-script.sh",
"!template/**/build/",
"!template/**/**/build/",
"!template/ios/build/",
"!template/android/app/build/",
"!template/**/*.pbxuser",
"template/**/default.pbxuser",
"!template/**/*.mode1v3",
"template/**/default.mode1v3",
"!template/**/*.mode2v3",
"template/**/default.mode2v3",
"!template/**/*.perspectivev3",
"template/**/default.perspectivev3",
"!template/**/xcuserdata",
"!template/**/*.xccheckout",
"!template/**/*.moved-aside",
"!template/**/DerivedData",
"!template/**/*.hmap",
"!template/**/*.ipa",
"!template/**/*.xcuserstate",
"!template/**/.xcode.env.local",
"!template/**/_xcode.env.local",
"!template/**/.idea",
"!template/**/.idea/",
"!template/**/.gradle",
"!template/**/local.properties",
"!template/**/*.iml",
"!template/**/*.hprof",
"!template/**/.cxx/",
"!template/**/*.keystore",
"!node_modules/",
"!template/node_modules/",
"!template/**/node_modules/",
"!template/npm-debug.log",
"!template/yarn-error.log",
"!template/**/*.jsbundle",
"!template/*.jsbundle",
"!template/**/Pods/",
"!template/vendor/bundle/",
"!template/**/vendor/bundle/",
"!template/.metro-health-check*",
"!template/**/.metro-health-check*",
"!template/coverage",
"!template/**/coverage",
"!template/**/tmp.xcconfig",
"!template/**/google-services.json",
"!template/**/GoogleService-Info.plist",
"!template/**/Podfile.lock",
"!template/**/yarn.lock",
"!template/yarn.lock",
"!template/package-lock.json",
"!template/**/package-lock.json",
"!template/**/Gemfile.lock",
"!template/Gemfile.lock"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EslamElMeniawy/react-native-temp.git"
},
"keywords": [
"react-native",
"typescript",
"redux",
"firebase",
"jest",
"template",
"boilerplate"
],
"author": "Eslam ElMeniawy <eslam.elmeniawy@gmail.com> (https://eslamelmeniawy.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/EslamElMeniawy/react-native-temp/issues"
},
"homepage": "https://github.com/EslamElMeniawy/react-native-temp#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@evilmartians/lefthook": "^1.12.3",
"@release-it/conventional-changelog": "8.0.2",
"commitlint": "^19.8.1",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"release-it": "^19.0.4",
"typescript": "^5.9.2"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@4.9.3"
}