create-expo-stack 2.11.24 → 2.11.25-next.e65d9f0

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/README.md CHANGED
@@ -59,7 +59,7 @@ Each project is generated based on the results of the CLI, on a per-file basis.
59
59
 
60
60
  | Library | Category | Version | Description |
61
61
  | ------------------ | ------------------- | ------- | ---------------------------------------------- |
62
- | React Native | Mobile Framework | v0.73 | The best cross-platform mobile framework |
62
+ | React Native | Mobile Framework | v0.74 | The best cross-platform mobile framework |
63
63
  | React | UI Framework | v18 | The most popular UI framework in the world |
64
64
  | TypeScript | Language | v5 | Static typechecking |
65
65
  | React Navigation | Navigation | v6 | Performant and consistent navigation framework |
@@ -296,6 +296,13 @@ Thanks go to these wonderful people:
296
296
  <sub><b>YOUNESS HASSOUNE</b></sub>
297
297
  </a>
298
298
  </td>
299
+ <td align="center">
300
+ <a href="https://github.com/Viraj-10">
301
+ <img src="https://avatars.githubusercontent.com/u/66306233?v=4" width="100;" alt="Viraj-10"/>
302
+ <br />
303
+ <sub><b>Viraj Joshi</b></sub>
304
+ </a>
305
+ </td>
299
306
  <td align="center">
300
307
  <a href="https://github.com/Hacksore">
301
308
  <img src="https://avatars.githubusercontent.com/u/996134?v=4" width="100;" alt="Hacksore"/>
@@ -309,15 +316,15 @@ Thanks go to these wonderful people:
309
316
  <br />
310
317
  <sub><b>Salloom</b></sub>
311
318
  </a>
312
- </td>
319
+ </td></tr>
320
+ <tr>
313
321
  <td align="center">
314
322
  <a href="https://github.com/ralacerda">
315
323
  <img src="https://avatars.githubusercontent.com/u/19380403?v=4" width="100;" alt="ralacerda"/>
316
324
  <br />
317
325
  <sub><b>Renato Lacerda</b></sub>
318
326
  </a>
319
- </td></tr>
320
- <tr>
327
+ </td>
321
328
  <td align="center">
322
329
  <a href="https://github.com/imranbarbhuiya">
323
330
  <img src="https://avatars.githubusercontent.com/u/74945038?v=4" width="100;" alt="imranbarbhuiya"/>
@@ -352,15 +359,15 @@ Thanks go to these wonderful people:
352
359
  <br />
353
360
  <sub><b>Jeff Boek</b></sub>
354
361
  </a>
355
- </td>
362
+ </td></tr>
363
+ <tr>
356
364
  <td align="center">
357
365
  <a href="https://github.com/gwenoleR">
358
366
  <img src="https://avatars.githubusercontent.com/u/10418241?v=4" width="100;" alt="gwenoleR"/>
359
367
  <br />
360
368
  <sub><b>Null</b></sub>
361
369
  </a>
362
- </td></tr>
363
- <tr>
370
+ </td>
364
371
  <td align="center">
365
372
  <a href="https://github.com/claudesortwell">
366
373
  <img src="https://avatars.githubusercontent.com/u/41422239?v=4" width="100;" alt="claudesortwell"/>
@@ -29,7 +29,15 @@
29
29
  },
30
30
  "dependencies": {
31
31
  <% if (props.stylingPackage?.name === "nativewind" || props.stylingPackage?.name === "nativewindui") { %>
32
- "nativewind": "next",
32
+ "nativewind": "latest",
33
+ <%# This will already be installed if using expo-router (see below) %>
34
+ <% if (props.navigationPackage?.name !== "expo-router") { %>
35
+ "react-native-reanimated": "~3.10.1",
36
+ <% } %>
37
+ <%# This will already be installed if using navigation (see below) %>
38
+ <% if (props.navigationPackage?.type !== "navigation") { %>
39
+ "react-native-safe-area-context": "4.10.5",
40
+ <% } %>
33
41
  <% } %>
34
42
  <% if (props.stylingPackage?.name === "nativewindui") { %>
35
43
  "@roninoss/icons": "^0.0.4",
package/package.json CHANGED
@@ -1,74 +1,74 @@
1
1
  {
2
- "name": "create-expo-stack",
3
- "version": "2.11.24",
4
- "description": "CLI tool to initialize a React Native application with Expo",
5
- "repository": {
6
- "type": "git",
7
- "url": "https://github.com/roninoss/create-expo-stack.git",
8
- "directory": "cli"
9
- },
10
- "homepage": "https://rn.new",
11
- "license": "MIT",
12
- "types": "build/types/types.d.ts",
13
- "bin": {
14
- "create-expo-stack": "bin/create-expo-stack.js"
15
- },
16
- "files": [
17
- "build",
18
- "LICENSE",
19
- "readme.md",
20
- "docs",
21
- "bin"
22
- ],
23
- "scripts": {
24
- "build": "bun run clean-build && bun run compile && bun run copy-templates && bun run lint-templates",
25
- "bump": "bun run ./src/utilities/bumpVersion.ts",
26
- "clean-build": "rm -rf ./build",
27
- "compile": "tsc -p .",
28
- "copy-templates": "bun run copyfiles -u 2 -a \"./src/templates/**/*\" ./build/templates",
29
- "dev": "bun run build && NODE_ENV=development bun run bin/create-expo-stack.js",
30
- "format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --resolve-plugins-relative-to . && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
31
- "lint-templates": "bun run ejslint ./src/templates",
32
- "prepublishOnly": "bun run build",
33
- "publishPublic": "bun run build && npm publish --access public",
34
- "snapshot-update": "bun test --bail=1 --timeout 160000 --update-snapshots",
35
- "test:watch": "bun test --watch",
36
- "test": "bun test --bail=1 --timeout 160000",
37
- "test:all": "ALL_PACKAGE_MANAGERS=true bun test --bail=1 --timeout 160000"
38
- },
39
- "prettier": {
40
- "arrowParens": "always",
41
- "bracketSameLine": false,
42
- "bracketSpacing": true,
43
- "printWidth": 120,
44
- "semi": true,
45
- "singleQuote": true,
46
- "tabWidth": 2,
47
- "trailingComma": "none",
48
- "useTabs": false
49
- },
50
- "dependencies": {
51
- "@clack/prompts": "^0.7.0",
52
- "ejs-lint": "^2.0.0",
53
- "expo": "^51.0.11",
54
- "figlet": "^1.6.0",
55
- "gluegun": "latest",
56
- "google-auth-library": "^9.11.0",
57
- "googleapis": "^140.0.0",
58
- "gradient-string": "^2.0.2"
59
- },
60
- "devDependencies": {
61
- "@types/gradient-string": "^1.1.2",
62
- "@typescript-eslint/eslint-plugin": "^6.9.1",
63
- "@typescript-eslint/parser": "^6.9.1",
64
- "copyfiles": "^2.4.1",
65
- "eslint": "^8.53.0",
66
- "eslint-config-prettier": "^9.0.0",
67
- "eslint-plugin-prettier": "^5.0.1",
68
- "husky": "^5.1.3",
69
- "prettier": "^3.1.0"
70
- },
71
- "publishConfig": {
72
- "provenance": false
73
- }
2
+ "name": "create-expo-stack",
3
+ "version": "2.11.25-next.e65d9f0",
4
+ "description": "CLI tool to initialize a React Native application with Expo",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/roninoss/create-expo-stack.git",
8
+ "directory": "cli"
9
+ },
10
+ "homepage": "https://rn.new",
11
+ "license": "MIT",
12
+ "types": "build/types/types.d.ts",
13
+ "bin": {
14
+ "create-expo-stack": "bin/create-expo-stack.js"
15
+ },
16
+ "files": [
17
+ "build",
18
+ "LICENSE",
19
+ "readme.md",
20
+ "docs",
21
+ "bin"
22
+ ],
23
+ "scripts": {
24
+ "build": "bun run clean-build && bun run compile && bun run copy-templates && bun run lint-templates",
25
+ "bump": "bun run ./src/utilities/bumpVersion.ts",
26
+ "clean-build": "rm -rf ./build",
27
+ "compile": "tsc -p .",
28
+ "copy-templates": "bun run copyfiles -u 2 -a \"./src/templates/**/*\" ./build/templates",
29
+ "dev": "bun run build && NODE_ENV=development bun run bin/create-expo-stack.js",
30
+ "format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --resolve-plugins-relative-to . && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
31
+ "lint-templates": "bun run ejslint ./src/templates",
32
+ "prepublishOnly": "bun run build",
33
+ "publishPublic": "bun run build && npm publish --access public",
34
+ "snapshot-update": "bun test --bail=1 --timeout 160000 --update-snapshots",
35
+ "test:watch": "bun test --watch",
36
+ "test": "bun test --bail=1 --timeout 160000",
37
+ "test:all": "ALL_PACKAGE_MANAGERS=true bun test --bail=1 --timeout 160000"
38
+ },
39
+ "prettier": {
40
+ "arrowParens": "always",
41
+ "bracketSameLine": false,
42
+ "bracketSpacing": true,
43
+ "printWidth": 120,
44
+ "semi": true,
45
+ "singleQuote": true,
46
+ "tabWidth": 2,
47
+ "trailingComma": "none",
48
+ "useTabs": false
49
+ },
50
+ "dependencies": {
51
+ "@clack/prompts": "^0.7.0",
52
+ "ejs-lint": "^2.0.0",
53
+ "expo": "^51.0.11",
54
+ "figlet": "^1.6.0",
55
+ "gluegun": "latest",
56
+ "google-auth-library": "^9.11.0",
57
+ "googleapis": "^140.0.0",
58
+ "gradient-string": "^2.0.2"
59
+ },
60
+ "devDependencies": {
61
+ "@types/gradient-string": "^1.1.2",
62
+ "@typescript-eslint/eslint-plugin": "^6.9.1",
63
+ "@typescript-eslint/parser": "^6.9.1",
64
+ "copyfiles": "^2.4.1",
65
+ "eslint": "^8.53.0",
66
+ "eslint-config-prettier": "^9.0.0",
67
+ "eslint-plugin-prettier": "^5.0.1",
68
+ "husky": "^5.1.3",
69
+ "prettier": "^3.1.0"
70
+ },
71
+ "publishConfig": {
72
+ "provenance": false
73
+ }
74
74
  }