-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (61 loc) · 1.89 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
{
"name": "generateblocks",
"version": "1.9.1",
"private": true,
"description": "A small collection of lightweight WordPress blocks that can accomplish nearly anything.",
"author": "Tom Usborne",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor"
],
"homepage": "https://generateblocks.com",
"repository": {
"type": "git",
"url": "git+https://github.com/tomusborne/generateblocks.git"
},
"bugs": {
"url": "https://generateblocks.com/support"
},
"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",
"@wordpress/block-editor": "^12.12.0",
"@wordpress/blocks": "^12.21.0",
"@wordpress/components": "^25.10.0",
"@wordpress/core-data": "^6.21.0",
"@wordpress/icons": "^9.35.0",
"classnames": "^2.3.1",
"colord": "^2.9.2",
"dompurify": "^2.4.0",
"imagesloaded": "^5.0.0",
"lodash": "4.17.21",
"react-colorful": "^5.5.1",
"react-select": "^5.7.3",
"request": "^2.88.2",
"use-debounce": "^7.0.1",
"use-local-storage-state": "^16.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@wordpress/scripts": "^26.15.0",
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0"
},
"scripts": {
"build": "wp-scripts build src/blocks.js src/dashboard.js src/pattern-library.js src/editor-sidebar.js --output-path=dist",
"start": "wp-scripts start src/blocks.js src/dashboard.js src/pattern-library.js src/editor-sidebar.js --output-path=dist",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"package": "grunt package",
"action-package": "grunt action-package",
"googleFonts": "grunt download-google-fonts",
"test:unit": "wp-scripts test-unit-js",
"clean": "git checkout -- dist/ && git clean -fd dist/"
}
}