-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.11 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@kitconcept/volto-blocks",
"version": "12.4.0",
"description": "kitconcept Volto Blocks",
"main": "src/index.js",
"scripts": {
"i18n": "rm -rf build/messages && NODE_ENV=production i18n -a",
"cypress:open": "NODE_ENV=test ../../../node_modules/cypress/bin/cypress open",
"cypress:run": "NODE_ENV=test ../../../node_modules/cypress/bin/cypress run",
"cypress:start-frontend": "cd ../../../ && RAZZLE_API_PATH=http://localhost:55001/plone yarn start",
"ci:test-acceptance-server": "make test-acceptance-server",
"dry-release": "release-it --dry-run",
"release": "release-it",
"release-major-alpha": "release-it major --preRelease=alpha",
"release-alpha": "release-it --preRelease=alpha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitconcept/volto-blocks.git"
},
"keywords": [
"Volto",
"Block",
"ReactJS",
"Plone"
],
"author": "kitconcept GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/kitconcept/volto-blocks/issues"
},
"homepage": "https://github.com/kitconcept/volto-blocks#readme",
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"overrides": [
{
"files": "*.overrides",
"options": {
"parser": "less"
}
}
]
},
"stylelint": {
"extends": [
"stylelint-config-idiomatic-order"
],
"plugins": [
"stylelint-prettier"
],
"overrides": [
{
"files": [
"**/*.less"
],
"customSyntax": "postcss-less"
},
{
"files": [
"**/*.overrides"
],
"customSyntax": "postcss-less"
}
],
"rules": {
"prettier/prettier": true,
"rule-empty-line-before": [
"always-multi-line",
{
"except": [
"first-nested"
],
"ignore": [
"after-comment"
]
}
]
}
},
"release-it": {
"hooks": {
"before:bump": "yarn i18n",
"after:bump": "changelogupdater bump ${version}",
"after:release": "changelogupdater back ${version} && git commit -am 'Back to development' && git push"
},
"git": {
"changelog": "changelogupdater excerpt",
"requireUpstream": false,
"requireCleanWorkingDir": false
},
"github": {
"release": true,
"releaseName": "${version}",
"releaseNotes": "changelogupdater excerpt"
},
"npm": {
"publish": false
}
},
"dependencies": {
"blurhash": "1.1.5",
"date-fns": "1.30.1",
"deep-freeze": "0.0.1",
"fast-blurhash": "1.0.1",
"node-jq": "1.12.0",
"react-color": "2.19.3"
},
"devDependencies": {
"@plone/scripts": "^2.2.1",
"eslint-plugin-prettier": "3.1.3",
"jest-junit": "8.0.0",
"prettier": "2.0.5",
"release-it": "14.7.0",
"stylelint": "14.0.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-prettier": "8.0.1",
"stylelint-prettier": "1.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"@plone/volto": ">=16.0.0"
}
}