forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
58
59
60
{
"name": "@expo/dev-server",
"version": "0.1.105",
"description": "Development servers for starting React Native projects",
"main": "build/MetroDevServer.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/dev-server"
},
"keywords": [
"json",
"react-native",
"expo",
"react",
"metro",
"dev-server",
"bundler"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/expo-cli/issues"
},
"homepage": "https://github.com/expo/expo-cli/tree/main/packages/dev-server#readme",
"files": [
"build",
"!*/__tests__/*"
],
"dependencies": {
"@expo/bunyan": "4.0.0",
"@expo/metro-config": "0.3.11",
"@expo/osascript": "2.0.31",
"@react-native-community/cli-server-api": "^5.0.1",
"body-parser": "1.19.0",
"chalk": "^4.0.0",
"connect": "^3.7.0",
"fs-extra": "9.0.0",
"node-fetch": "^2.6.0",
"open": "^8.3.0",
"resolve-from": "^5.0.0",
"semver": "7.3.2",
"serialize-error": "6.0.0",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"@types/connect": "^3.4.33",
"metro-inspector-proxy": "^0.64.0"
},
"publishConfig": {
"access": "public"
}
}