-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.47 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.47 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
85
86
87
88
89
90
91
92
93
94
{
"name": "zklove",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "expo lint",
"clear-cache": "node clear-cache.js",
"test-verification": "node test-verification-flow.js",
"deploy:mumbai": "node scripts/deploy-production.js polygon_mumbai",
"deploy:sepolia": "node scripts/deploy-production.js ethereum_sepolia",
"deploy:mainnet": "node scripts/deploy-production.js polygon_mainnet",
"build:production": "cross-env NODE_ENV=production expo export --platform all",
"build:android": "cross-env NODE_ENV=production eas build --platform android --profile production",
"build:ios": "cross-env NODE_ENV=production eas build --platform ios --profile production",
"preview:production": "cross-env NODE_ENV=production expo start --no-dev --minify",
"build:local": "node local-build.js",
"build:local:android": "node local-build.js android",
"build:local:android:release": "node local-build.js android release",
"build:local:ios": "node local-build.js ios",
"build:local:web": "node local-build.js web",
"build:gradle:debug": "cd android && ./gradlew assembleDebug",
"build:gradle:release": "cd android && ./gradlew assembleRelease"
},
"dependencies": {
"@capacitor/android": "^7.4.3",
"@capacitor/cli": "^7.4.3",
"@capacitor/core": "^7.4.3",
"@expo/cli": "^54.0.8",
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "^15.0.2",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-navigation/bottom-tabs": "^7.4.0",
"@react-navigation/elements": "^2.6.3",
"@react-navigation/native": "^7.1.8",
"buffer": "^6.0.3",
"crypto-js": "^4.2.0",
"ethers": "^6.15.0",
"expo": "~54.0.10",
"expo-blur": "^15.0.7",
"expo-camera": "^17.0.8",
"expo-constants": "~18.0.9",
"expo-crypto": "^15.0.7",
"expo-dev-client": "~6.0.12",
"expo-document-picker": "^14.0.7",
"expo-file-system": "^19.0.15",
"expo-font": "~14.0.8",
"expo-haptics": "~15.0.7",
"expo-image": "~3.0.8",
"expo-image-picker": "^17.0.8",
"expo-linear-gradient": "^15.0.7",
"expo-linking": "~8.0.8",
"expo-media-library": "^18.2.0",
"expo-router": "~6.0.8",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"expo-symbols": "~1.0.7",
"expo-system-ui": "~6.0.7",
"expo-web-browser": "~15.0.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.4",
"react-native-crypto-js": "^1.0.0",
"react-native-gesture-handler": "~2.28.0",
"react-native-get-random-values": "^1.11.0",
"react-native-nfc-manager": "^3.17.1",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-web": "~0.21.0",
"react-native-worklets": "0.5.1",
"snarkjs": "^0.7.5",
"stream-browserify": "^3.0.0",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@types/crypto-js": "^4.2.2",
"@types/react": "~19.1.0",
"@types/react-native-crypto-js": "^1.0.3",
"cross-env": "^10.0.0",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"typescript": "~5.9.2"
},
"private": true
}