generated from rohberg/volto-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.62 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
{
"name": "@plone-collective/volto-bookmarks",
"version": "1.0.2",
"description": "Manage bookmarks / favorites in Plone Volto",
"main": "src/index.js",
"author": "Katja Süss, https://github.com/ksuess",
"license": "MIT",
"homepage": "https://github.com/collective/volto-bookmarks",
"keywords": [
"volto-addon",
"volto",
"plone",
"react"
],
"repository": {
"type": "git",
"url": "git@github.com:collective/volto-bookmarks.git"
},
"scripts": {
"bootstrap": "node bootstrap",
"stylelint": "../../../node_modules/stylelint/bin/stylelint.js --allow-empty-input 'src/**/*.{css,less}'",
"stylelint:overrides": "../../../node_modules/.bin/stylelint --syntax less --allow-empty-input 'theme/**/*.overrides' 'src/**/*.overrides'",
"stylelint:fix": "yarn stylelint --fix && yarn stylelint:overrides --fix",
"prettier": "../../../node_modules/.bin/prettier --single-quote --check 'src/**/*.{js,jsx,json,css,less,md}'",
"prettier:fix": "../../../node_modules/.bin/prettier --single-quote --write 'src/**/*.{js,jsx,json,css,less,md}'",
"lint": "../../../node_modules/eslint/bin/eslint.js --max-warnings=0 'src/**/*.{js,jsx}'",
"lint:fix": "../../../node_modules/eslint/bin/eslint.js --fix 'src/**/*.{js,jsx}'",
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon",
"release": "release-it"
},
"dependencies": {
"@plone/scripts": "*"
},
"peerDependencies": {
"@plone/volto": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"release-it": "^15.10.3"
}
}