forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 920 Bytes
/
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
{
"name": "expo-pwa",
"version": "0.0.126",
"main": "build",
"preferGlobal": true,
"keywords": [
"expo",
"pwa",
"react-native",
"react-native-web"
],
"description": "Create PWA resources for Expo projects",
"repository": {
"type": "git",
"url": "https://github.com/expo/expo-cli.git",
"directory": "packages/pwa"
},
"author": "Expo <[email protected]>",
"license": "MIT",
"bin": {
"expo-pwa": "./build/cli.js"
},
"files": [
"build"
],
"scripts": {
"prepare": "yarn run clean && yarn run build",
"test": "jest",
"lint": "eslint .",
"watch": "tsc --watch --preserveWatchOutput",
"build": "tsc",
"clean": "rimraf build ./tsconfig.tsbuildinfo"
},
"dependencies": {
"@expo/image-utils": "0.3.23",
"chalk": "^4.0.0",
"commander": "2.20.0",
"update-check": "1.5.3"
},
"peerDependencies": {
"expo": "*"
}
}