-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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": "ideafastpatientapp",
"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 .",
"fixlint": "eslint --fix ."
},
"dependencies": {
"@babel/plugin-transform-react-jsx-self": "^7.22.5",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/picker": "^1.8.0",
"@react-navigation/bottom-tabs": "^5.8.0",
"@react-navigation/native": "^5.3.0",
"@react-navigation/stack": "^5.3.3",
"i18next": "^19.7.0",
"install": "^0.13.0",
"react": "16.11.0",
"react-i18next": "^11.7.3",
"react-native": "0.62.2",
"react-native-ble-manager": "^7.3.1",
"react-native-config": "^1.3.2",
"react-native-gesture-handler": "^1.6.1",
"react-native-safe-area-context": "^1.0.0",
"react-native-screens": "^2.7.0",
"react-native-svg": "^12.1.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-vector-icons": "^7.1.0",
"react-native-webview": "^11.4.4",
"react-redux": "^7.2.0",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"victory": "^35.0.9",
"victory-native": "^35.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/runtime": "^7.23.2",
"@react-native-community/eslint-config": "^3.2.0",
"babel-jest": "^24.9.0",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"jest": "^24.9.0",
"lint-staged": "^15.0.2",
"metro-react-native-babel-preset": "^0.61.0",
"react-test-renderer": "16.11.0",
"redux-devtools": "^3.5.0"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"src/**/*.js": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}