-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.25 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.25 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
{
"name": "react-native-quick-crypto-example",
"version": "1.0.9",
"private": true,
"type": "module",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"bundle-install": "bundle install",
"clean": "del-cli android/build android/app/build ios/build lib",
"clean:deep": "bun run clean && del-cli node_modules",
"tsc": "tsc --noEmit",
"typescript": "tsc --noEmit",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
"format": "prettier --check \"**/*.{js,ts,tsx}\"",
"format:fix": "prettier --write \"**/*.{js,ts,tsx}\"",
"start": "react-native start",
"dev": "sh -c 'react-native start --client-logs \"$@\" 2>&1 | tee /tmp/rnqc-metro.log' --",
"pods": "RCT_USE_RN_DEP=1 RCT_USE_PREBUILT_RNCORE=1 bundle install && bundle exec pod install --project-directory=ios",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace QuickCryptoExample.xcworkspace -scheme QuickCryptoExample -configuration Debug -sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO"
},
"dependencies": {
"@noble/ciphers": "2.0.1",
"@noble/curves": "1.7.0",
"@noble/hashes": "1.5.0",
"@react-navigation/bottom-tabs": "7.8.6",
"@react-navigation/native": "7.1.22",
"@react-navigation/native-stack": "7.8.1",
"buffer": "6.0.3",
"chai": "6.2.1",
"crypto-browserify": "3.12.0",
"event-target-polyfill": "0.0.4",
"events": "3.3.0",
"react": "19.1.0",
"react-native": "0.81.1",
"react-native-bouncy-checkbox": "2.1.10",
"react-native-fast-encoder": "0.3.1",
"react-native-mmkv": "4.0.1",
"react-native-nitro-modules": "0.33.2",
"react-native-quick-base64": "2.2.2",
"react-native-quick-crypto": "workspace:*",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.18.0",
"react-native-vector-icons": "10.3.0",
"readable-stream": "4.5.2",
"safe-buffer": "5.2.1",
"tinybench": "3.0.6",
"util": "0.12.5"
},
"devDependencies": {
"@babel/core": "7.28.4",
"@babel/plugin-transform-class-static-block": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.28.5",
"@babel/runtime": "7.28.4",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.81.1",
"@react-native/eslint-config": "0.81.1",
"@react-native/metro-config": "0.81.1",
"@react-native/typescript-config": "0.82.1",
"@tsconfig/react-native": "3.0.5",
"@types/chai": "5.2.3",
"@types/jest": "29.5.13",
"@types/react": "19.1.0",
"@types/react-native-vector-icons": "6.4.18",
"@types/react-test-renderer": "19.1.0",
"babel-jest": "29.7.0",
"babel-plugin-module-resolver": "5.0.2",
"jose": "6.1.3",
"react-test-renderer": "19.1.0",
"typescript": "5.8.3"
},
"engines": {
"node": ">=18"
}
}