-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "block-manager",
"version": "2.1.0",
"description": "Take control of your WordPress Blocks & Patterns.",
"main": "src/js/app.js",
"author": "connekthq.com <[email protected]>",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"plugin",
"blocks"
],
"scripts": {
"watch": "npm run dev",
"dev": "wp-scripts start",
"start": "webpack -w --mode development --config=webpack/dev.config.js",
"build": "npm run build:pot && wp-scripts build",
"build:pot": "composer run pot",
"lint:php": "composer run lint",
"postinstall": "composer install"
},
"dependencies": {
"@wordpress/block-library": "^8.21.0",
"@wordpress/blocks": "^12.21.0",
"@wordpress/dom-ready": "^3.44.0",
"@wordpress/element": "^5.21.0",
"@wordpress/hooks": "^3.44.0",
"@wordpress/i18n": "^4.44.0"
},
"devDependencies": {
"@wordpress/scripts": "^26.15.0",
"axios": "^1.5.1",
"classnames": "^2.3.2",
"eslint-webpack-plugin": "^4.0.1",
"npm-run-all": "^4.1.5",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.2.0",
"postcss-scss": "^4.0.9",
"prettier": "3.0.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-webpack-plugin": "^4.1.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}