This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.56 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
{
"name": "parliament",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest --silent --verbose",
"lint": "eslint .",
"docs": "jsdoc -c jsdoc.conf.json",
"prepare": "patch-package"
},
"dependencies": {
"@react-native-community/datetimepicker": "^3.0.4",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.9.1",
"@react-navigation/native": "^5.7.5",
"@react-navigation/stack": "^5.9.2",
"async-mutex": "^0.2.4",
"better-docs": "^2.3.2",
"expo-secure-store": "^9.2.0",
"jsdoc": "^3.6.6",
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-background-actions": "^2.5.2",
"react-native-ble-peripheral": "^2.0.1",
"react-native-ble-plx": "^2.0.1",
"react-native-camera": "^3.40.0",
"react-native-gesture-handler": "^1.8.0",
"react-native-linear-gradient": "^2.5.6",
"react-native-modal-datetime-picker": "^9.0.0",
"react-native-notifications": "^3.3.4",
"react-native-peripheral": "^0.0.3",
"react-native-permissions": "^2.2.2",
"react-native-qrcode-scanner": "^1.4.1",
"react-native-reanimated": "^1.13.1",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.11.0",
"react-native-toast-message": "^1.3.4",
"react-native-unimodules": "^0.11.0",
"react-native-vector-icons": "^7.1.0",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/runtime": "^7.11.2",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/react-native": "^7.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"metro-react-native-babel-preset": "^0.63.0",
"patch-package": "^6.2.2",
"postinstall-prepare": "^1.0.1",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"./jest/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native-community/datetimepicker|react-native-vector-icons/Entypo|expo-secure-store|react-native-ble-plx|@unimodules|react-native-peripheral|react-navigation|@react-navigation/.*))"
]
}
}