-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.78 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.78 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
{
"name": "react-native-prisma-example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --simulator='iPhone 15' --scheme='Debug'",
"start": "react-native start",
"pods": "pod-install",
"build:android": "cd android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd ios && xcodebuild -workspace PrismaExample.xcworkspace -scheme PrismaExample -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",
"ios:release": "react-native run-ios --simulator='iPhone 15' --scheme='Release'",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@prisma/client": "6.1.0-dev.17",
"chance": "^1.1.11",
"nativewind": "^4.0.23",
"react": "18.2.0",
"react-native": "0.73.2",
"react-native-http-bridge-refurbished": "^1.2.9",
"react-native-network-info": "^5.2.1",
"react-native-reanimated": "^3.7.2",
"react-native-url-polyfill": "^2.0.0",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.18",
"@react-native/metro-config": "^0.73.2",
"@react-native/typescript-config": "^0.73.1",
"@types/chance": "^1.1.6",
"@types/text-encoding": "^0",
"babel-plugin-module-resolver": "^5.0.0",
"detox": "20.20.3",
"jest": "^29",
"pod-install": "0.2.0",
"prisma": "6.1.0-dev.17",
"tailwindcss": "^3.4.0"
},
"engines": {
"node": ">=18"
}
}