-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.66 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
88
89
{
"name": "@oolio-group/rn-use-modal",
"description": "React hook for showing modals on react-native. Using useModal you can show any component as modal",
"keywords": [
"react",
"react-native",
"hooks",
"modal",
"useModal"
],
"version": "0.2.2",
"main": "lib/index",
"types": "lib",
"files": [
"lib",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "http://github.com/oolio-group/rn-use-modal.git"
},
"bugs": "https://github.com/oolio-group/rn-use-modal/issues",
"license": "MIT",
"contributors": [
"Shidil Eringa <shidil@live.com>"
],
"author": {
"email": "shidil@live.com",
"name": "Shidil Eringa"
},
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn compile -- -w",
"clean": "rm -rf ./lib && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -p ./tsconfig.json",
"test": "jest",
"lint": "eslint . --ext .ts,.js,.tsx --max-warnings=0",
"lint:report": "eslint . --output-file ./eslint_report.json --format json --ext .ts,.js,.tsx | true"
},
"dependencies": {
"react-native-modal": "13.0.1"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.65.0"
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/helper-string-parser": "7.18.10",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-export-default": "7.0.0-beta.32",
"@babel/plugin-proposal-export-default-from": "7.12.13",
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@babel/plugin-syntax-jsx": "7.12.13",
"@babel/plugin-transform-flow-strip-types": "7.16.7",
"@babel/plugin-transform-object-assign": "7.12.13",
"@babel/plugin-transform-react-jsx-self": "7.16.7",
"@babel/plugin-transform-react-jsx-source": "7.16.7",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@babel/runtime": "7.13.10",
"@types/jest": "26.0.15",
"@types/react": "18.2.38",
"@types/react-native": "0.72.7",
"@types/react-test-renderer": "18.0.7",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"babel-jest": "26.6.3",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"react": "17.0.2",
"react-native": "0.66.5",
"react-test-renderer": "17.0.2",
"typescript": "4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && pretty-quick --staged"
}
}
}