-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.34 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
{
"name": "@rohberg/volto-addon-template",
"version": "0.1.0",
"description": "volto-addon-template: Volto add-on",
"main": "src/index.js",
"author": "You, https://github.com/you",
"license": "MIT",
"homepage": "https://github.com/rohberg/volto-addon-template",
"keywords": [
"volto-addon",
"volto",
"plone",
"react"
],
"repository": {
"type": "git",
"url": "[email protected]:rohberg/volto-addon-template.git"
},
"dependencies": {
},
"scripts": {
"release": "release-it",
"i18n": "NODE_ENV=production node src/i18n.js",
"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}'"
}
}