forked from byCedric/expo-monorepo-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.24 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
{
"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-post-install": "pnpm run -w build:mobile"
},
"dependencies": {
"@acme/feature-home": "workspace:*",
"@expo/metro-runtime": "^3.2.1",
"expo": "^51.0.17",
"expo-dev-client": "~4.0.19",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.18",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.2",
"react-native-web": "~0.19.11"
},
"devDependencies": {
"@acme/eslint-config": "workspace:*",
"@babel/core": "^7.24.5",
"@types/react": "~18.2.79",
"@types/react-dom": "~18.2.25",
"babel-preset-expo": "~11.0.11"
},
"eslintConfig": {
"extends": "@acme/eslint-config",
"ignorePatterns": [
"node_modules",
"build",
".expo",
".expo-shared"
],
"overrides": [
{
"files": [
"*.js"
],
"env": {
"node": true
}
}
]
}
}