-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 3.83 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
{
"name": "ultimate-addons-for-gutenberg",
"version": "2.18.1",
"description": "The Ultimate Addons for Gutenberg extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster.",
"author": "Brainstorm Force",
"license": "ISC",
"keywords": [
"gutenberg",
"blocks",
"gutenberg blocks",
"editor",
"block"
],
"homepage": "https://github.com/brainstormforce/ultimate-addons-for-gutenberg/",
"repository": {
"type": "git",
"url": "[email protected]:wp-sharks/ultimate-addons-for-gutenberg.git"
},
"bugs": "https://github.com/brainstormforce/ultimate-addons-for-gutenberg/issues/",
"main": "src/blocks.js",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@dr-kobros/react-webfont-loader": "^8.0.0",
"@lottiefiles/react-lottie-player": "^3.4.1",
"@wordpress/icons": "^2.10.1",
"classnames": "^2.2.6",
"codemirror": "^6.0.1",
"prop-types": "^15.6.2",
"re-resizable": "^4.7.1",
"react-codemirror": "^1.0.0",
"react-color": "^2.18.0",
"react-container-dimensions": "^1.4.1",
"react-countdown": "^2.3.1",
"react-lazy-load": "^3.0.13",
"react-masonry-component": "^6.2.1",
"react-select": "^5.8.3",
"react-slick": "^0.24.0",
"react-transition-group": "^2.4.0",
"react-virtualized": "^9.22.3",
"striptags": "^3.2.0",
"swiper": "^8.4.5"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@wordpress/eslint-plugin": "^7.1.0",
"@wordpress/scripts": "^16.1.1",
"grunt": "^1.5.3",
"grunt-bumpup": "^0.6.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-rename": "^0.2.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-json2php": "^0.1.4",
"grunt-rtlcss": "^2.0.2",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.0.1",
"install": "^0.13.0",
"js-yaml": "^4.1.0",
"node-sass": "^7.0",
"npm-run-all": "^4.1.5",
"prettier": "npm:[email protected]",
"sass-loader": "^6.0.6",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"wp-prettier": "^2.2.1-beta-1"
},
"scripts": {
"start": "wp-scripts start",
"build:assets": "wp-scripts build && node scripts/generate-assets-files.js",
"build:sass": "node scripts/generate-assets-files.js",
"build:placeholder": "node scripts/generate-blocks-placeholder.js",
"build:admin": "cd admin-core && npm run build && grunt minify",
"build": "wp-scripts build && npm run build:sass && npm run build:placeholder && grunt minify",
"format:js": "wp-scripts format-js",
"lint-js": "wp-scripts lint-js",
"lint-js:fix": "npm run lint-js -- --fix",
"lint-css": "wp-scripts lint-style",
"lint-css:fix": "npm run lint-css -- --fix",
"pretty": "prettier --check .",
"pretty:fix": "prettier --write .",
"lint-scripts:fix": "npm run pretty:fix && npm run lint-js -- --fix && npm run lint-css -- --fix",
"admin-lint-js": "wp-scripts lint-js admin-core/assets/src",
"admin-lint-js:fix": "npm run admin-lint-js -- --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"check-engines": "wp-scripts check-engines",
"makepot": "grunt rename-unminify && grunt synctextdomains && grunt addtextdomain && ./vendor/wp-cli/wp-cli/bin/wp i18n make-pot . --skip-audit --exclude='.dev,.github,.wordpress-org,docs,src,node_modules,vendor,wordpress,block-icons.js,blocks-deactivate.js' languages/ultimate-addons-for-gutenberg.pot && grunt rename-minify",
"package": "rm *.zip && wp dist-archive . ultimate-addons-for-gutenberg",
"packages-update": "wp-scripts packages-update"
}
}