-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 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
54
55
{
"name": "macos-example",
"version": "0.0.1",
"private": true,
"scripts": {
"macos": "npx react-native-macos run-macos",
"lint": "eslint .",
"start": "react-native start",
"test": "jest",
"clean": "rm -rf node_modules && cd macos && rm -rf build Pods Podfile.lock",
"pods": "cd macos && bundle install && bundle exec pod install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/slider": "4.5.6",
"@react-native-community/viewpager": "5.0.11",
"@react-navigation/elements": "^2.3.8",
"@react-navigation/native": "^7.1.6",
"@react-navigation/stack": "^7.2.10",
"@swmansion/icons": "^0.0.1",
"common-app": "workspace:*",
"react": "19.0.0",
"react-native": "0.78.0",
"react-native-gesture-handler": "workspace:*",
"react-native-macos": "0.78.4",
"react-native-reanimated": "^3.18.0",
"react-native-safe-area-context": "5.4.0",
"react-native-svg": "15.11.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "17.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.78.0",
"@react-native/eslint-config": "0.78.0",
"@react-native/metro-config": "0.78.0",
"@react-native/typescript-config": "0.78.0",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.12",
"@types/react-test-renderer": "^19.0.0",
"jest": "^29.6.3",
"react-test-renderer": "19.0.0",
"typescript": "~5.8.3"
},
"engines": {
"node": ">=18"
},
"installConfig": {
"hoistingLimits": "workspaces",
"selfReferences": false
}
}