-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.22 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.22 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
56
57
58
59
60
61
62
63
64
{
"name": "sample",
"version": "0.6.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"clean": "rm -rf node_modules ios/build ios/pods vendor",
"clean:android": "(cd android && ./gradlew clean)",
"build:android": "sh ./scripts/build_android",
"release:android": "sh ./scripts/release_android",
"build:ios": "sh ./scripts/build_ios",
"lint": "yarn typecheck && eslint .",
"ios": "react-native run-ios --simulator 'iPhone 15 Pro'",
"start": "react-native start -- --simulator 'iPhone 15 Pro' --reset-cache",
"typecheck": "tsc --noEmit",
"test:ios": "sh ./scripts/test_ios",
"test:android": "sh ./scripts/test_android"
},
"dependencies": {
"@apollo/client": "^3.8.9",
"@react-native-community/cli-platform-ios": "^18.0.0",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/native": "^6.1.10",
"@react-navigation/native-stack": "^6.9.17",
"@react-navigation/stack": "^6.3.21",
"@shopify/checkout-sheet-kit": "link:../modules/@shopify/checkout-sheet-kit",
"graphql": "^16.8.1",
"jotai": "^2.12.5",
"react-native-config": "^1.5.5",
"react-native-reanimated": "^3.16.1",
"react-native-safe-area-context": "^4.14.0",
"react-native-screens": "^4.1.0",
"react-native-vector-icons": "^10.2.0"
},
"peerDependencies": {
"@types/react-native": "*",
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-arrow-functions": "^7.27.1",
"@babel/plugin-transform-shorthand-properties": "^7.23.3",
"@babel/plugin-transform-template-literals": "^7.23.3",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.27.6",
"@react-native-masked-view/masked-view": "^0.3.2",
"@react-native/babel-preset": "^0.74.83",
"@react-native/metro-config": "^0.73.3",
"@types/react-native-vector-icons": "^6.4.18",
"babel-plugin-module-resolver": "^5.0.0"
},
"engines": {
"node": ">= 18"
},
"eslintConfig": {
"rules": {
"no-console": "off"
}
}
}