forked from dev-yakuza/react-native-image-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
{
"name": "react-native-image-modal",
"version": "2.0.1",
"description": "image fullscreen modal for react native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .tsx --ext .ts src/",
"format": "prettier --check ./src",
"start": "rm -rf Develop/dist && tsc -w --outDir Develop/dist",
"start:expo": "rm -rf DevelopWithExpo/dist && tsc -w --outDir DevelopWithExpo/dist",
"prepare": "rm -rf dist && tsc"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts src/ --fix"
],
"./src/**": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-yakuza/react-native-image-modal.git"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"ios",
"android",
"ui",
"imagebox",
"image",
"gallery"
],
"author": "dev-yakuza <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dev-yakuza/react-native-image-modal/issues"
},
"homepage": "https://github.com/dev-yakuza/react-native-image-modal#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/react": "*",
"@types/react-native": "*",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"eslint": "7.9.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.1",
"eslint-plugin-react-hooks": "4.1.2",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"react": "*",
"react-native": "*",
"typescript": "4.0.3"
},
"dependencies": {
"react-native-fast-image": "8.3.4"
}
}