-
-
Notifications
You must be signed in to change notification settings - Fork 795
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "example",
"version": "0.0.1",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "eslint .",
"type:check": "tsc -p tsconfig.json --noEmit",
"start": "expo start",
"test": "jest"
},
"dependencies": {
"@react-navigation/native": "^7.1.14",
"@react-navigation/native-stack": "^7.3.21",
"expo": "~54.0.0",
"expo-build-properties": "~1.0.9",
"expo-splash-screen": "~31.0.10",
"expo-status-bar": "~3.0.8",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-ble-manager": "../",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.27.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/react": "~19.1.1",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.0",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.73.7",
"prettier": "^3.0.0",
"react-test-renderer": "19.0.0",
"typescript": "~5.9.2"
},
"jest": {
"preset": "react-native"
}
}