-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.13 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "TriaApp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.ts --reset-cache --bundle-output ./ios/main.jsbundle --dev false --verbose --assets-dest ios",
"postinstall": "yarn run bundle:ios"
},
"dependencies": {
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
"@babel/preset-env": "^7.24.5",
"@expo/vector-icons": "^14.0.0",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native-masked-view/masked-view": "0.3.1",
"@react-native/babel-preset": "^0.74.81",
"@react-native/metro-config": "^0.74.81",
"@react-navigation/drawer": "^6.6.15",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"@reduxjs/toolkit": "^2.2.5",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"expo": "^51.0.8",
"expo-app-loading": "^2.1.1",
"expo-constants": "^16.0.1",
"expo-font": "~12.0.6",
"expo-status-bar": "^1.12.1",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"react-native": "^0.74.0",
"react-native-ble-plx": "^3.1.2",
"react-native-chart-kit": "^6.12.0",
"react-native-floating-label-input": "^1.4.2",
"react-native-geolocation-service": "^5.3.1",
"react-native-gesture-handler": "^2.16.0",
"react-native-mask-input": "^1.2.2",
"react-native-paper": "^5.12.3",
"react-native-permissions": "^3.6.1",
"react-native-quick-base64": "^2.1.2",
"react-native-reanimated": "^3.11.0",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "^15.3.0",
"react-native-vector-icons": "^10.1.0",
"react-redux": "^9.1.2",
"reactstrap": "^9.2.2",
"reanimated-bottom-sheet": "^1.0.0-alpha.22",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.3.0",
"redux-tools": "^3.2.0",
"styled-components": "^6.1.11",
"use-between": "^1.3.5",
"usehooks-ts": "^3.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/react": "~18.2.79",
"@types/react-native": "^0.70.4",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@types/styled-components-react-native": "^5.2.5",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "0.72.3",
"prettier": "^2.8.8",
"react-native-svg-transformer": "^1.3.0",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}