1{ 2 "name": "create-expo", 3 "version": "2.1.1", 4 "bin": "./build/index.js", 5 "main": "build", 6 "description": "Create universal Expo apps", 7 "license": "BSD-3-Clause", 8 "keywords": [ 9 "expo", 10 "react-native", 11 "react" 12 ], 13 "homepage": "https://docs.expo.dev", 14 "repository": { 15 "type": "git", 16 "url": "https://github.com/expo/expo.git", 17 "directory": "packages/create-expo" 18 }, 19 "author": "Evan Bacon <[email protected]> (https://github.com/evanbacon)", 20 "files": [ 21 "build", 22 "template" 23 ], 24 "scripts": { 25 "build": "ncc build ./src/index.ts -o build/", 26 "build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register", 27 "prepare": "yarn run clean && yarn run build:prod", 28 "clean": "expo-module clean", 29 "lint": "expo-module lint", 30 "typecheck": "expo-module typecheck", 31 "test": "expo-module test", 32 "test:e2e": "expo-module test --config e2e/jest.config.js", 33 "watch": "yarn run build -w", 34 "prepublishOnly": "expo-module prepublishOnly" 35 }, 36 "devDependencies": { 37 "@expo/json-file": "8.2.37", 38 "@expo/package-manager": "^1.1.1", 39 "@expo/spawn-async": "^1.7.0", 40 "@types/debug": "^4.1.7", 41 "@types/getenv": "^1.0.0", 42 "@types/node": "^16.11.56", 43 "@types/node-fetch": "^2.5.8", 44 "@types/prompts": "2.0.14", 45 "@types/tar": "^6.1.2", 46 "@vercel/ncc": "^0.38.0", 47 "arg": "^5.0.2", 48 "chalk": "^4.0.0", 49 "debug": "^4.3.4", 50 "expo-module-scripts": "^3.0.0", 51 "getenv": "^1.0.0", 52 "minipass": "^3.3.6", 53 "node-fetch": "^2.6.7", 54 "ora": "3.4.0", 55 "prompts": "^2.4.2", 56 "tar": "6.1.13", 57 "update-check": "^1.5.4" 58 } 59} 60