-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
{
"private": true,
"name": "@acme/app-mobile",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "expo start",
"lint": "eslint --ext js,ts,tsx .",
"build": "expo export --output-dir ./build --platform all",
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eas-build-pre-install": "npm install --global [email protected]",
"eas-build-post-install": "pnpm run -w build:mobile"
},
"dependencies": {
"@acme/feature-home": "*",
"@babel/runtime": "^7.22.15",
"@rnx-kit/metro-config": "^1.3.9",
"@rnx-kit/metro-resolver-symlinks": "^0.1.32",
"expo": "^49.0.10",
"expo-dev-client": "~2.4.8",
"expo-status-bar": "~1.6.0",
"expo-updates": "~0.18.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.4",
"react-native-web": "~0.19.6",
"expo-splash-screen": "~0.20.5"
},
"devDependencies": {
"@acme/eslint-config": "*",
"@babel/core": "^7.19.3",
"@types/react": "~18.2.14",
"@types/react-dom": "~18.0.11",
"@types/react-native": "~0.70.6",
"babel-preset-expo": "~9.5.0"
},
"eslintConfig": {
"extends": "@acme/eslint-config",
"ignorePatterns": [
"node_modules",
"build",
".expo",
".expo-shared"
],
"overrides": [
{
"files": [
"*.js"
],
"env": {
"node": true
}
}
]
}
}