-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
{
"name": "TapsellPlusReactNativeSample",
"version": "0.0.8",
"private": true,
"scripts": {
"build": "watchman watch-del-all && rm -rf node_modules/ && yarn install && react-native start --reset-cache",
"android": "npx react-native run-android",
"log-android": "adb logcat -v color",
"ios": "npx react-native run-ios",
"start": "npx react-native start --reset-cache",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@babel/plugin-transform-private-methods": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-picker/picker": "^2.8.1",
"@react-native/babel-preset": "^0.75.3",
"@react-native/metro-config": "^0.75.3",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"react": "18.3.1",
"react-native": "0.75.3",
"react-native-gesture-handler": "^2.20.0",
"react-native-safe-area-context": "^4.11.0",
"react-native-screens": "^3.34.0",
"react-native-svg-transformer": "^1.5.0",
"react-native-tapsell-plus": "^2.2.8",
"react-navigation": "^4.4.4",
"react-navigation-stack": "^2.10.4",
"typescript": "^5.6.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-private-methods": "^7.25.4",
"@babel/runtime": "^7.25.6",
"@react-native-community/eslint-config": "^3.2.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"react-test-renderer": "18.3.1"
},
"jest": {
"preset": "react-native"
}
}