generated from eea/volto-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.59 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
{
"name": "@eeacms/volto-forest-policy",
"version": "0.1.31",
"description": "@eeacms/volto-forest-policy: Volto add-on",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
"license": "MIT",
"homepage": "https://github.com/eea/volto-forest-policy",
"keywords": [
"volto-addon",
"volto",
"plone",
"react"
],
"repository": {
"type": "git",
"url": "git@github.com:eea/volto-forest-policy.git"
},
"addons": [
"@eeacms/volto-eea-map",
"@eeacms/volto-plotlycharts",
"@eeacms/volto-datablocks",
"@eeacms/volto-embed",
"@eeacms/volto-openlayers-map",
"@eeacms/volto-matomo",
"@eeacms/volto-eea-design-system",
"@eeacms/volto-eea-website-theme",
"@eeacms/volto-globalsearch",
"@eeacms/volto-searchlib"
],
"dependencies": {
"@eeacms/volto-datablocks": "^6.3.0",
"@eeacms/volto-eea-design-system": "^1.22.4",
"@eeacms/volto-eea-map": "^3.2.1",
"@eeacms/volto-eea-website-theme": "<=1.26.1",
"@eeacms/volto-embed": "^9.0.5",
"@eeacms/volto-globalsearch": "^1.0.22",
"@eeacms/volto-matomo": "*",
"@eeacms/volto-openlayers-map": "0.1.4",
"@eeacms/volto-plotlycharts": "^8.2.0",
"@eeacms/volto-searchlib": "2.0.2",
"@elastic/react-search-ui": "1.20.2",
"@elastic/react-search-ui-views": "1.20.2",
"@elastic/search-ui": "1.21.2",
"@sentry/browser": "7.17.3",
"d3-array": "^2.12.1",
"dompurify": "^2.0.12",
"draft-js-alignment-plugin": "^2.0.6",
"draft-js-focus-plugin": "^3.0.1",
"draft-js-import-html": "^1.4.1",
"draft-js-inline-toolbar-plugin": "^2.0.3",
"draft-js-modifiers": "^0.2.2",
"draft-js-plugins-editor": "^3.0.0",
"draft-js-resizeable-plugin": "^2.0.9",
"draft-js-video-plugin": "^2.0.2",
"esri-loader": "^2.14.0",
"razzle-plugin-scss": "4.2.18",
"react-component-queries": "2.3.0",
"react-highlight-words": "^0.16.0",
"react-image-gallery": "1.2.7",
"react-lazy-load-image-component": "^1.5.0",
"react-pdf-js": "^5.1.0",
"react-sizeme": "3.0.1",
"react-stickynode": "^2.1.1",
"redraft": "^0.10.2",
"redux-connect": "10.0.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@plone/scripts": "*",
"babel-plugin-transform-class-properties": "^6.24.1",
"cypress-fail-fast": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"md5": "^2.3.0",
"postcss-less": "6.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"make lint-fix",
"make prettier-fix"
],
"src/**/*.{jsx}": [
"make i18n"
],
"theme/**/*.{css,less}": [
"make stylelint-fix"
],
"src/**/*.{css,less}": [
"make stylelint-fix"
],
"theme/**/*.overrides": [
"make stylelint-fix"
],
"src/**/*.overrides": [
"make stylelint-fix"
]
},
"scripts": {
"release": "release-it",
"release-major-beta": "release-it major --preRelease=beta",
"release-beta": "release-it --preRelease=beta",
"bootstrap": "npm install -g ejs; npm link ejs; node bootstrap",
"test": "make test",
"test:fix": "make test-update",
"pre-commit": "yarn stylelint:fix && yarn prettier:fix && yarn lint:fix",
"stylelint": "make stylelint",
"stylelint:overrides": "make stylelint-overrides",
"stylelint:fix": "make stylelint-fix",
"prettier": "make prettier",
"prettier:fix": "make prettier-fix",
"lint": "make lint",
"lint:fix": "make lint-fix",
"i18n": "make i18n",
"cypress:run": "make cypress-run",
"cypress:open": "make cypress-open",
"prepare": "husky install"
}
}