-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"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.13.9",
"@react-navigation/bottom-tabs": "^7.4.6",
"@react-navigation/native": "^7.1.17",
"@react-navigation/native-stack": "^7.3.25",
"@react-navigation/stack": "^7.4.8",
"@shopify/checkout-sheet-kit": "link:../modules/@shopify/checkout-sheet-kit",
"graphql": "^16.8.2",
"jotai": "^2.13.1",
"react-native-config": "1.5.6",
"react-native-dotenv": "^3.4.11",
"react-native-encrypted-storage": "^4.0.3",
"react-native-nitro-modules": "^0.33.7",
"react-native-quick-base64": "^2.2.2",
"react-native-quick-crypto": "^1.0.9",
"react-native-reanimated": "3.19.5",
"react-native-safe-area-context": "^5.6.1",
"react-native-screens": "^4.16.0",
"react-native-vector-icons": "^10.3.0",
"react-native-webview": "^13.16.0"
},
"peerDependencies": {
"@react-native/babel-preset": "*",
"@react-native/metro-config": "*",
"@types/react-native": "*",
"react": "*",
"react-native": "*"
},
"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",
"@types/react-native-vector-icons": "^6.4.18",
"@types/setimmediate": "^1",
"babel-plugin-module-resolver": "^5.0.0",
"setimmediate": "^1.0.5"
},
"engines": {
"node": ">= 18"
},
"eslintConfig": {
"root": true,
"extends": "@react-native",
"rules": {
"no-console": "off",
"@typescript-eslint/no-shadow": "off"
},
"overrides": [
{
"files": [
"*.ts",
"*.tsx"
],
"rules": {
"@typescript-eslint/consistent-type-imports": "error"
}
}
]
}
}