-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1 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
{
"name": "group-of-blocks",
"version": "0.0.1",
"description": "Group of Gutenberg Blocks",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"start": "wp-scripts start --webpack-src-dir=src/blocks --output-path=build",
"build": "wp-scripts build --webpack-src-dir=src/blocks --output-path=build",
"start:static": "wp-scripts start --webpack-src-dir=src/blocks/static --output-path=build/static",
"build:static": "wp-scripts build --webpack-src-dir=src/blocks/static --output-path=build/static",
"start:dynamic": "wp-scripts start --webpack-src-dir=src/blocks/dynamic --output-path=build/dynamic",
"build:dynamic": "wp-scripts build --webpack-src-dir=src/blocks/dynamic --output-path=build/dynamic"
},
"lint-staged": {
"*.js": [
"wp-scripts lint-js",
"wp-scripts format"
],
"*.scss": "npx stylelint --fix"
},
"author": "Marko Nikolaš",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@wordpress/scripts": "^26.11.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1"
}
}