-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathpackage.json
80 lines (80 loc) · 3.16 KB
/
package.json
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.0-beta.12",
"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",
"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",
"pods": "RCT_NEW_ARCH_ENABLED=1 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 QuickCrytpExample.xcworkspace -scheme QuickCrytpExample -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": {
"@craftzdog/react-native-buffer": "6.0.5",
"@noble/curves": "^1.7.0",
"@noble/hashes": "^1.5.0",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "6.1.18",
"@react-navigation/native-stack": "6.11.0",
"buffer": "6.0.3",
"chai": "<5.0.0",
"crypto-browserify": "^3.12.0",
"event-target-polyfill": "^0.0.4",
"events": "3.3.0",
"react": "18.3.1",
"react-native": "0.76.1",
"react-native-bouncy-checkbox": "4.0.1",
"react-native-nitro-modules": "0.21.0",
"react-native-quick-base64": "2.1.2",
"react-native-quick-crypto": "1.0.0-beta.12",
"react-native-safe-area-context": "5.1.0",
"react-native-screens": "3.35.0",
"react-native-vector-icons": "^10.1.0",
"readable-stream": "4.5.2",
"tinybench": "^3.0.6",
"util": "0.12.5"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-class-static-block": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/runtime": "7.25.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.18.0",
"@react-native-community/cli": "15.0.0",
"@react-native-community/cli-platform-android": "15.0.0",
"@react-native-community/cli-platform-ios": "15.0.0",
"@react-native/babel-preset": "0.76.1",
"@react-native/eslint-config": "0.76.1",
"@react-native/eslint-plugin": "0.76.1",
"@react-native/metro-config": "0.76.1",
"@react-native/typescript-config": "0.76.1",
"@tsconfig/react-native": "^3.0.5",
"@types/chai": "^5.0.1",
"@types/react": "18.3.3",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "18.3.0",
"@typescript-eslint/parser": "^8.0.1",
"babel-jest": "29.7.0",
"babel-plugin-module-resolver": "5.0.2",
"eslint": "^9.9.0",
"eslint-plugin-react-native": "^4.1.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"typescript": "5.0.4",
"typescript-eslint": "^8.0.1"
},
"engines": {
"node": ">=18"
}
}