1{ 2 "name": "@expo/metro-config", 3 "version": "0.13.1", 4 "description": "A Metro config for running React Native projects with the Metro bundler", 5 "main": "build/ExpoMetroConfig.js", 6 "scripts": { 7 "watch": "tsc --watch --preserveWatchOutput", 8 "build": "tsc --emitDeclarationOnly && babel src --out-dir build --extensions \".ts\" --source-maps --ignore \"src/**/__mocks__/*\",\"src/**/__tests__/*\"", 9 "prepare": "yarn run clean && yarn build", 10 "clean": "rimraf build ./tsconfig.tsbuildinfo", 11 "lint": "eslint .", 12 "test": "jest" 13 }, 14 "repository": { 15 "type": "git", 16 "url": "https://github.com/expo/expo.git", 17 "directory": "packages/@expo/metro-config" 18 }, 19 "keywords": [ 20 "expo", 21 "metro" 22 ], 23 "license": "MIT", 24 "bugs": { 25 "url": "https://github.com/expo/expo/issues" 26 }, 27 "homepage": "https://github.com/expo/expo/tree/main/packages/@expo/metro-config#readme", 28 "files": [ 29 "build", 30 "transformer", 31 "babel-transformer" 32 ], 33 "dependencies": { 34 "babel-preset-fbjs": "^3.4.0", 35 "@expo/config": "~8.3.0", 36 "@expo/env": "~0.1.0", 37 "@expo/json-file": "~8.2.37", 38 "chalk": "^4.1.0", 39 "debug": "^4.3.2", 40 "find-yarn-workspace-root": "~2.0.0", 41 "getenv": "^1.0.0", 42 "jsc-safe-url": "^0.2.4", 43 "lightningcss": "~1.19.0", 44 "postcss": "~8.4.21", 45 "resolve-from": "^5.0.0", 46 "sucrase": "^3.20.0" 47 }, 48 "peerDependencies": { 49 "@babel/core": "*", 50 "metro-react-native-babel-preset": "*" 51 }, 52 "devDependencies": { 53 "@babel/core": "^7.15.5", 54 "sass": "^1.60.0" 55 }, 56 "publishConfig": { 57 "access": "public" 58 } 59} 60