forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 KB
/
package.json
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
{
"name": "@expo/metro-config",
"version": "0.3.11",
"description": "A Metro config for running React Native projects with the Metro bundler",
"main": "build/ExpoMetroConfig.js",
"scripts": {
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"prepare": "yarn run clean && yarn build",
"clean": "rimraf build ./tsconfig.tsbuildinfo",
"lint": "eslint .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/metro-config"
},
"keywords": [
"json",
"react-native",
"expo",
"react",
"metro",
"metro-config"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/metro-config#readme",
"files": [
"build",
"transformer"
],
"dependencies": {
"@expo/config": "6.0.18",
"@expo/json-file": "8.2.34",
"chalk": "^4.1.0",
"debug": "^4.3.2",
"find-yarn-workspace-root": "~2.0.0",
"getenv": "^1.0.0",
"resolve-from": "^5.0.0",
"sucrase": "^3.20.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"expo": "43",
"metro": "~0.64.0",
"metro-babel-transformer": "~0.64.0",
"metro-config": "~0.64.0",
"react-native": "~0.64.3"
},
"publishConfig": {
"access": "public"
}
}