-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.67 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.67 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
{
"name": "hc-mobile-app-ui",
"version": "0.0.79",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "./node_modules/.bin/jest .",
"lint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx",
"build": "./node_modules/.bin/gulp build",
"postinstall": "node_modules/.bin/patch-package"
},
"dependencies": {
"@react-native-community/datetimepicker": "^8.2.0",
"@react-native-picker/picker": "2.9.0",
"moment": "^2.30.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"react-native-calendar-picker": "^7.1.2",
"react-native-modal": "^13.0.0",
"react-native-picker-select": "^8.0.4",
"react-native-svg": "15.8.0",
"react-native-swipeable": "^0.6.0"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.76",
"styled-components": "*"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@testing-library/jest-native": "^4.0.2",
"@testing-library/react-native": "^8.0.0",
"@types/jest": "^26.0.23",
"@types/react-native-calendar-picker": "^7.0.2",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components-react-native": "^5.1.1",
"babel-jest": "^26.6.3",
"del": "^6.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.2",
"jest": "^26.6.3",
"lint-staged": "^11.2.0",
"metro-react-native-babel-preset": "^0.76.0",
"prettier": "^2.4.1",
"react": "18.3.1",
"react-native": "0.76.9",
"react-native-androw": "^0.0.34",
"react-native-codegen": "^0.0.7",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "17.0.1",
"styled-components": "^5.3.1",
"typescript": "~5.3.3"
},
"resolutions": {
"@types/react": "~18.3.12"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!react-native-androw)/"
],
"moduleNameMapper": {
"\\.svg": "<rootDir>/tests/svg.mock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}