-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.53 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
{
"name": "shopeo-block-plugin-scaffold",
"version": "0.0.1",
"description": "SHOPEO Block Plugin Scaffold",
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"build": "wp-scripts build --webpack-src-dir=blocks/src/ --output-path=blocks/dist/",
"start": "wp-scripts start --webpack-src-dir=blocks/src/ --output-path=blocks/dist/",
"format": "wp-scripts format --webpack-src-dir=blocks/src/ --output-path=blocks/dist/",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"makepot": "wp i18n make-pot --domain='shopeo-block-plugin-scaffold' --include='assets/js,*.php' . --headers='{\"Report-Msgid-Bugs-To\":\"https://shopeo.cn/contact/\"}' --file-comment=\"Copyright (c) $(date +'%Y') SHOPEO. All Rights Reserved.\" languages/shopeo-block-plugin-scaffold.pot",
"packages-update": "wp-scripts packages-update"
},
"author": "SHOPEO",
"homepage": "https://shopeo.cn",
"license": "MIT",
"devDependencies": {
"@wordpress/scripts": "^27.9.0",
"autoprefixer": "^10.4.16",
"laravel-mix": "^6.0.49",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"resolve-url-loader": "^5.0.0",
"rtlcss": "^4.1.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"wp-readme-to-markdown": "^1.0.1"
},
"dependencies": {
"@wordpress/block-editor": "^12.26.0",
"@wordpress/blocks": "^12.35.0",
"@wordpress/i18n": "^4.58.0"
}
}