forked from kiennt23/react-recaptcha-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.59 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
{
"name": "react-recaptcha-v3",
"version": "2.1.0",
"description": "This library helps to integrate google recaptcha into your react project easily. ",
"keywords": [
"react",
"react.js",
"react-component",
"ReCaptcha",
"g-recaptcha",
"invisible-recaptcha",
"visible-recaptcha",
"recaptcha-token"
],
"main": "dist/index.js",
"scripts": {
"start": "webpack --watch",
"build": "NODE_ENV=production webpack",
"lint": "npx eslint ./src",
"clean": "rm -rf ./package-lock.json ./node_modules/",
"prepublishOnly": "rm -rf ./dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeep/react-recaptcha-v3.git"
},
"author": "Codeep",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeep/react-recaptcha-v3/issues"
},
"homepage": "https://github.com/codeep/react-recaptcha-v3#readme",
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^18"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.10.1",
"@types/acorn": "^4.0.3",
"@types/eslint": "^4.16.4",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.7.7",
"@types/webpack-bundle-analyzer": "^2.13.0",
"acorn": "^6.0.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-react": "7.0.2",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-plugin-ascii": "^1.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-no-inferred-method-name": "1.0.2",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-optimize-regex": "^1.1.6",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-promiseparams": "^1.0.8",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-react-functional-set-state": "1.2.1",
"eslint-plugin-react-perf": "2.0.9",
"eslint-plugin-standard": "4.0.0",
"prop-types": "^15.6.2",
"react": "^18.3.1",
"terser-webpack-plugin": "^3.0.4",
"webpack": "^4.26.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"sideEffects": false
}