-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
{
"name": "@gebruederheitz/wp-block-slideshow",
"version": "2.0.1",
"description": "A Gutenberg block creating a slideshow",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm-run-all --parallel lint:scripts lint:styles",
"lint:scripts": "eslint frontend/ editor/",
"lint:styles": "stylelint scss/",
"build": "npm-run-all --parallel build:rollup build:styles",
"build:rollup": "rollup -c ./.rollup.config.js",
"build:styles": "gulp",
"prepublishOnly ": "npm run lint && npm run build",
"watch": "npm-run-all --parallel watch:rollup watch:styles",
"watch:rollup": "rollup -c ./.rollup.config.js --watch",
"watch:styles": "gulp watch"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gebruederheitz/wp-block-slideshow.git"
},
"keywords": [
"Wordpress",
"Gutenberg",
"slideshow"
],
"author": "Andreas Maros <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/gebruederheitz/wp-block-video-overlay/issues"
},
"homepage": "https://github.com/gebruederheitz/wp-block-video-overlay#readme",
"dependencies": {
"@babel/runtime": "^7.14.6",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@gebruederheitz/wp-editor-components": "^1.0.6",
"@gebruederheitz/wp-frontend-utils": "^1.0.0",
"@glidejs/glide": "^3.4.1",
"@splidejs/splide": "^2.4.21",
"classnames": "^2.3.1",
"core-js": "^3.15.2",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"autoprefixer": "^10.3.1",
"cssnano": "^5.0.6",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-postcss": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"rollup": "^2.53.1",
"sass": "^1.25.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0"
}
}