forked from collective/volto-form-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
{
"name": "volto-form-block",
"version": "3.2.0",
"description": "Volto block to build a form",
"main": "src/index.js",
"repository": "https://github.com/collective/volto-form-block",
"bugs": "https://github.com/collective/volto-form-block/issues",
"author": "Nicola Zambello",
"homepage": "https://github.com/collective/volto-form-block#readme",
"license": "MIT",
"keywords": [
"volto-addon",
"volto",
"plone",
"react",
"block",
"form"
],
"scripts": {
"i18n": "rm -rf build/messages && NODE_ENV=production i18n -a"
},
"addons": [
"volto-subblocks"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^0.3.6",
"file-saver": "^2.0.5",
"react-google-recaptcha-v3": "^1.8.0",
"volto-subblocks": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@plone/scripts": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.1",
"husky": "^6.0.0",
"release-it": "^14.11.5"
},
"peerDependencies": {
"@plone/volto": ">=16.0.0-alpha.38",
"volto-subblocks": "^2.0.0"
}
}