forked from eea/volto-slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.39 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
{
"name": "volto-slate",
"version": "2.9.0",
"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": {
"react-intersection-observer": "^8.32.0",
"@eeacms/volto-object-widget": ">=2.2.3",
"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",
"@cypress/code-coverage": "^3.9.5",
"babel-plugin-transform-class-properties": "^6.24.1"
},
"resolutions": {
"jest-environment-jsdom": "^26.0.1"
},
"repository": {
"type": "git",
"url": "[email protected]:eea/volto-slate.git"
},
"scripts": {
"release": "release-it",
"bootstrap": "node bootstrap",
"test": "make test",
"test:fix": "make test-update",
"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": "if [ -d ./project ]; then ./project/node_modules/cypress/bin/cypress run; else ../../../node_modules/cypress/bin/cypress run; fi",
"cypress:open": "if [ -d ./project ]; then ./project/node_modules/cypress/bin/cypress open; else ../../../node_modules/cypress/bin/cypress open; fi"
}
}