-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 2.03 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
{
"name": "sodium-react-native-direct-example",
"description": "Example app for sodium-react-native-direct",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start --reset-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"clean": "yarn clean:rn && yarn clean:ios && yarn clean:android && yarn start --reset-cache",
"clean:rn": "watchman watch-del-all && npx del-cli node_modules && yarn && npx del-cli /tmp/metro-*",
"clean:android": "cd android && npx del-cli build app/build",
"clean:ios": "cd ios && npx del-cli Pods Podfile.lock build && pod deintegrate && pod install",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace SodiumReactNativeExample.xcworkspace -scheme SodiumReactNativeExample -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",
"b4a": "^1.6.4",
"buffer-byte-frequency": "^1.0.1",
"events": "^3.3.0",
"process": "^0.11.10",
"react": "18.2.0",
"react-native": "^0.74.0",
"react-native-quick-base64": "^2.0.8",
"stream-browserify": "^3.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.74.0",
"@react-native/metro-config": "^0.74.0",
"@types/b4a": "^1.6.3",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"babel-plugin-module-resolver": "^5.0.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"mocha-remote": "^1.6.1",
"mocha-remote-client": "^1.6.1",
"pod-install": "^0.1.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}