-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.25 KB
/
package.json
File metadata and controls
82 lines (82 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
81
82
{
"name": "op_sqlite_example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --scheme='debug' --simulator='iPhone 16 Pro'",
"run:ios:unused": "xcodebuild -workspace ios/OPSQLiteExample.xcworkspace -scheme release -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16 Pro' clean build",
"run:ios": "react-native run-ios --scheme='release' --no-packager",
"start": "react-native start",
"pods": "cd ios && bundle exec pod install && rm -f .xcode.env.local",
"pods:nuke": "cd ios && rm -rf Pods && rm -rf Podfile.lock && bundle exec pod install",
"run:android:release": "cd android && ./gradlew assembleRelease && adb install -r app/build/outputs/apk/release/app-release.apk && adb shell am start -n com.op.sqlite.example/.MainActivity",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace OPSQLiteExample.xcworkspace -scheme debug -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",
"chai": "^4.3.7",
"chance": "^1.1.9",
"clsx": "^2.0.0",
"events": "^3.3.0",
"mocha": "^10.7.3",
"nativewind": "^2.0.11",
"react": "18.3.1",
"react-native": "0.76.5",
"react-native-http-bridge-refurbished": "1.2.9",
"react-native-restart": "^0.0.27",
"react-native-share": "^11.0.3",
"reflect-metadata": "^0.1.13",
"stream-browserify": "^3.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native/babel-preset": "0.76.4",
"@react-native/eslint-config": "0.76.4",
"@react-native/metro-config": "0.76.4",
"@react-native/typescript-config": "0.76.4",
"@tsconfig/react-native": "^3.0.2",
"@types/chai": "^4.3.4",
"@types/chance": "^1.1.3",
"@types/jest": "^29.5.8",
"@types/mocha": "^10.0.1",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "0.77.0",
"prettier": "2.8.8",
"react-native-builder-bob": "^0.30.0",
"react-test-renderer": "18.3.1",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"op-sqlite": {
"libsql": false,
"sqlcipher": true,
"iosSqlite": false,
"fts5": true,
"rtree": true,
"crsqlite": false,
"sqliteVec": false,
"performanceMode": true,
"tokenizers": [
"wordtokenizer",
"porter"
]
}
}