forked from eea/volto-slate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.03 KB
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
{
"name": "volto-slate",
"version": "2.4.3",
"description": "Slate.js integration with Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
"license": "MIT",
"homepage": "https://github.com/eea/volto-slate",
"keywords": [
"volto-addon",
"volto-slate",
"volto-slate-addon",
"volto",
"plone",
"react"
],
"addons": [
"@eeacms/volto-object-widget"
],
"dependencies": {
"@eeacms/volto-object-widget": "^2.0.0",
"classnames": "2.2.6",
"image-extensions": "1.1.0",
"is-url": "1.2.4",
"jsdom": "16.2.2",
"react-visibility-sensor": "5.1.1",
"slate": "^0.62.0",
"slate-history": "^0.62.0",
"slate-hyperscript": "^0.62.0",
"slate-react": "^0.62.0",
"weak-key": "^1.0.2"
},
"peerDependencies": {
"@plone/volto": "^12.1.2"
},
"devDependencies": {
"@testing-library/react": "9.5.0",
"@types/jest": "^25.2.3"
},
"resolutions": {
"jest-environment-jsdom": "^26.0.1"
},
"repository": {
"type": "git",
"url": "git@github.com:eea/volto-slate.git"
},
"scripts": {
"release": "release-it",
"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}'",
"cypress:run": "../../../node_modules/cypress/bin/cypress run",
"cypress:open": "../../../node_modules/cypress/bin/cypress open"
}
}