-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
124 lines (124 loc) · 4.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "genesis-custom-blocks",
"title": "Genesis Custom Blocks",
"version": "1.7.1",
"description": "WordPress plugin with a simple templating system for building custom blocks.",
"author": "Genesis Custom Blocks",
"license": "GPL-2.0-or-later",
"keywords": [
"block-editor",
"wordpress",
"wordpress-plugin"
],
"homepage": "https://studiopress.com",
"repository": {
"type": "git",
"url": "https://github.com/studiopress/genesis-custom-blocks"
},
"bugs": {
"url": "https://github.com/studiopress/genesis-custom-blocks/issues"
},
"engines": {
"node": "14"
},
"devDependencies": {
"@material-ui/core": "4.11.2",
"@material-ui/icons": "4.11.2",
"@wordpress/a11y": "3.38.0",
"@wordpress/api-fetch": "6.35.0",
"@wordpress/babel-preset-default": "7.22.0",
"@wordpress/block-editor": "12.6.0",
"@wordpress/blocks": "12.15.0",
"@wordpress/components": "25.4.0",
"@wordpress/compose": "6.15.0",
"@wordpress/core-data": "6.15.0",
"@wordpress/data": "9.8.0",
"@wordpress/dependency-extraction-webpack-plugin": "4.21.0",
"@wordpress/dom": "3.38.0",
"@wordpress/dom-ready": "3.38.0",
"@wordpress/e2e-test-utils": "10.24.0",
"@wordpress/e2e-tests": "7.9.0",
"@wordpress/edit-post": "7.15.0",
"@wordpress/editor": "13.15.0",
"@wordpress/element": "5.15.0",
"@wordpress/env": "8.4.0",
"@wordpress/eslint-plugin": "14.11.0",
"@wordpress/hooks": "3.38.0",
"@wordpress/html-entities": "3.38.0",
"@wordpress/i18n": "4.38.0",
"@wordpress/icons": "9.29.0",
"@wordpress/keycodes": "3.38.0",
"@wordpress/notices": "4.6.0",
"@wordpress/postcss-plugins-preset": "4.22.0",
"@wordpress/scripts": "26.9.0",
"@wordpress/server-side-render": "1.19.5",
"@wordpress/url": "3.39.0",
"ace-builds": "1.4.12",
"ajv": "8.10.0",
"autoprefixer": "10.1.0",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"classnames": "2.2.6",
"clean-webpack-plugin": "3.0.0",
"clipboard": "2.0.8",
"cross-env": "7.0.2",
"css-loader": "4.2.1",
"debounce-fn": "4.0.0",
"del": "5.1.0",
"eslint": "8.9.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "37.9.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react-hooks": "4.3.0",
"ignore-emit-webpack-plugin": "2.0.2",
"merge-stream": "2.0.0",
"mini-css-extract-plugin": "1.3.3",
"npm-run-all": "4.1.5",
"postcss": "8.4.6",
"postcss-loader": "4.1.0",
"pptr-testing-library": "0.6.5",
"prettier": "2.5.1",
"raw-loader": "4.0.1",
"re-resizable": "6.9.9",
"react": "^17.0.1",
"react-ace": "9.4.0",
"react-autosize-textarea": "7.1.0",
"react-dom": "^17.0.1",
"sass": "1.49.8",
"sass-loader": "9.0.3",
"style-loader": "1.2.1",
"tailwindcss": "2.0.2",
"typescript": "4.5.5",
"webpack": "5.69.1",
"webpack-cli": "4.9.2"
},
"scripts": {
"check-licenses": "wp-scripts check-licenses --prod --gpl2",
"build": "wp-scripts build",
"dev": "wp-scripts start",
"wp-env": "wp-env",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:css:files": "wp-scripts lint-style",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js": "wp-scripts lint-js js/src tests/e2e",
"lint:js:files": "wp-scripts lint-js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "composer lint",
"lint:php:fix": "composer lint-fix",
"packages-update": "wp-scripts packages-update",
"prepare": "git config --local core.hooksPath .githooks",
"test:e2e": "wp-scripts test-e2e --config=tests/e2e/jest.config.js",
"test:e2e:interactive": "npm run test:e2e -- --puppeteer-interactive",
"test:js": "wp-scripts test-unit-js --config=tests/js/jest.config.js",
"test:js:coverage": "npm run test:js -- --coverage --coverageDirectory=tests/coverage/js",
"test:js:watch": "npm run test:js -- --watch"
},
"wp-env": {
"plugin-dir": "genesis-custom-blocks",
"plugin-name": "Genesis Custom Blocks"
}
}