forked from kitconcept/volto-slider-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.76 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
{
"name": "@kitconcept/volto-slider-block",
"version": "5.1.1",
"description": "Slider block for Plone 6 (Volto)",
"main": "src/index.js",
"license": "MIT",
"keywords": [
"volto-addon",
"volto",
"plone",
"react"
],
"author": "kitconcept GmbH",
"homepage": "https://github.com/kitconcept/volto-slider-block#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"i18n": "rm -rf build/messages && NODE_ENV=production i18n --addon",
"cypress:open": "NODE_ENV=production ../../../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"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"useTabs": false,
"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"
]
}
]
}
},
"devDependencies": {
"@plone/scripts": "^3.0.0",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.2",
"postcss-less": "6.0.0",
"prettier": "2.0.5",
"release-it": "^16.1.3",
"stylelint": "14.0.1",
"stylelint-config-idiomatic-order": "8.1.0",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-prettier": "1.1.2"
},
"dependencies": {
"deepmerge": "4.2.2",
"react-slick": "0.29.0",
"slick-carousel": "1.8.1"
},
"peerDependencies": {
"@plone/volto": "^17.0.0-alpha.21"
},
"packageManager": "yarn@3.2.3"
}