-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
{
"name": "react-native-ma-modal",
"version": "0.6.0",
"description": "",
"main": "src/index",
"directories": {
"example": "example"
},
"scripts": {
"test": "jest"
},
"keywords": [
"react-native",
"ios",
"android"
],
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mahaaoo/react-native-ma-modal.git"
},
"bugs": {
"url": "https://github.com/mahaaoo/react-native-ma-modal/issues"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@react-native-community/eslint-config": "^3.0.3",
"@testing-library/jest-native": "5.1.2",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/react-native": "11.4.0",
"@types/jest": "^27.5.1",
"@types/react": "~17.0.21",
"@types/react-native": "~0.66.13",
"babel-jest": "29.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-jest": "27.1.4",
"husky": "^4.2.5",
"jest": "29.2.2",
"jest-environment-jsdom": "29.2.2",
"react-test-renderer": "18.2.0",
"jest-expo": "^47.0.0",
"lint-staged": "^11.1.1",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-dom": "17.0.2",
"react-native": "0.71.3",
"react-native-gesture-handler": "~2.2.0",
"react-native-reanimated": "~2.8.0",
"typescript": "~4.3.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-gesture-handler": ">= 2.0.0",
"react-native-reanimated": ">=2.0.0"
},
"author": "mahaaoo <[email protected]> (https://github.com/mahaaoo)",
"license": "MIT",
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
]
},
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"eslint --fix"
],
"example/**/*.{js,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}