-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 2.53 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
{
"name": "Example",
"version": "0.0.1",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts,.tsx --max-warnings 0 --cache --fix",
"tsc": "tsc --noEmit",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"pod:install:ios": "pod install --project-directory=ios",
"pod:install:macos": "pod install --project-directory=macos",
"build:android": "cd android && ./gradlew assembleDebug --warning-mode all",
"build:ios": "react-native build-ios --scheme Example --mode Debug --extra-params \"-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\"",
"build:macos": "react-native build-macos --scheme Example --mode Debug",
"mkdist": "node -e \"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\""
},
"dependencies": {
"@callstack/react-native-visionos": "^0.74.0",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.4.0",
"@react-three/fiber": "^8.17.6",
"@shopify/react-native-skia": "1.11.6",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-webgpu": "^4.22.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"fast-text-encoding": "^1.0.6",
"react": "18.2.0",
"react-native": "0.74.2",
"react-native-gesture-handler": "^2.17.1",
"react-native-macos": "^0.74.0",
"react-native-reanimated": "^3.12.1",
"react-native-safe-area-context": "^4.10.7",
"react-native-wgpu": "*",
"teapot": "^1.0.0",
"three": "0.172.0",
"typegpu": "^0.3.2",
"wgpu-matrix": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "0.74.84",
"@react-native/eslint-config": "0.74.84",
"@react-native/metro-config": "0.74.84",
"@react-native/typescript-config": "0.74.84",
"@rnx-kit/metro-config": "^1.3.17",
"@types/node": "^20.14.7",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"@types/three": "0.172.0",
"@webgpu/types": "0.1.51",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"eslint-config-react-native-wcandillon": "^3.10.2",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native-test-app": "^4.1.0",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}