-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
{
"name": "@magic/kitchen-sink",
"description": "Example app for react-native-magic-modal",
"version": "0.0.1",
"private": true,
"main": "index.js",
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"start": "expo start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "pnpm lint --fix",
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
"format": "prettier --check . --ignore-path ../../.gitignore",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"doctor": "pnpm expo-doctor"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-magic-modal"
]
}
}
},
"dependencies": {
"expo": "^52.0.16",
"expo-constants": "~17.0.2",
"expo-linking": "~7.0.2",
"expo-router": "^4.0.2",
"expo-splash-screen": "~0.29.7",
"react-native-magic-modal": "workspace:*",
"expo-status-bar": "~2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.9",
"react-native-gesture-handler": "2.31.2",
"react-native-reanimated": "~3.16.5",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-web": "~0.19.13"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"magic-eslint-config": "workspace:*",
"@magic/prettier-config": "workspace:*",
"@magic/tsconfig": "workspace:*",
"expo-doctor": "1.13.3"
},
"prettier": "@magic/prettier-config"
}