-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.5 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
{
"name": "react-native-google-recaptcha",
"version": "1.0.8",
"description": "A reCAPTCHA library for React Native (Android and iOS).",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/bilaleren/react-native-google-recaptcha",
"repository": "https://github.com/bilaleren/react-native-google-recaptcha",
"keywords": [
"recaptcha",
"react native",
"google recaptcha",
"react native recaptcha",
"react native google recaptcha"
],
"scripts": {
"test": "LANG=\"en_US.UTF-8\" jest",
"test:watch": "yarn test --watchAll",
"prebuild": "yarn test && yarn lint && rm -rf dist",
"build": "NODE_ENV=production rollup -c --bundleConfigAsCjs",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "tsc --noEmit && eslint ./src --ext .ts,.tsx",
"prepare:package": "cd ./dist && mkdir dist && mv *.js *.d.ts ./dist && cp ../package.json ."
},
"dependencies": {
"use-latest-callback": "^0.1.9"
},
"peerDependencies": {
"@babel/runtime": "*",
"react": "*",
"react-native": "*",
"react-native-webview": ">=11.26.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.6",
"@testing-library/jest-native": "^5.3.0",
"@testing-library/react-native": "^11.5.0",
"@types/jest": "^26.0.23",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.7",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"eslint": "7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.0.3",
"metro-react-native-babel-preset": "^0.73.3",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-native": "^0.72.7",
"react-native-webview": "^11.26.1",
"react-test-renderer": "^18.2.0",
"rollup": "^3.5.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-node-externals": "^5.0.2",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.9.3"
},
"files": [
"dist"
]
}