-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.47 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
{
"name": "react-native-alert-utils",
"version": "1.0.0",
"description": "A react native lib to provide some utils alert components like modal and alert.",
"main": "index.js",
"scripts": {
"lint": "eslint \"src/**/*.{ts, tsx}\"",
"build": "tsc",
"dev": "tsc --watch"
},
"keywords": [
"react",
"native",
"react-native",
"alert",
"modal",
"utils"
],
"author": "Luis Guilherme Silva Flórido",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.9.35",
"@types/react-native": "^0.62.8",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz",
"typescript": "^3.9.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/luisflorido/react-native-alert-utils.git"
},
"bugs": {
"url": "https://github.com/luisflorido/react-native-alert-utils/issues"
},
"homepage": "https://github.com/luisflorido/react-native-alert-utils"
}