-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3 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
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
97
98
99
{
"name": "OpenD6Toolkit",
"version": "1.4.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"start": "react-native start",
"test": "jest",
"postinstall": "patch-package",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-native-community/slider": "^4.4.3",
"@react-native-masked-view/masked-view": "^0.2.9",
"@react-native-picker/picker": "^2.5.1",
"@react-navigation/drawer": "^6.6.3",
"@react-navigation/material-top-tabs": "^6.6.4",
"@react-navigation/native": "^6.1.8",
"@reduxjs/toolkit": "1.9.6",
"buffer": "^6.0.3",
"deprecated-react-native-prop-types": "^4.2.1",
"moment": "^2.29.4",
"moti": "^0.26.0",
"native-base": "^2.15.2",
"patch-package": "^8.0.0",
"pure-rand": "^6.0.4",
"react": "18.2.0",
"react-native": "0.72.5",
"react-native-animatable": "^1.3.3",
"react-native-blob-util": "^0.19.1",
"react-native-calculator": "^0.5.2",
"react-native-document-picker": "^9.0.1",
"react-native-dropdown-picker": "^5.4.6",
"react-native-gesture-handler": "^2.13.1",
"react-native-get-random-values": "^1.9.0",
"react-native-gifted-charts": "^1.3.10",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-linear-gradient": "^2.8.3",
"react-native-modal": "^13.0.1",
"react-native-pager-view": "^6.2.1",
"react-native-reanimated": "^3.5.4",
"react-native-safe-area-context": "^4.7.2",
"react-native-screens": "^3.25.0",
"react-native-size-matters": "^0.4.1",
"react-native-slider": "^0.11.0",
"react-native-sortable-list": "0.0.25",
"react-native-splash-screen": "^3.3.0",
"react-native-svg": "^13.14.0",
"react-native-swipe-list-view": "^3.2.9",
"react-native-uuid": "^2.0.1",
"react-native-vector-icons": "^10.0.0",
"react-native-zip-archive": "^6.1.0",
"react-redux": "^8.1.3",
"use-count-up": "^3.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.72.11",
"@tsconfig/react-native": "^3.0.0",
"@types/react": "^18.0.24",
"@types/react-native-vector-icons": "^6.4.15",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"eslint": "^8.19.0",
"husky": "^8.0.3",
"jest": "^29.2.1",
"lint-staged": "^14.0.1",
"metro-react-native-babel-preset": "0.76.8",
"prettier": "^2.4.1",
"react-test-renderer": "18.2.0",
"typescript": "4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*{.js,test.js}": [
"eslint"
]
},
"overrides": {
"native-base": {
"@codler/react-native-keyboard-aware-scroll-view": "2.0.1"
}
},
"engines": {
"node": ">=16"
}
}