-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.73 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
{
"name": "react-google-recaptcha-ultimate",
"version": "1.2.1",
"description": "Tool that easily and quickly add Google ReCaptcha for your website or application\n",
"author": {
"name": "SIBERIA CAN CODE 🧊",
"url": "https://github.com/siberiacancode"
},
"contributors": [
{
"name": "Dmitry Babin",
"url": "https://github.com/debabin"
},
{
"name": "Alexander Vasilchuk",
"url": "https://github.com/anv296"
}
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"keywords": [
"google recaptcha",
"react recaptcha",
"recaptcha v3",
"recaptcha v2 checkbox",
"recaptcha v2 invisible",
"react recaptcha v3",
"react recaptcha v2 checkbox",
"react recaptcha v2 invisible",
"recaptcha enterprise",
"react recaptcha enterprise"
],
"homepage": "https://github.com/siberiacancode/react-google-recaptcha-ultimate",
"repository": {
"type": "git",
"url": "https://github.com/siberiacancode/react-google-recaptcha-ultimate"
},
"bugs": {
"url": "https://github.com/siberiacancode/react-google-recaptcha-ultimate/issues"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "shx rm -rf dist && rollup -c --bundleConfigAsCjs",
"prepare": "husky install && npm run build",
"lint": "eslint . --ext ts --no-error-on-unmatched-pattern --fix",
"format": "prettier --write **/*.{ts,js}",
"type": "tsc --noEmit",
"pretty": "yarn type && yarn format && yarn lint",
"test": "jest",
"storybook": "storybook dev -p 6010"
},
"lint-staged": {
"*.js": "prettier --write",
"*.ts": [
"prettier --write",
"eslint --no-error-on-unmatched-pattern --fix"
]
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0"
},
"devDependencies": {
"@siberiacancode/builder": "^1.2.0",
"@siberiacancode/eslint": "^1.0.2",
"@siberiacancode/jest": "^1.0.1",
"@siberiacancode/prettier": "^1.0.0",
"@storybook/addon-actions": "^7.4.4",
"@storybook/addon-essentials": "^7.4.4",
"@storybook/addon-interactions": "^7.4.4",
"@storybook/addon-links": "^7.4.4",
"@storybook/react": "^7.4.4",
"@storybook/react-webpack5": "^7.4.4",
"@storybook/testing-library": "^0.2.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/react": "18.2.22",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"shx": "^0.3.4",
"storybook": "^7.4.4",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2"
}
}