-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (98 loc) · 2.72 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
90
91
92
93
94
95
96
97
98
99
{
"name": "react-native-blur-effect",
"version": "1.1.3",
"private": false,
"main": "dist/BlurView/index.js",
"types": "dist/BlurView/index.d.ts",
"scripts": {
"android": "react-native run-android --appIdSuffix=local",
"android-clean": "cd android && ./gradlew clean && cd ../",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"start-with-android-clean": "yarn android-clean && yarn start --reset-cache",
"pod-install": "cd ios && pod install && cd ../",
"pod-install-arch": "cd ios && arch -x86_64 pod install && cd ../",
"lint": "eslint --ext .tsx --ext .ts src/",
"tsc-lint": "tsc --noEmit --pretty",
"tsc-build": "rm -rf dist && tsc --outDir ./dist",
"tsc-watch": "rm -rf dist && tsc -w --outDir ./dist",
"prepare": "yarn tsc-lint && rm -rf dist && tsc --outDir ./dist"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts src/ --fix"
],
"./src/**": [
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {},
"peerDependencies": {
"react": "^17.0.2",
"react-native": "^0.66.4",
"react-native-webview": "^13.6.2"
},
"devDependencies": {
"react": "17.0.2",
"react-native": "0.66.4",
"react-native-webview": "^13.6.2",
"patch-package": "^6.5.1",
"postinstall-postinstall": "^2.1.0",
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.66.4",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"husky": "^8.0.3",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react-test-renderer": "17.0.2",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"description": "blur effect library for react-native",
"repository": {
"type": "git",
"url": "git+https://github.com/LKHcoding/react-native-blur-effect.git"
},
"bugs": {
"url": "https://github.com/LKHcoding/react-native-blur-effect/issues"
},
"homepage": "https://github.com/LKHcoding/react-native-blur-effect#readme",
"author": {
"name": "LKHcoding",
"email": "[email protected]"
},
"keywords": [
"react-native-blur-effect",
"react-native-blur",
"react-native blur",
"react native blur",
"react native blur effect"
],
"license": "MIT"
}