forked from tomusborne/generateblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "generateblocks",
"version": "1.6.0",
"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": {
"@emotion/react": "^11.9.3",
"classnames": "^2.3.1",
"dompurify": "^2.3.9",
"use-debounce": "^7.0.1"
},
"devDependencies": {
"@wordpress/api-fetch": "5.2.6",
"@wordpress/blob": "3.7.0",
"@wordpress/block-editor": "8.0.13",
"@wordpress/blocks": "11.1.5",
"@wordpress/components": "19.2.0",
"@wordpress/compose": "5.0.7",
"@wordpress/core-data": "4.0.9",
"@wordpress/data": "6.1.5",
"@wordpress/date": "4.2.3",
"@wordpress/element": "4.0.4",
"@wordpress/eslint-plugin": "10.0.1",
"@wordpress/hooks": "3.2.2",
"@wordpress/i18n": "4.2.4",
"@wordpress/icons": "6.1.1",
"@wordpress/rich-text": "5.0.7",
"@wordpress/scripts": "22.2.1",
"colord": "2.9.2",
"enzyme": "^3.11.0",
"grunt": "^1.5.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"jest": "^27.5.1",
"lodash": "4.17.21",
"react-colorful": "5.5.1",
"react-select": "^5.4.0",
"request": "^2.88.2",
"use-local-storage-state": "16.0.0"
},
"scripts": {
"build": "wp-scripts build src/blocks.js src/dashboard.js --output-path=dist",
"start": "wp-scripts start src/blocks.js src/dashboard.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/"
}
}