-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "wporg-pattern-creator",
"version": "1.0.0",
"description": "Create block patterns on the frontend of a site.",
"author": "The WordPress Meta Team",
"license": "GPL-2.0-or-later",
"scripts": {
"build": "wp-scripts build",
"dev": "NODE_ENV=development wp-scripts build",
"format:js": "wp-scripts format src -- --config=../../../../.prettierrc.js",
"lint:css": "wp-scripts lint-style 'style.css' 'src/**/*.scss'",
"lint:js": "wp-scripts lint-js src",
"start": "wp-scripts start",
"test:unit": "wp-scripts test-unit-js"
},
"devDependencies": {
"@wordpress/dependency-extraction-webpack-plugin": "5.2.0",
"@wordpress/scripts": "27.2.0",
"autoprefixer": "10.4.17",
"deep-freeze": "0.0.1",
"postcss-custom-properties": "13.3.4"
},
"dependencies": {
"@wordpress/a11y": "4.14.0",
"@wordpress/api-fetch": "7.14.0",
"@wordpress/block-editor": "14.9.0",
"@wordpress/block-library": "9.14.0",
"@wordpress/blocks": "14.3.0",
"@wordpress/components": "29.0.0",
"@wordpress/compose": "7.14.0",
"@wordpress/core-data": "7.14.0",
"@wordpress/data": "10.14.0",
"@wordpress/dom-ready": "4.14.0",
"@wordpress/edit-post": "8.14.0",
"@wordpress/editor": "14.14.0",
"@wordpress/element": "6.14.0",
"@wordpress/format-library": "5.14.0",
"@wordpress/hooks": "4.14.0",
"@wordpress/i18n": "5.14.0",
"@wordpress/icons": "10.14.0",
"@wordpress/interface": "8.3.0",
"@wordpress/keyboard-shortcuts": "5.14.0",
"@wordpress/keycodes": "4.14.0",
"@wordpress/notices": "5.14.0",
"@wordpress/plugins": "7.14.0",
"@wordpress/primitives": "4.14.0",
"@wordpress/url": "4.14.0",
"classnames": "2.5.1",
"lodash": "4.17.21",
"rememo": "4.0.2"
},
"eslintConfig": {
"extends": "../../../../.eslintrc.js",
"globals": {
"wporgBlockPattern": "readonly",
"wporgLocale": "readonly"
}
},
"stylelint": {
"extends": "../../../../.stylelintrc"
}
}