1{
2  "name": "@expo/metro-config",
3  "version": "0.7.0",
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  ],
32  "dependencies": {
33    "@expo/config": "~8.0.0",
34    "@expo/env": "~0.0.2",
35    "@expo/json-file": "~8.2.37",
36    "chalk": "^4.1.0",
37    "debug": "^4.3.2",
38    "find-yarn-workspace-root": "~2.0.0",
39    "getenv": "^1.0.0",
40    "lightningcss": "~1.19.0",
41    "postcss": "~8.4.21",
42    "resolve-from": "^5.0.0",
43    "sucrase": "^3.20.0"
44  },
45  "devDependencies": {
46    "@babel/core": "^7.15.5",
47    "sass": "^1.60.0"
48  },
49  "publishConfig": {
50    "access": "public"
51  }
52}
53