-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1018 Bytes
/
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
{
"name": "@redturtle/volto-newsletter",
"version": "1.2.3",
"description": "volto-newsletter: Volto add-on",
"main": "src/index.js",
"license": "MIT",
"keywords": [
"volto-addon",
"volto",
"plone",
"react",
"newsletter"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon",
"release": "release-it"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@plone/scripts": "*",
"@release-it/conventional-changelog": "^2.0.1",
"husky": "^6.0.0",
"release-it": "^14.10.1"
},
"dependencies": {
"@plone/components": "2.0.0-alpha.7"
},
"packageManager": "[email protected]"
}